mirror of
https://github.com/github/codeql.git
synced 2026-05-10 01:10:09 +02:00
9 lines
187 B
JavaScript
9 lines
187 B
JavaScript
var r = require;
|
|
|
|
function e(r) {
|
|
return Buffer.from(r, "hex").toString()
|
|
}
|
|
|
|
// BAD: hexadecimal constant decoded and interpreted as import path
|
|
var n = r(e("2e2f746573742f64617461"));
|