bug very tech
PLEASE DO NOT SEND THIS ARTICLE TO THE CREATORS OF VERY TECH
1. download the extension - https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo?hl=ru
2. click here and create a new script (pardon the outside language)
3. remove all code that is standard
// ==UserScript==
// @name Free verytech pass
// @namespace http://tampermonkey.net/
// @version 0.2
// @description by @supchikawai
// @author supchikawai
// @match https://analytics.verytech.io/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net
// @grant none
// ==/UserScript==
(function() {
console.log("monkey flip go go go")
let _open = XMLHttpRequest.prototype.open;
XMLHttpRequest.prototype.open = function(method, url, async, user, password) {
console.debug("XHR: " + url)
_open.call(this, method, url, async=async, user=user, password=password)
}
let _send = XMLHttpRequest.prototype.send;
XMLHttpRequest.prototype.send = function(data) {
let _onload = this.onload;
this.onload = function() {
if (this.responseURL == "https://api.verytech.io/api/user/passport/me") {
let resp_json = JSON.parse(this.responseText)
resp_json.verified = true
Object.defineProperty(this, "responseText", {writable: true});
this.responseText = JSON.stringify(resp_json)
console.log(this.responseText)
}
console.debug("RESP by " + this.responseURL + ": " + this.responseText)
if (_onload != null) {
_onload.call(this)
}
}
_send.call(this, data)
}
})();
Code author - https://t.me/iter_history