mirror of
https://github.com/github/codeql.git
synced 2026-01-09 12:40:25 +01:00
38 lines
1.6 KiB
Plaintext
38 lines
1.6 KiB
Plaintext
/**
|
|
* Surfaces endpoints that are sinks with high confidence, for use as positive examples in the prompt.
|
|
*
|
|
* @name Positive examples (application mode)
|
|
* @kind problem
|
|
* @problem.severity recommendation
|
|
* @id java/ml/extract-automodel-application-positive-examples
|
|
* @tags internal extract automodel application-mode positive examples
|
|
*/
|
|
|
|
private import AutomodelApplicationModeCharacteristics
|
|
private import AutomodelEndpointTypes
|
|
private import AutomodelJavaUtil
|
|
|
|
from
|
|
Endpoint endpoint, EndpointType endpointType, ApplicationModeMetadataExtractor meta,
|
|
DollarAtString package, DollarAtString type, DollarAtString subtypes, DollarAtString name,
|
|
DollarAtString signature, DollarAtString input, DollarAtString output,
|
|
DollarAtString isVarargsArray, DollarAtString extensibleType
|
|
where
|
|
isPositiveExample(endpoint, endpointType, package, type, subtypes, name, signature, input, output,
|
|
isVarargsArray, extensibleType)
|
|
select endpoint.asNode(),
|
|
endpointType + "\nrelated locations: $@, $@, $@." +
|
|
"\nmetadata: $@, $@, $@, $@, $@, $@, $@, $@, $@.", //
|
|
CharacteristicsImpl::getRelatedLocationOrCandidate(endpoint, CallContext()), "CallContext", //
|
|
CharacteristicsImpl::getRelatedLocationOrCandidate(endpoint, MethodDoc()), "MethodDoc", //
|
|
CharacteristicsImpl::getRelatedLocationOrCandidate(endpoint, ClassDoc()), "ClassDoc", //
|
|
package, "package", //
|
|
type, "type", //
|
|
subtypes, "subtypes", //
|
|
name, "name", //
|
|
signature, "signature", //
|
|
input, "input", //
|
|
output, "output", //
|
|
isVarargsArray, "isVarargsArray", //
|
|
extensibleType, "extensibleType"
|