mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
11 lines
292 B
Plaintext
11 lines
292 B
Plaintext
/*
|
|
* Note this is similar to src/experimental/Security/CWE/CWE-555/CredentialsInPropertiesFile.ql
|
|
* except we do not filter out test files.
|
|
*/
|
|
|
|
import java
|
|
import experimental.semmle.code.java.frameworks.CredentialsInPropertiesFile
|
|
|
|
from CredentialsConfig cc
|
|
select cc, cc.getConfigDesc()
|