-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathHardcodedCredentials.ql
More file actions
28 lines (27 loc) · 1.01 KB
/
HardcodedCredentials.ql
File metadata and controls
28 lines (27 loc) · 1.01 KB
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
28
/**
* @name Hard-coded credentials
* @description Credentials are hard coded in the source code of the application.
* @kind path-problem
* @problem.severity error
* @precision high
* @id cs/hardcoded-credentials
* @tags security
* external/cwe/cwe-259
* external/cwe/cwe-321
* external/cwe/cwe-798
*/
import csharp
import semmle.code.csharp.security.dataflow.HardcodedCredentials::HardcodedCredentials
import semmle.code.csharp.dataflow.DataFlow::DataFlow::PathGraph
from TaintTrackingConfiguration c, Source source, Sink sink, string value
where
c.hasFlow(source, sink) and
// Print the source value if it's available
if exists(source.asExpr().getValue()) then
value = "The hard-coded value \"" + source.asExpr().getValue() + "\""
else
value = "This hard-coded value"
select source, source.getPathNode(c), sink.getPathNode(c),
value + " flows to " + sink.getSinkDescription() + ".",
sink, sink.getSinkName(), sink.getSupplementaryElement(),
sink.getSupplementaryElement().toString()