mirror of
https://github.com/github/codeql.git
synced 2025-12-20 02:44:30 +01:00
9 lines
215 B
Python
9 lines
215 B
Python
# Module level taint is different from inside functions, since shared dataflow library
|
|
# relies on `getEnclosingCallable`
|
|
tainted = SOURCE
|
|
SINK(tainted)
|
|
|
|
def func():
|
|
also_tainted = SOURCE
|
|
SINK(also_tainted)
|