QuackatronHQ / Gigarepo

Audit required: Possible wildcard injection in call: subprocess.Popen BAN-B609
Security
Major
a month ago2 years old
Possible wildcard injection in call: subprocess.Popen
107def tar_something():
108    context = ssl._create_stdlib_context()
109    os.tempnam("dir1")
110    subprocess.Popen("/bin/chown *", shell=True)111    o.system("/bin/tar xvzf *")
112    subprocess.run(["clear"])
113