-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.bandit
More file actions
27 lines (23 loc) · 826 Bytes
/
.bandit
File metadata and controls
27 lines (23 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Bandit security scanner configuration for BastProxy
#
# This configuration excludes certain checks that are false positives
# for a MUD proxy application that intentionally uses Telnet protocol.
[bandit]
# Exclude test directories and virtual environments
exclude_dirs = [
'/tests/',
'/.venv/',
'/venv/',
'/evennia/',
'/data/',
'/teststuff/',
]
# Skip these tests:
# B401: telnet module - MUD proxy requires telnet for game server communication
# B604: shell parameter - telnetlib3 uses 'shell' parameter for connection handlers (not shell commands)
skips = ['B401', 'B604']
# Report only medium and high severity issues
# Low severity issues are informational and don't need to block CI
# severity = MEDIUM,HIGH
# Only report high confidence issues to reduce false positives
# confidence = HIGH