mirror of
https://github.com/github/codeql.git
synced 2025-12-28 14:46:33 +01:00
12 lines
369 B
Plaintext
12 lines
369 B
Plaintext
import java
|
|
import TestUtilities.InlineFlowTest
|
|
import semmle.code.java.security.WebviewDebuggingEnabledQuery
|
|
|
|
class HasFlowTest extends InlineFlowTest {
|
|
override predicate hasTaintFlow(DataFlow::Node src, DataFlow::Node sink) { none() }
|
|
|
|
override predicate hasValueFlow(DataFlow::Node src, DataFlow::Node sink) {
|
|
WebviewDebugEnabledFlow::flow(src, sink)
|
|
}
|
|
}
|