mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
15 lines
244 B
Plaintext
15 lines
244 B
Plaintext
/**
|
|
* @id js/examples/call
|
|
* @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
|