mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-01 14:21:53 +00:00
8 lines
277 B
Python
8 lines
277 B
Python
import os
|
|
import subprocess
|
|
|
|
os.popen("chmod +w foo*")
|
|
subprocess.Popen("/bin/chown root: *", shell=True)
|
|
subprocess.Popen(["/usr/local/bin/rsync", "*", "some_where:"], shell=True)
|
|
subprocess.Popen("/usr/local/bin/rsync * no_injection_here:")
|
|
os.system("tar cf foo.tar bar/*")
|