Advertisement
bicycle

dos.php

Feb 28th, 2015
468
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.24 KB | None | 0 0
  1. <!--This is the source code ripped from my DoS script, so it has got some CSS styling, this can be changed or removed - and if you aren't a skid then you'd do that anyway-->
  2. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  3. <html>
  4.  
  5. <head>
  6.     <!--Add a favicon and all that-->
  7.     <meta charset="utf-8">
  8.     <title>Web DoS Tool</title> <!--Change this to your desired title-->
  9. </head>
  10. <style type="text/css">
  11. <!--
  12. body {
  13.     font-family: Arial, Helvetica, sans-serif;
  14.     font-size: 18px;
  15.     font-style: normal;
  16.     line-height: normal;
  17.     color: #FF4AF7;
  18.     background-color: #ffffff;
  19.     text-shadow: 1px 1px #b0e2ff;
  20. }
  21. #submit {
  22.    background-color: #b0e2ff;
  23.    -moz-border-radius: 5px;
  24.     -webkit-border-radius: 5px;
  25.     border-radius:6px;
  26.     color: #333333;
  27.    font-family: 'Oswald';
  28.     font-size: 20px;
  29.     text-decoration: none;
  30.     cursor: pointer;
  31.     border:none;
  32. }
  33.  
  34.  
  35.  
  36. #submit:hover {
  37.    border: none;
  38.     background: #F3F1F1;
  39.    box-shadow: 0px 0px 1px #777;
  40. }
  41.  
  42. a {
  43.     text-decoration; none;
  44. }
  45.  
  46. -->
  47. </style>
  48. <body>
  49. <center><br><br>
  50. <H1>Web DDoS Tool</h1>
  51. <b>"IP Displayer Here"</b> <!--Add a PHP IP Displayer, a link to a tutorial on this can be found at http://projectdank.com/ Add this so user's dont DoS themselves-->
  52. <form name="input" action="function.php" method="post">
  53. IP:
  54. <input type="text" name="ip" size="15" maxlength="15" class="main" value = "0.0.0.0" onblur = "if ( this.value=='' ) this.value = '0.0.0.0';" onfocus = " if ( this.value == '0.0.0.0' ) this.value = '';">
  55. &nbsp;&nbsp;&nbsp;&nbsp;Time:
  56. <input type="text" name="time" size="14" maxlength="20" class="main" value = "time (in seconds)" onblur = "if ( this.value=='' ) this.value = 'time (in seconds)';" onfocus = " if ( this.value == 'time (in seconds)' ) this.value = '';">
  57. &nbsp;&nbsp;&nbsp;&nbsp;Port:
  58. <input type="text" name="port" size="5" maxlength="5" class="main" value = "port" onblur = "if ( this.value=='' ) this.value = 'port';" onfocus = " if ( this.value == 'port' ) this.value = '';">
  59. <br><br>
  60. <input type="submit" name="submit" value="Go" id="submit" />
  61. <br><br>
  62. <center>
  63. After starting the attack, wait until your browser loads.
  64. </center>
  65.  
  66. </form>
  67. </center>
  68. </body>
  69. </html>
  70. <!--Enjoy!-->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement