Files
codeql/python/ql/test/library-tests/taint/general/Contexts.ql
2020-03-30 11:59:10 +02:00

10 lines
270 B
Plaintext

import python
import semmle.python.dataflow.Implementation
import TaintLib
from CallContext context, Scope s
where
exists(CallContext caller | caller.getCallee(_) = context) and
context.appliesToScope(s)
select s.getLocation().toString(), context, s.toString()