mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
11 lines
244 B
Plaintext
11 lines
244 B
Plaintext
import javascript
|
|
|
|
query Base64::Decode test_Decode() { any() }
|
|
|
|
query predicate test_Decode_input_output(
|
|
Base64::Decode decode, DataFlow::Node input, DataFlow::Node output
|
|
) {
|
|
input = decode.getInput() and
|
|
output = decode.getOutput()
|
|
}
|