? HOW TO USE PHP SENDERS (CRACKED / PAID) ?

Mutt

Professional
Messages
1,057
Reputation
7
Reaction score
596
Points
113
Welcome to a new tutorial.

For this tutorial you need few things:
▪️PHP Mailer
▪️SMTP
▪️Letter
▪️Leads

After you have this requirements we can start our journey through the mailer!

I will guide you step by step the setup.

photo_2021-03-25_01-40-55.jpg


As we can see here i use in our case the GX40 mailer.

1️⃣ File is the folder where we can add attachments like PDFs, Letters etc.

2️⃣ Setting is the folder where you setup your SMTPs, PHPMailer Class and Mailer options

3️⃣ gx40.php is the mailer

4️⃣ Read.txt is an instructions file

First of all install git for windows download link is here :


Then if you use windows, install XAMPP:


photo_2021-03-25_01-44-39.jpg


The file folder has different subdirectories.

We just need Letter and Maillist, If you want to add Subjects, go to token and open the subject.txt file.

photo_2021-03-25_01-45-57.jpg


? Adding Leads

To add leads, you navigate to :
file/maillist and open randymix.txt

Add here your leads one per line.

photo_2021-03-25_01-49-01.jpg


? Adding Letter

To add a letter you can edit the letter.html in file/letter/

As you can see here, the letter format is a bit weird.

##email##, ##subject## and so on are letter formats, which the mailer use for sending.

? Letter Formats

As i already mentioned, some senders have letter format. GX40 Letter format are :

##email## => Replace the contents of the letter to show the recipient's email

##subject## => Using random subject

##frommail## => Using random From mail

##fromname## => Using random From name

##short## => Using random your URL

##country## => Using random country around the world

##date## => Using date time. (NOT RANDOM)

##country## => Using random country around the world

##date## => Using date time. (NOT RANDOM)

##OS## => Using random Operating Systems

##browser## => Using random Browsers

photo_2021-03-25_01-59-05.jpg


⚙️ Configuration

As we can see in the picture, there is a settings file called "Gx.settings.php".

Import settings are SMTP Setup, Scampage, Subject, Msgfile.

SMTP Format are for example :
Code:
smtp.sendgrid.com|587|[email protected]|s3cr37

You setup this format for example :
Code:
$smtp_acc = [
    [
        "host"     => "smtp.sendgrid.com",
        "port"     => "587",
        "username" => "[email protected]",
        "password" => "s3cr37",
    ],
];

Here some values what you should change:
- filesend (if you don't send pdf, set to 1)
- maillist (you can change filename but you need to replace the file on the maillist path)
- fromname (e.g. Chase Bank Support)
- frommail (e.g. [email protected])
- subject (e.g. Verify Details)
- msgfile (your letter)
- filepdf (if filesend is 1 then remove the value)
- scampage (your url)

photo_2021-03-25_02-00-10.jpg

Example

? Starting The Mailer

On windows, go into the folder => shift+right click

Then type :
Code:
C:\xampp\php\php.exe gx40.php

On Linux just type:
Code:
php gx40.php

photo_2021-03-25_02-05-17.jpg


✍️ Remeber :

If you don't get any error then it's good. No output is good output.

It could happen that errors come up, in this case message me.

photo_2021-03-25_02-10-31.jpg

If this errors occurs, you need to use the user of SMTP as frommail.

photo_2021-03-25_02-11-59.jpg

This means your SMTP hoster has disabled mailing temporarily.. "per SPAM policy".

Reference:

(c) Scam channel
 
Top