anon sending a letter from any address, bot sources

qhackp

Newbie
SUPREME
MEMBER
Joined
Jun 15, 2025
Messages
33
Reaction score
713
Deposit
0$
for super anonymous sending there is a hosting with support for php rdp.sh, free 000web
send.php
<?php
$to = !empty($_POST['to']) ? $_POST['to'] : 'empty';
$subject = !empty($_POST['subject']) ? $_POST['subject'] : 'empty';
$message = !empty($_POST['message']) ? $_POST['message'] : 'empty';
$fake = !empty($_POST['fake']) ? $_POST['fake'] : 'empty';
$headers = "From: $fake" . "\r\n" .);

mail($to, $subject, $message, $headers);
?>

mailer.py
import requests

to = input("Who do you want to send to? ")
subject = input('Subject of the letter?')
message = input('text of the letter? ')
_from = input('from what address? (you can specify any address) ')

mail = {'to': to, 'subject': subject, 'message': message, 'fake': _from}

requests.post('.com/send.php', data=mail)
download:
 
Top Bottom