entry_points.txt 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. [bandit.blacklists]
  2. calls = bandit.blacklists.calls:gen_blacklist
  3. imports = bandit.blacklists.imports:gen_blacklist
  4. [bandit.formatters]
  5. csv = bandit.formatters.csv:report
  6. custom = bandit.formatters.custom:report
  7. html = bandit.formatters.html:report
  8. json = bandit.formatters.json:report
  9. screen = bandit.formatters.screen:report
  10. txt = bandit.formatters.text:report
  11. xml = bandit.formatters.xml:report
  12. yaml = bandit.formatters.yaml:report
  13. [bandit.plugins]
  14. any_other_function_with_shell_equals_true = bandit.plugins.injection_shell:any_other_function_with_shell_equals_true
  15. assert_used = bandit.plugins.asserts:assert_used
  16. django_extra_used = bandit.plugins.django_sql_injection:django_extra_used
  17. django_mark_safe = bandit.plugins.django_xss:django_mark_safe
  18. django_rawsql_used = bandit.plugins.django_sql_injection:django_rawsql_used
  19. exec_used = bandit.plugins.exec:exec_used
  20. flask_debug_true = bandit.plugins.app_debug:flask_debug_true
  21. hardcoded_bind_all_interfaces = bandit.plugins.general_bind_all_interfaces:hardcoded_bind_all_interfaces
  22. hardcoded_password_default = bandit.plugins.general_hardcoded_password:hardcoded_password_default
  23. hardcoded_password_funcarg = bandit.plugins.general_hardcoded_password:hardcoded_password_funcarg
  24. hardcoded_password_string = bandit.plugins.general_hardcoded_password:hardcoded_password_string
  25. hardcoded_sql_expressions = bandit.plugins.injection_sql:hardcoded_sql_expressions
  26. hardcoded_tmp_directory = bandit.plugins.general_hardcoded_tmp:hardcoded_tmp_directory
  27. hashlib_insecure_functions = bandit.plugins.hashlib_insecure_functions:hashlib
  28. jinja2_autoescape_false = bandit.plugins.jinja2_templates:jinja2_autoescape_false
  29. linux_commands_wildcard_injection = bandit.plugins.injection_wildcard:linux_commands_wildcard_injection
  30. logging_config_insecure_listen = bandit.plugins.logging_config_insecure_listen:logging_config_insecure_listen
  31. paramiko_calls = bandit.plugins.injection_paramiko:paramiko_calls
  32. request_with_no_cert_validation = bandit.plugins.crypto_request_no_cert_validation:request_with_no_cert_validation
  33. request_without_timeout = bandit.plugins.request_without_timeout:request_without_timeout
  34. set_bad_file_permissions = bandit.plugins.general_bad_file_permissions:set_bad_file_permissions
  35. snmp_insecure_version = bandit.plugins.snmp_security_check:snmp_insecure_version_check
  36. snmp_weak_cryptography = bandit.plugins.snmp_security_check:snmp_crypto_check
  37. ssh_no_host_key_verification = bandit.plugins.ssh_no_host_key_verification:ssh_no_host_key_verification
  38. ssl_with_bad_defaults = bandit.plugins.insecure_ssl_tls:ssl_with_bad_defaults
  39. ssl_with_bad_version = bandit.plugins.insecure_ssl_tls:ssl_with_bad_version
  40. ssl_with_no_version = bandit.plugins.insecure_ssl_tls:ssl_with_no_version
  41. start_process_with_a_shell = bandit.plugins.injection_shell:start_process_with_a_shell
  42. start_process_with_no_shell = bandit.plugins.injection_shell:start_process_with_no_shell
  43. start_process_with_partial_path = bandit.plugins.injection_shell:start_process_with_partial_path
  44. subprocess_popen_with_shell_equals_true = bandit.plugins.injection_shell:subprocess_popen_with_shell_equals_true
  45. subprocess_without_shell_equals_true = bandit.plugins.injection_shell:subprocess_without_shell_equals_true
  46. tarfile_unsafe_members = bandit.plugins.tarfile_unsafe_members:tarfile_unsafe_members
  47. try_except_continue = bandit.plugins.try_except_continue:try_except_continue
  48. try_except_pass = bandit.plugins.try_except_pass:try_except_pass
  49. use_of_mako_templates = bandit.plugins.mako_templates:use_of_mako_templates
  50. weak_cryptographic_key = bandit.plugins.weak_cryptographic_key:weak_cryptographic_key
  51. yaml_load = bandit.plugins.yaml_load:yaml_load
  52. [console_scripts]
  53. bandit = bandit.cli.main:main
  54. bandit-baseline = bandit.cli.baseline:main
  55. bandit-config-generator = bandit.cli.config_generator:main