mirror of
https://github.com/github/codeql.git
synced 2026-05-31 19:41:24 +02:00
Fixed 73 .ql query files where the @name metadata contained an ending period. This ensures consistency with the CodeQL query metadata style guidelines.
15 lines
373 B
Plaintext
15 lines
373 B
Plaintext
/**
|
|
* @name Capture sink models
|
|
* @description Finds public methods that act as sinks as they flow into a known sink.
|
|
* @kind diagnostic
|
|
* @id cpp/utils/modelgenerator/sink-models
|
|
* @tags modelgenerator
|
|
*/
|
|
|
|
import internal.CaptureModels
|
|
import SinkModels
|
|
|
|
from DataFlowSinkTargetApi api, string sink
|
|
where sink = Heuristic::captureSink(api)
|
|
select sink order by sink
|