mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
13 lines
385 B
Plaintext
13 lines
385 B
Plaintext
import java
|
|
import semmle.code.java.security.AndroidSensitiveCommunicationQuery
|
|
import TestUtilities.InlineExpectationsTest
|
|
import TestUtilities.InlineFlowTest
|
|
|
|
class HasFlowTest extends InlineFlowTest {
|
|
override DataFlow::Configuration getTaintFlowConfig() {
|
|
result = any(SensitiveCommunicationConfig c)
|
|
}
|
|
|
|
override DataFlow::Configuration getValueFlowConfig() { none() }
|
|
}
|