mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
7 lines
253 B
JavaScript
7 lines
253 B
JavaScript
const fs = require('fs');
|
|
|
|
exports.foo = function (cb) {
|
|
if (!cb)
|
|
cb = function () { };
|
|
cb(fs.readFileSync("/etc/passwd")); /* def=moduleImport("branching-flow").getMember("exports").getMember("foo").getParameter(0).getParameter(0) */
|
|
}; |