01-11-2016, 09:58 PM
All that we need is a PC with Per(or php). First I want to say that I'm not a professional spammer, my limits -
is 1k email in my base. This way give me a 100% inbox rate at different email providers.
Now the base of my TUT. In almost all forums we have this function "sent to a friend". In all it's made in different ways.
Per example in SMF forum they put in your email the template from this forum like the link to topic, friend email and at last your comments.
But in other forums where this function is on but don't have a hard template we can write all that we want.
Format of the email that we send will be:
CODE:
From: "here the name of forum" <[email protected]>
CODE:
Reply-to: "here the name of forum" <[email protected]>
Here you can write all that you want..
and only at the end will be added:
"Link:topic link from where come this email"
How we can see, we have only 1 negative point - it's the link at the end of email. But we don't need to spend our
money for proxies and shells. But we can make our new forum, there are many free providers of free forums on the web.
Go to the main service, create a forum. For training and debugging a script you can create a few of their forums,
but for a mass mailing probably better to do spam with other people's resources, since there is less percentage
that they will be closed for abuse (and if they closed down then hell with them, there are a lot of forums).
I created different phpbb3 forums (there is still ipb, punbb, I don't test them). Create a forum in general, register
an account and go to the link type http://your_forum/te...riend.forum?f=3
Where f = 3 shows a subforum in the forum, which we will use to spam (no matter what, it's just a link that will be
at the bottom of the message). Next, write the script mailing list. I'll write naPerl:: Lwp, you can make an analogue on something else.
CODE:
#Perl
CODE:
use warnings;
use LWP::UserAgent;
use HTTP::Cookies;
use HTTP::Request::Common;
$ua = LWP::UserAgent->new;
$cookie_jar = HTTP::Cookies->new( file => "cook.dat", autosave => 1,);
$ua->cookie_jar($cookie_jar);
#Include declaration, browser objects, and connect cookie files.
CODE:
'username'=>'Login',
'password'=>'Password',
'autologin'=>'on',
'redirect'=>'',
'query'=>'',
'login'=>'%D0%92%D1%85%D0%BE%D0%B4'
});
sleep 1;
Here we put forum address, login and password.
CODE:
$ua->get('http://your_forum/tell_friend.forum?f=3');
#Here we go to the link from where we send our emails.
in the file are listing.txt we put our emails to spam, we are opening them as a list of array and send each in turn.
Important (!), Check whether a file of some extra characters, type of gaps or something, because the script will not work.
CODE:
open F, '<listing.txt';
CODE:
my @list = <F>;
close F;
foreach my $item(@list)
{
$ua->post('http://our_forum/tell_friend.forum',
{
'friendname'=>'name of the receiver',
'friendemail'=>$item,
'subject'=>'email subject',
'message'=>'email text',
'cc_email'=>'1',
'submit'=>'%D0%9E%D1%82%D0%BF%D1%80%D0%B0%D0%B2%D0%B8%D1%82%D1%8C+e-mail'
});
sleep 5;
}
Here the code seems to be clear, but I will explain it:
friendname - the name of "friend", here you can substitute the first part of the email (before @)
, or generate a random name.
friendemail - variable $ item, in this case, the for-each loop sends mail to every letter from the list,
then pause for 5 seconds (so that the server is not banned us for trying to ddos).
'Cc_email' => '1 ', - whether it is to duplicate the letter itself, ie to the mailing, which registered a
profile from which the spam. If 0, you can miss it at all in the request. Parameter at the beginning helps to debug.
In general, that's all. Perhaps, in order to send thousands bases can be done in some other way -
for example, multi-threaded script that just spamming through a few different forums, we can generate
text and subject, and so on. I leave you to improve these..
is 1k email in my base. This way give me a 100% inbox rate at different email providers.
Now the base of my TUT. In almost all forums we have this function "sent to a friend". In all it's made in different ways.
Per example in SMF forum they put in your email the template from this forum like the link to topic, friend email and at last your comments.
But in other forums where this function is on but don't have a hard template we can write all that we want.
Format of the email that we send will be:
CODE:
From: "here the name of forum" <[email protected]>
CODE:
Reply-to: "here the name of forum" <[email protected]>
Here you can write all that you want..
and only at the end will be added:
"Link:topic link from where come this email"
How we can see, we have only 1 negative point - it's the link at the end of email. But we don't need to spend our
money for proxies and shells. But we can make our new forum, there are many free providers of free forums on the web.
Go to the main service, create a forum. For training and debugging a script you can create a few of their forums,
but for a mass mailing probably better to do spam with other people's resources, since there is less percentage
that they will be closed for abuse (and if they closed down then hell with them, there are a lot of forums).
I created different phpbb3 forums (there is still ipb, punbb, I don't test them). Create a forum in general, register
an account and go to the link type http://your_forum/te...riend.forum?f=3
Where f = 3 shows a subforum in the forum, which we will use to spam (no matter what, it's just a link that will be
at the bottom of the message). Next, write the script mailing list. I'll write naPerl:: Lwp, you can make an analogue on something else.
CODE:
#Perl
CODE:
use warnings;
use LWP::UserAgent;
use HTTP::Cookies;
use HTTP::Request::Common;
$ua = LWP::UserAgent->new;
$cookie_jar = HTTP::Cookies->new( file => "cook.dat", autosave => 1,);
$ua->cookie_jar($cookie_jar);
#Include declaration, browser objects, and connect cookie files.
CODE:
'username'=>'Login',
'password'=>'Password',
'autologin'=>'on',
'redirect'=>'',
'query'=>'',
'login'=>'%D0%92%D1%85%D0%BE%D0%B4'
});
sleep 1;
Here we put forum address, login and password.
CODE:
$ua->get('http://your_forum/tell_friend.forum?f=3');
#Here we go to the link from where we send our emails.
in the file are listing.txt we put our emails to spam, we are opening them as a list of array and send each in turn.
Important (!), Check whether a file of some extra characters, type of gaps or something, because the script will not work.
CODE:
open F, '<listing.txt';
CODE:
my @list = <F>;
close F;
foreach my $item(@list)
{
$ua->post('http://our_forum/tell_friend.forum',
{
'friendname'=>'name of the receiver',
'friendemail'=>$item,
'subject'=>'email subject',
'message'=>'email text',
'cc_email'=>'1',
'submit'=>'%D0%9E%D1%82%D0%BF%D1%80%D0%B0%D0%B2%D0%B8%D1%82%D1%8C+e-mail'
});
sleep 5;
}
Here the code seems to be clear, but I will explain it:
friendname - the name of "friend", here you can substitute the first part of the email (before @)
, or generate a random name.
friendemail - variable $ item, in this case, the for-each loop sends mail to every letter from the list,
then pause for 5 seconds (so that the server is not banned us for trying to ddos).
'Cc_email' => '1 ', - whether it is to duplicate the letter itself, ie to the mailing, which registered a
profile from which the spam. If 0, you can miss it at all in the request. Parameter at the beginning helps to debug.
In general, that's all. Perhaps, in order to send thousands bases can be done in some other way -
for example, multi-threaded script that just spamming through a few different forums, we can generate
text and subject, and so on. I leave you to improve these..












