Add files via upload

This commit is contained in:
egieb
2024-06-19 20:27:11 +00:00
committed by GitHub
parent 6ee1f057a9
commit 4a46013136
+10
View File
@@ -0,0 +1,10 @@
REM Title: Webhook Test Tool
REM Author: @beigeworm
REM Description: This script sends a test message a webhook url from run-prompt
REM Target: Windows 10 , 11
DELAY 1000
GUI r
DELAY 750
STRING powershell -Ep Bypass $b = @{\"content\" = \"WORKING!\"} | ConvertTo-Json; IRM 'https://discord.com/api/webhooks/REPLACE_WITH/YOUR_WEBHOOK' -Me Post -Co 'application/json' -B $b
ENTER