mirror of
https://github.com/github/codeql.git
synced 2025-12-21 03:06:31 +01:00
8 lines
228 B
Plaintext
8 lines
228 B
Plaintext
import semmle.code.cpp.ir.dataflow.DefaultTaintTracking
|
|
|
|
from Expr source, Element tainted, string globalVar
|
|
where
|
|
taintedIncludingGlobalVars(source, tainted, globalVar) and
|
|
globalVar != ""
|
|
select source, tainted, globalVar
|