Page 1 of 1

Tor Proxy

Posted: Fri Mar 04, 2016 9:37 am
by SaraC
Hi,
I have try it:

Code: Select all

blacklist efnetrbl {
        dns {
                name rbl.efnetrbl.org;
                type record;
                reply { 1; 5; };
        };
        action kline;
        ban-time 1h;
        reason "Proxy/drone detected. Check http://rbl.efnetrbl.org/?i=$ip for details.";
};
but all Tor proxy can join without problems :cry:
How I can stop them?
Thank you for help me

Re: Tor Proxy

Posted: Fri Mar 04, 2016 10:45 am
by Syzop
According to the documentation at efnetrbl.org TOR proxies use reply 4. Your block only catches reply 1 and 5, so simply add 4; to your reply section.

Re: Tor Proxy

Posted: Fri Mar 04, 2016 3:57 pm
by SaraC
Thanks Syzop :)

Code: Select all

reply { 1; 4; 5; };
Many tor pass the same, you think you release other lists to detect and block proxy and Tor?
Don't find a lot about this speech, only this your code to insert into your unrealircd and I thank you for that.

Re: Tor Proxy

Posted: Tue Jun 21, 2016 5:00 pm
by floffy
Does this 2 Are Valid for unrealircd 403


blacklist {
name = "rbl.efnetrbl.org";
type = "A record reply";
ban_unknown = no;
reply {
1 = "Open Proxy";
2 = "spamtrap666";
3 = "spamtrap50";
4 = "TOR";
5 = "Drones / Flooding";
};
kline = "KLINE 1440 *@%h :Blacklisted Proxy found. Visit http://rbl.efnetrbl.org/?i=%i for info.";
};
blacklist {
name = "tor.efnet.org";
type = "A record reply";
ban_unknown = no;
reply {
1 = "TOR";
};
kline = "KLINE 1440 *@%h :TOR exit node found. Visit http://rbl.efnet.org/?i=%i for info.";
};

Re: Tor Proxy

Posted: Thu Jun 23, 2016 1:40 pm
by Syzop
No, see the Blacklist block for the correct syntax. There's also an example for efnetrbl there.

Re: Tor Proxy

Posted: Tue Aug 30, 2016 3:49 pm
by Billy
Hello. I use proxy from http://advanced.name. How can i can use blacklist block with it?