pylint-secure-coding-standard v1.2.0
Added
- Added E8010 to avoid using
os.popen()
as it internally usessubprocess.Popen
withshell=True
- Added E8011 to avoid using
shlex.quote()
on non-POSIX platforms.
os.popen()
as it internally uses subprocess.Popen
with shell=True
shlex.quote()
on non-POSIX platforms.