mirror of
https://github.com/github/codeql.git
synced 2025-12-27 06:06:32 +01:00
14 lines
395 B
Plaintext
14 lines
395 B
Plaintext
|
|
/**
|
|
* @kind path-problem
|
|
*/
|
|
|
|
import python
|
|
import semmle.python.security.TaintTracking
|
|
import TaintLib
|
|
import semmle.python.security.Paths
|
|
|
|
from SimpleConfig config, TaintedPathSource src, TaintedPathSink sink
|
|
where config.hasFlowPath(src, sink)
|
|
select sink.getSink(), src, sink, "$@ flows to $@.", src.getNode(), src.getTaintKind().toString(), sink.getNode(), sink.getTaintKind().toString()
|