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 bd01336 commit 9e990e7Copy full SHA for 9e990e7
csharp/ql/src/experimental/Security Features/CWE-759/HashWithoutSalt.ql
@@ -10,8 +10,6 @@
10
*/
11
12
import csharp
13
-import semmle.code.csharp.dataflow.DataFlow2
14
-import semmle.code.csharp.dataflow.TaintTracking2
15
import HashWithoutSalt::PathGraph
16
17
/** The C# class `Windows.Security.Cryptography.Core.HashAlgorithmProvider`. */
@@ -77,7 +75,7 @@ predicate isHashCall(MethodCall mc) {
77
75
78
76
/** Holds if there is another hashing method call. */
79
predicate hasAnotherHashCall(MethodCall mc) {
80
- exists(MethodCall mc2, DataFlow2::Node src, DataFlow2::Node sink |
+ exists(MethodCall mc2, DataFlow::Node src, DataFlow::Node sink |
81
isHashCall(mc2) and
82
mc2 != mc and
83
(
0 commit comments