mirror of
https://github.com/github/codeql.git
synced 2026-02-11 12:41:06 +01:00
12 lines
369 B
Plaintext
12 lines
369 B
Plaintext
import java
|
|
import TestUtilities.InlineFlowTest
|
|
import semmle.code.java.security.UnsafeContentUriResolutionQuery
|
|
|
|
class Test extends InlineFlowTest {
|
|
override predicate hasValueFlow(DataFlow::Node src, DataFlow::Node sink) { none() }
|
|
|
|
override predicate hasTaintFlow(DataFlow::Node src, DataFlow::Node sink) {
|
|
UnsafeContentResolutionFlow::flow(src, sink)
|
|
}
|
|
}
|