Machanla mee web traffic gana

WwW.lk

Well-known member
  • Nov 4, 2009
    11,387
    762
    113
    kurunegala
    machanla web site ekata web traffic ganna puluwan leagel or ilegal :P system monawada?google index wena,karawana plz comment
     
    Jul 29, 2011
    191
    26
    0
    UHits – PHP proxy hits generator



    This scripts uses free proxies to generate fake hits to specified website.
    Script Files


    • proxy.txt – is a text file containing all proxy information
    • proxy.php – does all the work of generating scripts
    Both files need to be saved in the same directory on your server.
    proxy.txt

    Create a text file called proxy.txt and add one proxy address with port number per line:
    ?
    1
    2
    3
    207.156.32.23:80
    203.156.35.123:8080
    154.166.32.23:444



    Make sure to save this file in the same directory as proxy.php. Script is ran using Cron-jobs, so you’ll need to know how to set one up on your server.
    proxy.php

    ?
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    //Let's make sure no warrnings are displayed by PHP
    error_reporting(0);
    // Specify url that shoud receive hits
    // make sure to include trailing slash "/" at the end of folders
    $url_1 = "http://www.yourdomain.com/";

    // Specify your server and port
    $myserver = "yourdomain.com:80";

    // Specify how many hits to receive every time the script is run
    // Selecting more then 5 may not work
    $randnr = 2;

    //read proxy file
    $proxies = file("proxy.txt");
    //now we will get a random proxy address from the proxies.txt file
    $getrand = array_rand($proxies, $randnr);
    for($x=0;$x<$randnr; $x++){
    //setting time limit to zero will ensure the script doesn't get timed out
    set_time_limit(0);
    //now we will separate proxy address from the port
    $PROXY_URL=$proxies[$getrand[$x]];
    $proxyarr = explode(":", $PROXY_URL);
    $address = trim($proxyarr[0]);
    $port = trim($proxyarr[1]);
    //following code generates the header file
    $headerinfo =array(
    'User-Agent' => 'UHits/1.0 ('.$myserver.')',
    'Accept' => 'image/gif, image/x-xbitmap, image/jpeg, image/png, */*',
    'Pragma' => 'no-cache',
    'Connection' => 'keep-alive');
    reset($headerinfo);
    //now we are ready to reach our website through the proxy
    $fp=fsockopen($address,$port);
    if($fp) {
    fputs($fp,"GET $url_1 HTTP/1.1rn");
    fputs($fp,"Host: $myserverrn");
    reset($headerinfo);
    while(list($header,$value)=each($headerinfo)) {
    fputs($fp,"$header: $valuern");
    //let's give the script some time to execute
    sleep(2);
    } //end while
    fputs($fp,"rn");
    fclose($fp);
    } //end if
    } //end for



    Cron Job

    Using cron jobs you can set up the script to execute every hour or minute or every 3 minutes. Here are some cron job examples.
    GET http://yourdomain.com/proxy.php> /dev/null
    or
    wget -q http://yourdomain.com/proxy.php> /dev/null
     

    WwW.lk

    Well-known member
  • Nov 4, 2009
    11,387
    762
    113
    kurunegala
    ~>කුරුමිට්ටා<~;10767451 said:
    UHits – PHP proxy hits generator



    This scripts uses free proxies to generate fake hits to specified website.
    Script Files


    • proxy.txt – is a text file containing all proxy information
    • proxy.php – does all the work of generating scripts
    Both files need to be saved in the same directory on your server.
    proxy.txt

    Create a text file called proxy.txt and add one proxy address with port number per line:
    ?
    1
    2
    3
    207.156.32.23:80
    203.156.35.123:8080
    154.166.32.23:444



    Make sure to save this file in the same directory as proxy.php. Script is ran using Cron-jobs, so you’ll need to know how to set one up on your server.
    proxy.php

    ?
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    //Let's make sure no warrnings are displayed by PHP
    error_reporting(0);
    // Specify url that shoud receive hits
    // make sure to include trailing slash "/" at the end of folders
    $url_1 = "http://www.yourdomain.com/";

    // Specify your server and port
    $myserver = "yourdomain.com:80";

    // Specify how many hits to receive every time the script is run
    // Selecting more then 5 may not work
    $randnr = 2;

    //read proxy file
    $proxies = file("proxy.txt");
    //now we will get a random proxy address from the proxies.txt file
    $getrand = array_rand($proxies, $randnr);
    for($x=0;$x<$randnr; $x++){
    //setting time limit to zero will ensure the script doesn't get timed out
    set_time_limit(0);
    //now we will separate proxy address from the port
    $PROXY_URL=$proxies[$getrand[$x]];
    $proxyarr = explode(":", $PROXY_URL);
    $address = trim($proxyarr[0]);
    $port = trim($proxyarr[1]);
    //following code generates the header file
    $headerinfo =array(
    'User-Agent' => 'UHits/1.0 ('.$myserver.')',
    'Accept' => 'image/gif, image/x-xbitmap, image/jpeg, image/png, */*',
    'Pragma' => 'no-cache',
    'Connection' => 'keep-alive');
    reset($headerinfo);
    //now we are ready to reach our website through the proxy
    $fp=fsockopen($address,$port);
    if($fp) {
    fputs($fp,"GET $url_1 HTTP/1.1rn");
    fputs($fp,"Host: $myserverrn");
    reset($headerinfo);
    while(list($header,$value)=each($headerinfo)) {
    fputs($fp,"$header: $valuern");
    //let's give the script some time to execute
    sleep(2);
    } //end while
    fputs($fp,"rn");
    fclose($fp);
    } //end if
    } //end for



    Cron Job

    Using cron jobs you can set up the script to execute every hour or minute or every 3 minutes. Here are some cron job examples.
    GET http://yourdomain.com/proxy.php> /dev/null
    or
    wget -q http://yourdomain.com/proxy.php> /dev/null

    machan meeken mokadda karanne pm ekak daahanko :) or publick
     
    Jul 29, 2011
    191
    26
    0
    ෆේක් හිට්ස් 1සෙකන්ඩ් වලට 100,000ක් දෙන්නත් පුළුවන්.. 1 dayවලින් ගූග්ලෙ 1st result කරන්නත් පුළුවන්.. ඒත් දවසෙන් බැලැක්ලිස්ට් වෙනවා.. ඊට පස්සෙ සයිට් එක ඩිලීට් කරන්න තමා වෙන්නෙ