Files
codeql/python/ql/test/library-tests/taint/general/Contexts.ql
2018-11-19 15:15:54 +00:00

10 lines
231 B
Plaintext

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