mirror of
https://github.com/github/codeql.git
synced 2026-02-09 03:31:06 +01:00
14 lines
374 B
Plaintext
14 lines
374 B
Plaintext
import java
|
|
import semmle.code.java.security.InsecureTrustManagerQuery
|
|
import TestUtilities.InlineFlowTest
|
|
|
|
class EnableLegacy extends EnableLegacyConfiguration {
|
|
EnableLegacy() { exists(this) }
|
|
}
|
|
|
|
class InsecureTrustManagerTest extends InlineFlowTest {
|
|
override DataFlow::Configuration getValueFlowConfig() {
|
|
result = any(InsecureTrustManagerConfiguration c)
|
|
}
|
|
}
|