Anyone have noreffer script?

Discussion in 'PHP' started by jacobkell, Mar 18, 2010.

  1. #1
    I see there is plenty of sites where you can hide refferer on url,yet i was not able to find script to make same type site.Any idea?
     
    jacobkell, Mar 18, 2010 IP
  2. krsix

    krsix Peon

    Messages:
    435
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    0
    #2
    just pass it through as a normal redirect from your site, like example.com/?http://google.com -> meta refresh , then the referrer would appear to be from example.com
     
    krsix, Mar 18, 2010 IP
  3. guardian999

    guardian999 Well-Known Member

    Messages:
    376
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    103
    #3
    maybe you can use cektkp short url
    or use anonym.to clone
     
    guardian999, Mar 18, 2010 IP
  4. jacobkell

    jacobkell Well-Known Member

    Messages:
    830
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    128
    #4
    I did found something for 20$,but that sound a little bit toomuch for such a simple script.
     
    jacobkell, Mar 18, 2010 IP
  5. guardian999

    guardian999 Well-Known Member

    Messages:
    376
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    103
    #5
    you can find it at warez site and learn the code.
     
    guardian999, Mar 18, 2010 IP
  6. danx10

    danx10 Peon

    Messages:
    1,179
    Likes Received:
    44
    Best Answers:
    2
    Trophy Points:
    0
    #6
    Its very simple, create a php file, example redirect.php, and insert the following code into it:

    <?php
    
    //you'd obviously need to validate this, this is just an example...
    $domain = @strip_tags($_GET['domain']);
    
    if(!empty($domain)){
    echo "<meta http-equiv=\"refresh\" content=\"2;url=".$domain."\">";
    echo "Redirecting...";
    } else {
    echo "Domain not defined...";
    }
    ?>
    PHP:
    Then use it like redirect.php?domain=http://digitalpoint.com
     
    danx10, Mar 19, 2010 IP