OP 31 July, 2024 - 12:36 AM
Ayo! so i've found a captcha-less site that allows you to send emails called anonymouse, here's a script:
Hope you guys like it
Code:
from requests import Session
from random import random
from base64 import b64encode
from time import sleep
user_agent = 'Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0'
sess = Session()
def send(to,title,content):
result = 5
while result:
n = round(10**9 + random()*10**10)
v = b64encode(hex(n).encode()).decode()
email_req = sess.post('http://anonymouse.org/cgi-bin/anon-email.cgi', headers={
'Host': 'anonymouse.org',
'User-Agent': user_agent,
'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
'Accept-Language': 'en-US,en;q=0.5',
'Accept-Encoding': 'gzip, deflate',
'Referer': 'http://anonymouse.org/anonemail.html',
'Connection': 'close',
'Upgrade-Insecure-Requests':'1',
'Content-Type':'application/x-www-form-urlencoded'
}, data={
'to': to,
'subject': title,
'text': content,
'v':v,
'n':n
})
if 'The e-mail has been sent' in email_req.text:
return 0
sleep(2.5*60*random())
result -= 1
return 1
Hope you guys like it
May your life have very high points, and a low amplitude
-Zeide
-Zeide