XDCC Catcher

These are old archives. They are kept for historic purposes only.
Post Reply
Platinum
Posts: 21
Joined: Tue Mar 09, 2004 9:50 pm
Location: Netherlands
Contact:

XDCC Catcher

Post by Platinum »

hoi there

i have some users on my network that are using XDCC Catchers.

i get this one the quit msg:

Code: Select all

* Quits: crackzrezwa (Quit: Make XDCC easier with XDCC Catcher: connect to 100s of servers and get 1000s of packs in a list. Check it out at http://www.xdcccatcher.com)

wel i made this spamfilter that glines the users with the script for 5 hrs.... what i need to change?

Code: Select all

spamfilter {
	regex "Make XDCC easier with XDCC Catcher: connect to 100s of servers and get 1000s of packs in a list. Check it out at http://www.xdcccatcher.com";
	target { quit;
	reason "Using XDCC Catcher";
	action gline 5h;
};
Greetz
Platinum
Dukat
Posts: 1083
Joined: Tue Mar 16, 2004 5:44 pm
Location: Switzerland

Post by Dukat »

Use the right tool for the right job... Why don't you just use the badwords filter system? Would probably be easier for you - and if you only gline them 5h, it wouldn't make much difference.

Anyway:
You have to close every curly brace you open.
And you have to escape special characters in the regular expression (like .).
Read a tutorial about regular expressions - there are tons on the internet.
Stealth
Head of Support
Posts: 2085
Joined: Tue Jun 15, 2004 8:50 pm
Location: Chino Hills, CA, US
Contact:

Post by Stealth »

Code: Select all

spamfilter { 
  regex "Check it out at http://www\.xdcccatcher\.com"; 
  target quit; 
  reason "XDCC Catchers are not allowed on this network.";
  action gline;
  ban-time 5h;
};
Read the docs next time. There were at least 3 mistakes in it.
Platinum
Posts: 21
Joined: Tue Mar 09, 2004 9:50 pm
Location: Netherlands
Contact:

Post by Platinum »

thx man but .. can you give me right tool to do right job :P
Stealth
Head of Support
Posts: 2085
Joined: Tue Jun 15, 2004 8:50 pm
Location: Chino Hills, CA, US
Contact:

Post by Stealth »

That is the right tool. I think Dukat read it wrong. :)
Platinum
Posts: 21
Joined: Tue Mar 09, 2004 9:50 pm
Location: Netherlands
Contact:

Post by Platinum »

Stealth wrote:That is the right tool. I think Dukat read it wrong. :)
hehe. btw thx for the filter works great :)
droolin
Posts: 42
Joined: Sat Dec 04, 2004 7:27 pm
Location: USA - Ohio
Contact:

;o), yea. I got to say thanks too

Post by droolin »

I've been meaning to add a spamfilter for that quit message, but unfortionally I havent seen the quit in awhile.
Appriceate the reminder and filter.

droolin
Hornyness is a perpetual thang. The hornier you are, the hornier your going to be.
Platinum
Posts: 21
Joined: Tue Mar 09, 2004 9:50 pm
Location: Netherlands
Contact:

Post by Platinum »

well guys i found this is there way to make filter like this?! :shock:

read here > http://xdcccatcher.com/important.html

uhmm i made this

Code: Select all

ban version {
              mask    "XDCC Catcher Basic";
              reason  "No Fucking XDCC Catchers Allowed On This Network! Remove The XDCC Catcher Client And Come Back!";
              action   gzline;
              ban-time 48h;
i added in unrealircd.conf file .. woking fine here
some suggstions?!

Platinum
Last edited by Platinum on Sun Jan 09, 2005 11:55 am, edited 1 time in total.
McTerry
Posts: 64
Joined: Tue Oct 19, 2004 12:42 am
Location: *.se
Contact:

Post by McTerry »

Platinum wrote:Allowd
Should be Allowed.

Just a notice to all who will copy this code.
I don't mean to offend you with your spelling Platinum.
Everyone makes mistakes.
BOOM!
Platinum
Posts: 21
Joined: Tue Mar 09, 2004 9:50 pm
Location: Netherlands
Contact:

Post by Platinum »

McTerry wrote: Just a notice to all who will copy this code.
I don't mean to offend you with your spelling Platinum.
Everyone makes mistakes.
No problem m8 thx for notice it :)
Post Reply