mirror of
https://github.com/github/codeql.git
synced 2025-12-19 02:13:17 +01:00
Will need subsequent PRs fixing up test failures (due to deprecated methods moving around), but other than that everything should be straight-forward.
9 lines
284 B
Plaintext
9 lines
284 B
Plaintext
import python
|
|
import semmle.python.dataflow.TaintTracking
|
|
import TaintLib
|
|
|
|
from TestConfig config, DataFlow::Node source, TaintKind kind
|
|
where config.isSource(source, kind)
|
|
select config, source.getLocation().toString(), source.getLocation().getStartLine(),
|
|
source.toString(), kind
|