mirror of
https://github.com/github/codeql.git
synced 2025-12-16 08:43:11 +01:00
12 lines
361 B
Plaintext
12 lines
361 B
Plaintext
import java
|
|
import TestUtilities.InlineFlowTest
|
|
import semmle.code.java.security.SensitiveLoggingQuery
|
|
|
|
class HasFlowTest extends InlineFlowTest {
|
|
override predicate hasTaintFlow(DataFlow::Node src, DataFlow::Node sink) {
|
|
SensitiveLoggerFlow::hasFlow(src, sink)
|
|
}
|
|
|
|
override predicate hasValueFlow(DataFlow::Node src, DataFlow::Node sink) { none() }
|
|
}
|