mirror of
https://github.com/github/codeql.git
synced 2026-03-29 11:48:16 +02:00
15 lines
476 B
Plaintext
15 lines
476 B
Plaintext
|
|
import python
|
|
|
|
|
|
|
|
import semmle.python.security.TaintTracking
|
|
import TaintLib
|
|
import semmle.python.dataflow.Implementation
|
|
|
|
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
|