mirror of
https://github.com/github/codeql.git
synced 2026-03-05 07:06:47 +01:00
11 lines
264 B
Plaintext
11 lines
264 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()
|
|
|