mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
9 lines
299 B
Plaintext
9 lines
299 B
Plaintext
import python
|
|
import Util
|
|
import semmle.python.pointsto.PointsTo
|
|
import semmle.python.objects.ObjectInternal
|
|
|
|
from ControlFlowNode f, ControlFlowNode x
|
|
where PointsTo::pointsTo(f, _, ObjectInternal::unknown(), x)
|
|
select locate(f.getLocation(), "abchr"), f.toString(), x.getLocation().getStartLine()
|