From 74b4b2e5817a2d7b6b2dfb3549b9e48429193c67 Mon Sep 17 00:00:00 2001 From: beigeworm <93350544+beigeworm@users.noreply.github.com> Date: Mon, 10 Jul 2023 22:04:10 +0000 Subject: [PATCH] Add files via upload --- Pranks/Blank Image to Discord Spammer.txt | 28 +++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 Pranks/Blank Image to Discord Spammer.txt diff --git a/Pranks/Blank Image to Discord Spammer.txt b/Pranks/Blank Image to Discord Spammer.txt new file mode 100644 index 0000000..3ccea55 --- /dev/null +++ b/Pranks/Blank Image to Discord Spammer.txt @@ -0,0 +1,28 @@ +REM Title: Blank Image to Discord Spammer +REM Author: @beigeworm +REM Description: Uses Powershell to send a blank image to a Discord webhook multiple times (to clear chat). +REM Target: Windows 10 + +REM some setup for dukie script +DEFAULT_DELAY 100 + +REM open powershell (remove -W Hidden to show the window). +GUI r +DELAY 750 +STRING powershell -NoP -NonI -W Hidden -Exec Bypass +CTRL-SHIFT ENTER +DELAY 1500 +ALT y +DELAY 5000 + + +REM Replace DISCORD_WEBHOOK_HERE with your Discord Webhook. +REM Replace 25 with the number of images to send. + +STRING $i = 0;$url = 'DISCORD_WEBHOOK_HERE';$n = 25 + + +REM rest of the script. +STRING ;$b64 = 'iVBORw0KGgoAAAANSUhEUgAAAAQAAAUeCAYAAABZhJAkAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAACISURBVHhe7c1LDoAgDAVAjqRoIt7/ +STRING YMjPwNaVm1k0pdPXEPYj5bUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4Bld5zApxbN7eE3FJ7GfKW92W3hItGvtQezm5yzCrfdtORh+JCktiLQDAr5DyA9jL3oe8Lgu3AAAAAElFTkSuQmCC' +STRING ;$decoded = [System.Convert]::FromBase64String($b64);$File = "$env:temp\bl.png";Set-Content -Path $File -Value $decoded -Encoding Byte;while($i -lt $n){curl.exe -F "file1=@$file" $url;$i++};Remove-Item -Path $file;exit \ No newline at end of file