mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
14 lines
221 B
Plaintext
14 lines
221 B
Plaintext
/**
|
|
* @name Calls to function
|
|
* @description Finds function calls of the form `eval(...)`
|
|
* @tags call
|
|
* function
|
|
* eval
|
|
*/
|
|
|
|
import javascript
|
|
|
|
from CallExpr c
|
|
where c.getCalleeName() = "eval"
|
|
select c
|