Skip to content

Commit 6c2d62f

Browse files
authored
Fix taint tracking template hints
Change the hints so that it more closely aligns with the final solution. The sink does not use an `exists` clause and the `isAdditionalTaintStep` does.
1 parent 2607b84 commit 6c2d62f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

workshop-2021/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -383,12 +383,12 @@ class DubboUnsafeDeserializationConfig extends TaintTracking::Configuration {
383383
)
384384
}
385385
override predicate isSink(DataFlow::Node sink) {
386-
exists(/** TODO fill me in **/ |
387-
sink.asExpr() = /** TODO fill me in **/
388-
)
386+
/** TODO fill me in **/
389387
}
390388
override predicate isAdditionalTaintStep(DataFlow::Node n1, DataFlow::Node n2) {
389+
exists(/** TODO fill me in **/ |
391390
/** TODO fill me in **/
391+
)
392392
}
393393
}
394394

0 commit comments

Comments
 (0)