-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbandit.yml
More file actions
15 lines (12 loc) · 721 Bytes
/
bandit.yml
File metadata and controls
15 lines (12 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
### profile may optionally select or skip tests
exclude_dirs: ['venv', '.github']
### override settings - used to set settings for plugins to non-default values
any_other_function_with_shell_equals_true:
no_shell: [os.execl, os.execle, os.execlp, os.execlpe, os.execv, os.execve,
os.execvp, os.execvpe, os.spawnl, os.spawnle, os.spawnlp, os.spawnlpe,
os.spawnv, os.spawnve, os.spawnvp, os.spawnvpe, os.startfile]
shell: [os.system, os.popen, os.popen2, os.popen3, os.popen4,
popen2.popen2, popen2.popen3, popen2.popen4, popen2.Popen3,
popen2.Popen4, commands.getoutput, commands.getstatusoutput]
subprocess: [subprocess.Popen, subprocess.call, subprocess.check_call,
subprocess.check_output]