mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
15 lines
334 B
Plaintext
15 lines
334 B
Plaintext
/**
|
|
* @name Read of field
|
|
* @description Finds reads of 'VirtualAddress' (defined on 'Mono.Cecil.PE.Section').
|
|
* @tags field
|
|
* read
|
|
*/
|
|
|
|
import csharp
|
|
|
|
from Field f, FieldRead read
|
|
where f.hasName("VirtualAddress")
|
|
and f.getDeclaringType().hasQualifiedName("Mono.Cecil.PE.Section")
|
|
and f = read.getTarget()
|
|
select read
|