We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f4bc41 commit 23fbfceCopy full SHA for 23fbfce
swift/ql/lib/codeql/swift/security/SensitiveExprs.qll
@@ -49,6 +49,7 @@ class SensitiveCredential extends SensitiveDataType, TCredential {
49
exists(SensitiveDataClassification classification |
50
not classification = SensitiveDataClassification::password() and // covered by `SensitivePassword`
51
not classification = SensitiveDataClassification::id() and // not accurate enough
52
+ not classification = SensitiveDataClassification::private() and // covered by `SensitivePrivateInfo`
53
result = HeuristicNames::maybeSensitiveRegexp(classification)
54
)
55
or
0 commit comments