mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
18 lines
315 B
Plaintext
18 lines
315 B
Plaintext
/**
|
|
* @id js/examples/propaccess
|
|
* @name Property accesses
|
|
* @description Finds property accesses of the form `x.innerHTML`
|
|
* @tags property
|
|
* field
|
|
* access
|
|
* read
|
|
* write
|
|
* reference
|
|
*/
|
|
|
|
import javascript
|
|
|
|
from PropAccess p
|
|
where p.getPropertyName() = "innerHTML"
|
|
select p
|