Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 28

Thread: What is with it saying proxy detected

  1. #11
    Banned
    Join Date
    Mar 2003
    Posts
    89
    thanks doods 4 ur answers,


  2. #12
    Banned
    Join Date
    Apr 2003
    Posts
    3,839
    cheyyenne ... depend what kind of Proxy server you are suing .. here are some good websites with lot of proxy servers to use ....

    http://www.proxybench.com/proxy/proxylist.asp?

    http://theproxyconnection.com/proxylist4.html

    http://www.multiproxy.org/all_proxy.htm

    http://www.proxys4all.com/topten.shtml

  3. #13
    Senior Member
    Join Date
    Nov 2002
    Posts
    382
    Cool test negative!
    I'm wondering how the proxy detection works and if it could be turn around!

    I can't find any RFC on the subject except "Classical versus Transparent IP Proxies", RFC1919, INFORMATIONAL.

    Is there a bit smwh in the HTTP header giving the info? if yes can it be changed?
    [shadow] SHARING KNOWLEDGE[/shadow]

  4. #14
    Banned
    Join Date
    Aug 2001
    Location
    Yes
    Posts
    4,424
    Networker:

    Here's the (php)-code for the proxy detection script:

    Code:
    <?php
    print ("Your remote address is $REMOTE_ADDR 
    ");
    print ("Your remote host is $REMOTE_HOST 
    ");
    print ("You're being forwarded from $HTTP_X_FORWARDED_FOR 
    
    ");
    if ($REMOTE_ADDR = $HTTP_X_FORWARDED_FOR) {
    		print ("You seem to be using a proxy 
    
    ");
    		}
    	else {
    		print ("You don't seem to be using a proxy 
    
    ");
    		}
    ?>
    Cheyenne: if you're after a proxy for anonimity, you'll probably be disappointed by the speed (unless you're willing to pay). What I use is a caching proxy: all it does is cache webpages that are requested, thus speeding up my connection. Whenever I request something that has been requested before, my browser will just grab it from the cache. By no means is it anonymous: the HTTP_X_FORWARDED_FOR header will reveal my 'real' information.

  5. #15
    Kwiep
    Join Date
    Aug 2001
    Posts
    924
    The php script Negative posted just compares the $REMOTE_ADDR wich contains yer real ip (the proxy needs to know were to send it) and the $HTTP_X_FORWARDED_FOR wich contains the host of the proxy (wich you can change with software like proxomitron btw). So if it says proxy detected, you don't have an anonimous proxy... Maybe that cleared it up a little more...
    Double Dutch

  6. #16
    Forgotten Ghost RogueSpy's Avatar
    Join Date
    Aug 2001
    Location
    Cyberspace
    Posts
    783
    Test
    "Never give in-never, never, never, in nothing great or small, large or petty, never give in to convictions of honor and good sense. Never yield to force; never yield to the apparently overwhelming might of the enemy!" - Winston Churchill

  7. #17
    I'd rather be fishing DjM's Avatar
    Join Date
    Aug 2001
    Location
    The Great White North
    Posts
    1,867
    Originally posted here by RogueSpy
    Test
    And what is it we're testing Rogue?

    Cheers:
    DjM

  8. #18
    Forgotten Ghost RogueSpy's Avatar
    Join Date
    Aug 2001
    Location
    Cyberspace
    Posts
    783
    damn. . . . oh well.
    "Never give in-never, never, never, in nothing great or small, large or petty, never give in to convictions of honor and good sense. Never yield to force; never yield to the apparently overwhelming might of the enemy!" - Winston Churchill

  9. #19
    Kwiep
    Join Date
    Aug 2001
    Posts
    924
    lol

    test from me to then... this one should be *wihout* the proxy detected, while my previous was with one...
    Double Dutch

  10. #20
    Senior Member
    Join Date
    Nov 2002
    Posts
    382
    yeah thanx neel & negative for the tip,
    assuming the fact that proxy being used is not anonymous, where within the HTTP protocol signaling does the real IP given out?

    To be more specific do u know where I could find a sort of Proxy implementation "standard"?
    [shadow] SHARING KNOWLEDGE[/shadow]

Posting Permissions

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