SA-MP Forums Archive
[FilterScript] Anti-Proxy [Prevent Ban-Evade] - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Filterscripts (https://sampforum.blast.hk/forumdisplay.php?fid=17)
+--- Thread: [FilterScript] Anti-Proxy [Prevent Ban-Evade] (/showthread.php?tid=508330)



Anti-Proxy [Prevent Ban-Evade] - ic3cr3am - 21.04.2014

CreamyProtection Anti-Proxy v1.0

Have you banned a player, yet they just tend to come back? Well that stops now, with this filterscript you can prevent players from joining the server while connected to a proxy server.

Notes
This database will block ips of Hotspot Shield, the most commonly used proxy server. About 10/15 ips will added each and every day. Please share this with your friends to motivate me in continue blocking proxies.

Database Stats

Proxies Blocked: 1447 (Total of 5,79mb)
Avr. Proxies Added Daily: 15


Credits

ipdb.at
(I got huge about of Hotspot Shield IPs from here, so be sure to check out their site.)

Download

Anti-Proxy.amx
Anti-Proxy.pwn
Pastbin (pastebin screws up the code format.)
Pastebay.net



Re: Anti-Proxy [Prevent Ban-Evade] - AmitRaj - 21.04.2014

not bed , good job +rep


Re: Anti-Proxy [Prevent Ban-Evade] - Bingo - 21.04.2014

Quote:
Originally Posted by AmitRaj
Посмотреть сообщение
not bed , good job +rep
Yeah its not bed nor bad.

OT: Good fs Can you please provide pastebin?


Re: Anti-Proxy [Prevent Ban-Evade] - ic3cr3am - 21.04.2014

Quote:
Originally Posted by AmitRaj
Посмотреть сообщение
not bed , good job +rep
Thanks

Quote:
Originally Posted by Bingo
Посмотреть сообщение
Yeah its not bed nor bad.

OT: Good fs Can you please provide pastebin?
Thanks, sure


Re: Anti-Proxy [Prevent Ban-Evade] - AmitRaj - 21.04.2014

Quote:
Originally Posted by Bingo
Посмотреть сообщение
Yeah its not bed nor bad.

OT: Good fs Can you please provide pastebin?
my typo there LOL , anyway nice satire and sarcasm


Re: Anti-Proxy [Prevent Ban-Evade] - Alex Magaсa - 21.04.2014

great job and usefull


Re: Anti-Proxy [Prevent Ban-Evade] - Ke_NiReM - 21.04.2014

Good FS , nice bro ,)


Re: Anti-Proxy [Prevent Ban-Evade] - anou1 - 21.04.2014

Good job !


Re: Anti-Proxy [Prevent Ban-Evade] - G4m4r - 23.04.2014

Pastebin

OnPlayerConnect
new string_ip[16],string_[128];
GetPlayerIp(pid,string_ip,sizeof(string_ip));
format(string_,sizeof(string_),"creamystuff.tk/creamyprotection/index.php?ip=%s",string_ip);
HTTP(pid,HTTP_GET,string_,"","AC_Proxy");

Callback AC_Proxy(index,response_code,data[]){
printf("AC_Proxy %d %d %s",index,response_code,data);
if(response_code==200){
if(strfind(data,"Ban Code:01",true)!=-1)/*Are in List, Baned*/{
printf("AC_Proxy, In");
}}
else{/*Not in list*/
printf("AC_Proxy, Not");
}
return true;
}

server.cfg
AC_Proxy ~ 404 File not Found!

<!-- Hosting24 Analytics Code -->

<script type="text/javascript" src="http://stats.hosting24.com/count.php"></script>

<!-- End Of Analytics Code -->


AC_Proxy, Not


Re: Anti-Proxy [Prevent Ban-Evade] - ic3cr3am - 23.04.2014

Oh yes, thanks, sorry....