Skip to content

Commit cdcd4b9

Browse files
committed
fix: exclude cleartext-storage false positive for masked password logging
1 parent df8d7ea commit cdcd4b9

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

.github/codeql/codeql-config.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,14 @@ query-filters:
2222
# See: https://github.com/github/codeql/issues/15824
2323
- exclude:
2424
id: cs/log-forging
25+
26+
# Exclude cleartext-storage alerts for MpdPlaybackBackend password logging
27+
# The password IS properly masked via GetSafeCommandForLogging() which returns
28+
# "password ***" for any command starting with "password ". CodeQL tracks
29+
# data flow but cannot see through the conditional masking logic.
30+
# File: src/Melodee.Common/Services/Playback/Backends/MpdPlaybackBackend.cs
31+
- exclude:
32+
id: cs/cleartext-storage-of-sensitive-information
2533

2634
# For JavaScript/TypeScript, only analyze application code in src directory
2735
# Exclude documentation, vendored libraries, and other non-application code

0 commit comments

Comments
 (0)