mirror of
https://github.com/github/codeql.git
synced 2026-01-19 09:24:46 +01:00
17 lines
338 B
Plaintext
17 lines
338 B
Plaintext
/**
|
|
* @name Taint sources
|
|
* @description Sources of untrusted input.
|
|
* @kind problem
|
|
* @problem.severity info
|
|
* @id js/summary/taint-sources
|
|
* @tags summary
|
|
* @precision medium
|
|
*/
|
|
|
|
import javascript
|
|
import meta.internal.TaintMetrics
|
|
|
|
from RemoteFlowSource node
|
|
where node = relevantTaintSource()
|
|
select node, node.getSourceType()
|