mirror of
https://github.com/github/codeql.git
synced 2026-01-03 17:50:19 +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
|