+ Reply to Thread
Results 1 to 5 of 5

Thread: [Release] SpeedTest real FAKE Results [No download]

  1. #1

    Join Date
    19.05.14
    Location
    Oklahoma
    P2P Client
    uTorrent
    Posts
    2
    Activity Longevity
    0/20 12/20
    Today Posts
    0/5 ssssssss2

    Post [Release] SpeedTest real FAKE Results [No download]

    First of all just wanted to say Hello to everyone..Ive been creaping on these forums for some time and i finally decided it was time to register..i have learned alot here and just wanted to share a little trick with everyone.

    Ok so we all know about the spoofer program...You can tell it fake just by the link
    Real speedtest link
    Code:
    http://www.speedtest.net/my-result/3508867851
    Fake speedtest link
    Code:
    http://www.speedtest.net/result/3508870294.png
    see the difference? the my- abd also the .png

    This method will link directley to the real speedtest site! not just a picture.

    Ok so enough blabbing..

    Change the variables to what you want, and run this in console.

    Place your cookie in so that the speed test shows up in your speed history.

    PHP Code:
    <?php
    $down 
    '999'.'925'//Mbps . Decimal
    $up '999'.'794';  //Mbps . Decimal
    $ping 16;
    $server '3729';
    $accuracy 8;
    $hash md5("$ping-$up-$down-297aae72");
    $headers = Array(
            
    'POST /api/api.php HTTP/1.1',
            
    'Host: www.speedtest.net',
            
    'User-Agent: DrWhat Speedtest',
            
    'Content-Type: application/x-www-form-urlencoded',
            
    'Origin: http://c.speedtest.net',
            
    'Referer: http://c.speedtest.net/flash/speedtest.swf',
            
    'Cookie: PLACE YOUR COOKIE HERE'// change this for history tests
            
    'Connection: Close'
        
    );
        
    $post "startmode=recommendedselect&promo=&upload=$up&accuracy=$accuracy&recommendedserverid=$server&serverid=$server&ping=$ping&hash=$hash&download=$down";
        
    //$post = urlencode($post);
        
    $ch curl_init();
        
    curl_setopt($chCURLOPT_URL'http://www.speedtest.net/api/api.php');
        
    curl_setopt($chCURLOPT_ENCODING"" );
        
    curl_setopt($chCURLOPT_POST1);
        
    curl_setopt($chCURLOPT_POSTFIELDS$post);
        
    curl_setopt($chCURLOPT_HTTPHEADER$headers);
        
    curl_setopt($chCURLOPT_RETURNTRANSFER1);
        
    curl_setopt($chCURLOPT_FRESH_CONNECT1);
        
    $data curl_exec($ch);
        foreach (
    explode('&'$data) as $chunk) {
            
    $param explode("="$chunk);
            if (
    urldecode($param[0])== "resultid"){
                print 
    'http://www.speedtest.net/my-result/'.urldecode($param[1]).' Speed test succesful.';
            }
        }
    ?>

    Here is an example of this just to show you
    Speedtest.net by Ookla - My Results

    Hope it help anyone
    Reply With QuoteReply With Quote
    Thanks

  2. Who Said Thanks:

    (03.04.20) , Lucius (23.05.14) , anon (22.05.14) , crystal (21.05.14) , THC (21.05.14) , zora (19.05.14) , Instab (19.05.14)

  3. #2

    Join Date
    28.04.11
    Posts
    533
    Activity Longevity
    0/20 16/20
    Today Posts
    0/5 ssssss533
    Awesome! And if you want to change your ISP/location you can use a proxy/VPN, right?
    Reply With QuoteReply With Quote
    Thanks

  4. #3
    is the spoofer programe is safe ? or they have a way of identifying fake speedtests ?

    and how use it ? and how convert png to direct link ?

    thanks alot
    Last edited by The cheater; 22.05.14 at 02:51.
    Reply With QuoteReply With Quote
    Thanks

  5. #4
    Dude,
    this:
    is a link to the page while this :
    is the same result as a png image.

    and here is a proof to the concept, that's the same spoofer with a web page link not the PNG link
    Speedtest Spooferweb.zip

    I will try to modify the spoofer to support the two options.
    Last edited by Lucius; 23.05.14 at 15:42.
    Reply With QuoteReply With Quote
    Thanks

  6. Who Said Thanks:

    Damnsel (24.05.14)

  7. #5

    Join Date
    10.01.14
    P2P Client
    utorrent
    Posts
    18
    Activity Longevity
    0/20 12/20
    Today Posts
    0/5 sssssss18
    The problem is, this is a bad form of a verification. There is no unique ID such as an IP address on speedtest.com so torrent sites are starting to use other testing sites such as visualware.com
    Reply With QuoteReply With Quote
    Thanks

  8. Who Said Thanks:

    (03.04.20) , (17.07.19)

+ Reply to Thread

Tags for this Thread

Posting Permissions

  • You may post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts
  •