mirror of
https://github.com/github/codeql.git
synced 2026-01-30 23:02:56 +01:00
10 lines
231 B
Plaintext
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()
|
|
|