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 e863e23 commit 58a557bCopy full SHA for 58a557b
javascript/ql/lib/semmle/javascript/security/dataflow/InsecureRandomnessQuery.qll
@@ -27,11 +27,9 @@ class Configuration extends TaintTracking::Configuration {
27
node instanceof Sanitizer
28
}
29
30
- override predicate isSanitizerEdge(DataFlow::Node pred, DataFlow::Node succ) {
+ override predicate isSanitizerOut(DataFlow::Node node) {
31
// stop propagation at the sinks to avoid double reporting
32
- pred instanceof Sink and
33
- // constrain succ
34
- pred = succ.getAPredecessor()
+ this.isSink(node)
35
36
37
override predicate isAdditionalTaintStep(DataFlow::Node pred, DataFlow::Node succ) {
0 commit comments