File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
cpp/ql/lib/semmle/code/cpp Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change
1
+ /**
2
+ * An IR taint tracking library that uses an IR DataFlow configuration to track
3
+ * taint from user inputs as defined by `semmle.code.cpp.security.Security`.
4
+ */
5
+
1
6
import cpp
2
7
import semmle.code.cpp.security.Security
3
8
private import semmle.code.cpp.ir.dataflow.DataFlow
Original file line number Diff line number Diff line change 1
1
/*
2
- * Support for tracking tainted data through the program.
2
+ * Support for tracking tainted data through the program. This is an alias for
3
+ * `semmle.code.cpp.ir.dataflow.DefaultTaintTracking` provided for backwards
4
+ * compatibility.
3
5
*
4
- * Prefer to use `semmle.code.cpp.dataflow.TaintTracking` when designing new queries.
6
+ * Prefer to use `semmle.code.cpp.dataflow.TaintTracking` or
7
+ * `semmle.code.cpp.ir.dataflow.TaintTracking` when designing new queries.
5
8
*/
6
9
7
10
import semmle.code.cpp.ir.dataflow.DefaultTaintTracking
You can’t perform that action at this time.
0 commit comments