mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
14 lines
504 B
Plaintext
14 lines
504 B
Plaintext
import python
|
|
import semmle.python.dataflow.TaintTracking
|
|
import TaintLib
|
|
import semmle.python.dataflow.Implementation
|
|
private import LegacyPointsTo
|
|
|
|
from
|
|
TaintTrackingImplementation config, TaintTrackingNode src, CallNode call,
|
|
TaintTrackingContext caller, CallableValue pyfunc, int arg, AttributePath path, TaintKind kind
|
|
where
|
|
config instanceof TestConfig and
|
|
config.callWithTaintedArgument(src, call, caller, pyfunc, arg, path, kind)
|
|
select config, src, call, caller, pyfunc, arg, path, kind
|