Tutorial Setup a working PHP Spam mailer

Carding

Professional
Messages
2,831
Reputation
17
Reaction score
2,017
Points
113
Today i will show you, how to setup a free and working PHP spam mailer.

DISCLAIMER:
THIS IS FOR INFORMATIONAL AND LEARNING PURPOSE ONLY!

Let's start...

Step 1:
Setup a free hoster with PHP and Sendmail support.
I have try it with bplaced.net and it works perfect.
So register a new Account on bplaced.net.

Step 2:
Download a PHP spam mailer.
Search for a working mailer or try this one. LINK
This is tested and works like acharm.

Step 3:
Setup the PHP file.
Copy the code from line 1 to line 49 an paste it into a new document on your Desktop called index.php

Step 3.1 (optional):
Change the charset.
Open the index.php and find


PHP Code:
$headers .= "Content-type: text/".$_POST['tipe']."; charset=windows-1251\r\n";

(line 25)
Change the


PHP Code:
charset=windows-1251

to

PHP Code:
charset=utf-8

This allow us to use unicode letters like ä, ö, ü, ß... for germans very usefull.

Step 4:
Fire up FileZilla
Start FileZilla and connect with your blaced.net data to the FTP server.
In my case I dont need to add a new FTP account to bplaced.net. The adress for me was my domain, my login and my password. But if you need to setup an account, so got to bplaced.net, login into, go to FTP (left side in the bar) and create or edit an account.

Step 5:
Upload the file.
Search for your index.php on the Desktop and drag-and-drop it to the FileZilla window on the right side (your FTP)

Step 6:
Testing
Open your Browser and go to your bplaced.net domain for example sinister.bplaced.net
Now you will see your script. Chose the method you want to (Send a mail, Spam, Flood) and insert a receive/sender Mail, a subject and your message. Here you can choose between HTML and Text messaging.

If you decide to send only one mail, you have to choose "Send simple message"
For sending one mail to several emails you have to got to "Spam" - add all emails in the "Receivers" window
And if you decide to send million of mails to one eMail, go to "Flood" - type a number of mails in the "Amount of messages " window

Now you can click on "Submit Query" and see what happen.

If you want, you can register/visit your domain and send the index.php to your server over TOR. I think you would be on the save side, if so.
 

Father

Professional
Messages
2,281
Reputation
4
Reaction score
538
Points
113
I SEE GUYS EVERY DAY IN GROUPS ASKING: NEED MAILER INBOX .... YOU ALL HAVE ZERO CLUE, READ MY "ALL ABOUT MAILS" THEN YOU KNOW WHY SMTPS DON'T INBOX...

FIRST OF ALL... MAILERS ARE ONLY HELPING YOU TO SEND THE MESSAGE YOU SETUP THE EMAIL WITH THE MAILER AND MAILERS ARE JUST SENDING THE MAILS.

IF YOU SETUP WRONG EMAIL THEN MAY NOT INBOXING BUT THAT'S NOT THE MAIN REASON... PEOPLE CRY "I CAN'T USE SMTP, YOU SCAMMER" MEHN WTF... SOME EMAIL PROVIDER DISABLE SMTP SENDING FOR FOREIGN IPS! A SNIPPET FROM THE PDF.

Some SMTP servers check the IP address of the host from which the connection was initiated - an ideal method for normal ISPs who only want to give access to their SMTP servers to their own customers

NEXT:
MAKE SURE YOU DO FOLLOWING
- ENCODE SUBJECT
- SENDER EMAIL = AUTHENTICATED SMTP USER ELSE YOUR MAIL GETS REJECTED BY HOST
- CLEAN SMTP HOST
- ENCODE LETTER TEXT

DEPENDING ON THE HOST NAME (SMTP.BLABLABA.COM) THE MAIL PROVIDER FILTER SPAM MAILS. IF SMTP HOST NAME NOT KNOWN AS SPAMMER THEN CHECKING EMAIL IF BAD KEYWORDS LIKE "BANK", "LOCKED" ARE DETECTED IF NOT THEN INBOX ELSE NOT INBOX.

THE EASIEST EXAMPLE IS:
I USED SMTP CRACKER SCRIPT TO CRACK SMTPS AND SENT MY RESULTS TO OUTLOOK MAIL... SAME SUBJECT, SAME EMAIL MESSAGE, SAME USER EVERYTHING IS SAME EXCEPT THE SMTP LOG

SOME SMTP MAILS INBOXED SOME WENT TO JUNK SO PLEASE STOP TALKING SHIT ABOUT BAD MAILERS INBOX MAILERS. IT ALSO DEPENDS ON LETTER AND SMTP BITCHES.
 
Top