We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
jsdec is using javascript too.
The text was updated successfully, but these errors were encountered:
jsdec is using duktape, which is another js engine.
Sorry, something went wrong.
may be these codes:
const spawn = require('child_process').spawn; let rizinExe = 'C:\\myprogram\\cutter.Windows\\rizin.exe'; const py = spawn(rizinExe, [ '-p', 'L:\\backup\\apk\\momo\\libmahoshojo.fix.so.rzdb', '-q0', ], { // detached: true }); py.stdout.on('data', function (res) { res = res.toString('utf8'); console.log(res) }) py.stderr.on('data', function (data) { console.log('standard error output:\n' + data); }); py.stdin.write('e asm.arch\n', () => { console.log('write end'); });
output:
"C:\Program Files\nodejs\node.exe" K:\projects\nodejs\jstillery\x86\testCmdRizin.js write end arm
No branches or pull requests
jsdec is using javascript too.
The text was updated successfully, but these errors were encountered: