You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's rather a lot of subprocess.Popen usage here, many of which use string formatting of one form or another to build the command they run. This may or not be insecure, we just don't know. Using the list based approach would be better.
Likely other utils in subprocess can also now simplify them.
The text was updated successfully, but these errors were encountered:
There's rather a lot of
subprocess.Popen
usage here, many of which use string formatting of one form or another to build the command they run. This may or not be insecure, we just don't know. Using the list based approach would be better.Likely other utils in
subprocess
can also now simplify them.The text was updated successfully, but these errors were encountered: