mirror of
https://github.com/github/codeql.git
synced 2026-04-27 09:45:15 +02:00
10 lines
270 B
Plaintext
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()
|