mirror of
https://github.com/github/codeql.git
synced 2026-01-12 06:00:23 +01:00
48 lines
1.8 KiB
Plaintext
48 lines
1.8 KiB
Plaintext
/** Provides taint tracking configurations to be used in unsafe content URI resolution queries. */
|
|
|
|
import java
|
|
import semmle.code.java.dataflow.FlowSources
|
|
import semmle.code.java.dataflow.TaintTracking
|
|
import semmle.code.java.security.UnsafeContentUriResolution
|
|
|
|
/**
|
|
* DEPRECATED: Use `UnsafeContentUriResolutionFlow` instead.
|
|
*
|
|
* A taint-tracking configuration to find paths from remote sources to content URI resolutions.
|
|
*/
|
|
deprecated class UnsafeContentResolutionConf extends TaintTracking::Configuration {
|
|
UnsafeContentResolutionConf() { this = "UnsafeContentResolutionConf" }
|
|
|
|
override predicate isSource(DataFlow::Node src) { src instanceof RemoteFlowSource }
|
|
|
|
override predicate isSink(DataFlow::Node sink) { sink instanceof ContentUriResolutionSink }
|
|
|
|
override predicate isSanitizer(DataFlow::Node sanitizer) {
|
|
sanitizer instanceof ContentUriResolutionSanitizer
|
|
}
|
|
|
|
override predicate isAdditionalTaintStep(DataFlow::Node node1, DataFlow::Node node2) {
|
|
any(ContentUriResolutionAdditionalTaintStep s).step(node1, node2)
|
|
}
|
|
}
|
|
|
|
/**
|
|
* A taint-tracking configuration to find paths from remote sources to content URI resolutions.
|
|
*/
|
|
module UnsafeContentResolutionConfig implements DataFlow::ConfigSig {
|
|
predicate isSource(DataFlow::Node src) { src instanceof ThreatModelFlowSource }
|
|
|
|
predicate isSink(DataFlow::Node sink) { sink instanceof ContentUriResolutionSink }
|
|
|
|
predicate isBarrier(DataFlow::Node sanitizer) {
|
|
sanitizer instanceof ContentUriResolutionSanitizer
|
|
}
|
|
|
|
predicate isAdditionalFlowStep(DataFlow::Node node1, DataFlow::Node node2) {
|
|
any(ContentUriResolutionAdditionalTaintStep s).step(node1, node2)
|
|
}
|
|
}
|
|
|
|
/** Taint-tracking flow to find paths from remote sources to content URI resolutions. */
|
|
module UnsafeContentResolutionFlow = TaintTracking::Global<UnsafeContentResolutionConfig>;
|