mirror of
https://github.com/beigeworm/BadUSB-Files-For-FlipperZero.git
synced 2025-12-25 04:15:26 -08:00
10 lines
387 B
Plaintext
10 lines
387 B
Plaintext
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 |