vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=33)
-   -   Cerb's Anti-Proxy Hack - 15 seconds install (https://vborg.vbsupport.ru/showthread.php?t=68590)

Paul M 05-02-2005 02:14 PM

I assume this hack is not aimed at the uk, since you would kill off a major number of potential members (the major uk ISP's such as ntl and freeserve use proxy servers).

Jenta 05-10-2005 09:05 PM

nice, just what i was looking for
some of us dont care if 99% of internet users can not see our site

dont like it, dont use it
no need to bash something because its not useful to you particularly

thanks for the hack
will help me stop abuse

Ayumu Yumi 05-14-2005 12:40 AM

I tried this exact same hack before. 3 seconds after I installed it, every AOL user on the site IM'ed me saying they were blocked from the site. I visited my own site through my AOL and this variable existed:

$_SERVER['HTTP_VIA'] = "HTTP/1.1 (Velocity/1.1.1 [uScMs f p eN:t cCMp s ]), HTTP/1.1 dtc-ad09[CDBC74CB] (Traffic-Server/5.3.8 [uScM])"

As much as I would like to ban proxies or ban by IP at all, I just figured it would be easier to turn on admin validation for new user registrations.

If AOL didn't use proxies such as that one then I would probably use it. Of course if you didn't use AOL's default browser and opened up an external browser, then the AOL proxy vars aren't there anymore. But most AOL users aren't smart enough to do that, or they are just too lazy to.

Jenta 05-14-2005 03:53 AM

hehe @ the aolers
im about to add deny from aol.com to my .htaccess file :)

Ayumu Yumi 05-14-2005 04:21 AM

That's fine, if you're don't mind blocking a large chunk of the internet community from accessing your site... whatever spins your wheel I guess :)

Chadi 05-20-2005 12:01 AM

It doesn't work when I tested it with www.guardster.com

Any way around this?

Keyser S?ze 05-23-2005 06:25 AM

if someone used this code here, to detect what the real IP address is, (unless sent by a annonomous proxy) how could, or could u use that to help stop banned users from coming back under a proxie? or would this help in any other way

Code:

if (getenv("HTTP_FORWARDED") != ""){$ip = getenv ("HTTP_FORWARDED");$proxy_used = 1;}
elseif (getenv("HTTP_X_FORWARDED_FOR") != ""){$ipt = explode (",",getenv ("HTTP_X_FORWARDED_FOR")); $ip=trim($ipt[0]);$proxy_used = 1;}
elseif (getenv("HTTP_CLIENT_IP") != ""){$ip = getenvgetenv("HTTP_CLIENT_IP");$proxy_used = 1;}
else {$ip = getenv ("REMOTE_ADDR");}


Keyser S?ze 05-25-2005 01:24 PM

ok a guy just emailed me, hack is working ;D hes at work, they have a proxy so he cant register, but instead of just getting a page that says no proxies, he got this error message

Warning: in_array(): Wrong datatype for second argument in /home/asylum/public_html/forums/register.php on line 18 No Proxies

so i need to fix that also id like to put as the message "Sorry but this site does not allow people using a proxie"

poolking 06-11-2005 09:38 AM

Quote:

Originally Posted by Jenta
nice, just what i was looking for
some of us dont care if 99% of internet users can not see our site

dont like it, dont use it
no need to bash something because its not useful to you particularly

thanks for the hack
will help me stop abuse

If you do happen to stop by this thread at some point, care to re-read what I've quoted, if your site was getting you a whole load of revenue then you would care that 99% of internet users couldn't access your site, so a suggestion don't complain if your traffic takes a nose dive that you cannot pull out from, he wasn't bashing it he was just pointing it out. ;)

To jog your memory I was talking about your reply to PaulM

Jenta 06-11-2005 05:42 PM

Quote:

Originally Posted by poolking
If you do happen to stop by this thread at some point, care to re-read what I've quoted, if your site was getting you a whole load of revenue then you would care that 99% of internet users couldn't access your site, so a suggestion don't complain if your traffic takes a nose dive that you cannot pull out from, he wasn't bashing it he was just pointing it out. ;)

To jog your memory I was talking about your reply to PaulM

did u see me quote paulm? i was talking about the ones bashing the hack
you know that one guy that sits here all day refreshing the main page waiting for a hack to be released so he can make negative comments?

btw, dont u go worrying yourself about my site as i could care less
im not into making a popular sites for the masses...its a small semi private site so this hack is perfect for me
only wish i didnt have 2 users that sometimes use aol or i would make it sitewide instead of register.php only :)

Wifey 06-13-2005 03:11 AM

NICE. I have the same type problem with pissed off users coming back on proxies. I have a hack to where it tells me their actual IP and the proxy so I can ban both, but I may just install this...that is if it doesn't block AOL :)

Jenta 06-13-2005 04:08 AM

Quote:

Originally Posted by ashkarita
that is if it doesn't block AOL :)

it does
i had my 2 aolers test it

lifesourcerec 09-17-2005 02:13 PM

Quote:

Originally Posted by Keyser S?ze
ok a guy just emailed me, hack is working ;D hes at work, they have a proxy so he cant register, but instead of just getting a page that says no proxies, he got this error message

Warning: in_array(): Wrong datatype for second argument in /home/asylum/public_html/forums/register.php on line 18 No Proxies


so i need to fix that also id like to put as the message "Sorry but this site does not allow people using a proxie"

Same error here

poolking 09-17-2005 02:17 PM

It'll probably block all NTL (UK) users as well being as we all behind proxies. This why I don't like any hacks that ban proxies.

-=Sniper=- 09-19-2005 11:44 AM

would it not be better to moderate users who register using a proxy? which also includes the real ip to compare?

ImportPassion 09-20-2005 03:23 PM

yes, it prolly would. also an easy work around for AOL at least, would be to get the host by ip and see if it has AOL in it and let it through.

nflsmackdown 09-21-2005 10:57 PM

Quote:

Originally Posted by Wential
Excellent Hack!

Great hack! I'm doing this soon!

renk2 09-12-2007 08:19 PM

Quote:

Originally Posted by Burns (Post 563270)
Could anyone help me to modify this hack, so that high anonymity proxies are blocked too?
Isn't it possible to identify a high anonymity proxy on the basis of missing private header information?
( or just any proxy? )

I would like to know as well?

renk2 09-13-2007 05:59 PM

No one knows a modification that will work?

Mr.Danko Jones 09-14-2007 01:51 AM

Yeah. Not sure if I posted this before, but this hack doesn't work with my v3.6.8. Is something better out there?

DEADLY S0LDIER 11-17-2007 07:12 PM

It didn't work for me <.<, I tested it on a proxy.


All times are GMT. The time now is 04:55 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01089 seconds
  • Memory Usage 1,766KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (6)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (21)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete