mirror of
https://github.com/github/codeql.git
synced 2026-02-12 13:11:20 +01:00
15 lines
390 B
Plaintext
15 lines
390 B
Plaintext
/**
|
|
* @name Capture source models.
|
|
* @description Finds APIs that act as sources as they expose already known sources.
|
|
* @kind diagnostic
|
|
* @id cpp/utils/modelgenerator/source-models
|
|
* @tags modelgenerator
|
|
*/
|
|
|
|
import internal.CaptureModels
|
|
import SourceModels
|
|
|
|
from DataFlowSourceTargetApi api, string source
|
|
where source = Heuristic::captureSource(api)
|
|
select source order by source
|