Ranger Login
Reverse Engineering
Last updated
Reverse Engineering
Last updated
const Module = require('./challenge.js');
Module.print = (...a) => console.log(...a);
Module.printErr = (...a) => console.error(...a);
Module.noExitRuntime = true;
Module.onRuntimeInitialized = () => {
const u = '888765cc1062ceef99457cef217d25c9';
const p = 'b54e4863ef82db84ada3143fff3d1fc2';
const ok = Module.ccall('check_flag', 'number', ['string', 'string'], [u, p]);
console.log(ok ? `RTRTNI25{${u}${p}}` : 'nope');
};