maziggy
|
a0133fb43b
|
Fix safe security findings: hashlib, log injection, broad excepts, bandit suppressions
- Add usedforsecurity=False to MD5 (AMS fingerprint) and SHA1 (git blob
hash) calls to silence Bandit B303 / CodeQL weak-crypto findings
- Convert ~996 f-string logging calls to parameterized %s-style across
55 files to prevent log injection (Bandit G201 / CodeQL log-injection)
- Narrow ~199 broad except Exception blocks to specific types:
OperationalError for DB migrations, OSError for network/file cleanup,
(OSError, ftplib.error_reply) for FTP, and targeted tuples for
ZIP/XML/JSON parsing — 36 intentionally left broad (mixed async,
re-raise patterns)
- Add # nosec comments to 9 known-safe lines (0.0.0.0 virtual printer
binds, ftplib imports) and exclude backend/tests/ from bandit scan
- Bandit now reports 0 medium/high findings
|
2026-02-06 11:45:12 +01:00 |
|
maziggy
|
53bd4fadb3
|
Fix safe security findings: hashlib, log injection, broad excepts
- Add usedforsecurity=False to MD5 (AMS fingerprint) and SHA1 (git blob
hash) calls to silence Bandit B303 / CodeQL weak-crypto findings
- Convert ~996 f-string logging calls to parameterized %s-style across
55 files to prevent log injection (Bandit G201 / CodeQL log-injection)
- Narrow ~199 broad except Exception blocks to specific types:
OperationalError for DB migrations, OSError for network/file cleanup,
(OSError, ftplib.error_reply) for FTP, and targeted tuples for
ZIP/XML/JSON parsing — 36 intentionally left broad (mixed async,
re-raise patterns)
|
2026-02-06 11:37:59 +01:00 |
|