mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
11 lines
244 B
Plaintext
11 lines
244 B
Plaintext
import javascript
|
|
|
|
query Base64::Encode test_Encode() { any() }
|
|
|
|
query predicate test_Encode_input_output(
|
|
Base64::Encode encode, DataFlow::Node input, DataFlow::Node output
|
|
) {
|
|
input = encode.getInput() and
|
|
output = encode.getOutput()
|
|
}
|