Skip to content

Instantly share code, notes, and snippets.

View mewisme's full-sized avatar
🙏
Suffering

Nguyễn Mậu Minh mewisme

🙏
Suffering
View GitHub Profile
@mewisme
mewisme / bypass.js
Created July 4, 2022 08:33
Bypass azota =))
const oldMethod = XMLHttpRequest.prototype.send;
XMLHttpRequest.prototype.send = function (data) {
try {
if (JSON.parse(data).name === "exit_full_screen") return;
} catch (e) {}
oldMethod.call(this, data);
};