mirror of
https://github.com/github/codeql.git
synced 2026-01-27 13:23:00 +01:00
20 lines
676 B
Plaintext
Executable File
20 lines
676 B
Plaintext
Executable File
/**
|
|
* Provides classes for performing local (intra-procedural) and
|
|
* global (inter-procedural) taint-tracking analyses.
|
|
*
|
|
* To use global (interprocedural) taint tracking, extend the class
|
|
* `TaintTracking::Configuration` as documented on that class. To use local
|
|
* (intraprocedural) taint tracking, call `TaintTracking::localTaint` or
|
|
* `TaintTracking::localTaintStep` with arguments of type `DataFlow::Node`.
|
|
*/
|
|
|
|
private import python
|
|
|
|
/**
|
|
* Provides classes for performing local (intra-procedural) and
|
|
* global (inter-procedural) taint-tracking analyses.
|
|
*/
|
|
module TaintTracking3 {
|
|
import semmle.python.dataflow.new.internal.tainttracking3.TaintTrackingImpl
|
|
}
|