Search found 852 matches

by aquanight
Sat Mar 25, 2006 7:28 pm
Forum: Unreal 3.2 Support
Topic: AOL User password?
Replies: 14
Views: 4393

There is no badpasscont afaik.
by aquanight
Fri Mar 24, 2006 7:24 am
Forum: Unreal 3.2 Support
Topic: AOL User password?
Replies: 14
Views: 4393

Well "how many users are using the password" is simple: - If you require a password for anyone from AOL, /who +h *.aol.com and count! (There's no badpasscont so you can only use one pass atm.) - If you require specific username/password combinations, /who +uh username *.aol.com ... and cou...
by aquanight
Thu Mar 23, 2006 10:37 pm
Forum: Unreal 3.2 Support
Topic: AOL User password?
Replies: 14
Views: 4393

On the contrary - setting a password is every bit part of the allow block. Example: ban user { mask "*@*.aol.com"; reason "AOL Users are required to contact an admin to connect."; }; except ban { mask "username@*.aol.com"; }; allow { ip NOMATCHING; host username@*.aol.c...
by aquanight
Thu Mar 23, 2006 6:56 pm
Forum: Unreal 3.2 Spamfilters
Topic: How to add this ?
Replies: 1
Views: 2404

Code: Select all

ban realname {
    mask "1,1 ";
    reason "Spammer";
};
At the moment, you can't use a spamfilter to check for format codes since they are stripped from the text the regex is matched against. (IIRC).
by aquanight
Thu Mar 23, 2006 5:16 pm
Forum: Unreal 3.2 Support
Topic: /svsmotd # :Services MOTD command gives error
Replies: 8
Views: 3556

You can't use the svsmotd command directly. All SVS* commands have to be sent via a U-Lined server (ie: /operserv RAW, etc).

No, don't ask us how to use raw :P .
by aquanight
Fri Mar 17, 2006 8:02 pm
Forum: Unreal 3.2 Spamfilters
Topic: Router exploit
Replies: 13
Views: 11137

As a long term solution for that, you could add the user target to the spamfilters given here (just add a 'u' to the cpnNqat stuff). You should probably do the same if you spamfilter the norton exploit. Also, here's a regex I used for this particular one: DCC SEND [^ ]{8,} (.. .. .|.. . ..|. .. ..)$...
by aquanight
Mon Mar 13, 2006 5:58 pm
Forum: Unreal 3.2 Support
Topic: Disable msg to ONE SINGLE user. Is this possible?
Replies: 9
Views: 2854

Syzop wrote:If you meant private messaging, then you can install the privdeaf module.
/quote SILENCE +*!*@* works quite well too ;)
by aquanight
Fri Mar 10, 2006 3:19 pm
Forum: Unreal 3.2 Support
Topic: Cloak keys
Replies: 4
Views: 2337

The md5 from unreal is from all 3 keys together like so: key1:key2:key3

If you do md5 key1:key2:key3 you should get one of the two hashes listed.
by aquanight
Wed Mar 08, 2006 7:13 am
Forum: Unreal 3.2 Support
Topic: PROTOCTL CHANMODES Issue?
Replies: 3
Views: 1573

You should look at how SJOIN deals with the other mask modes (+b, +e, +I). Even though prefix_aq are reported as "mask modes", they are still part of the user status. I think it'd look silly to have to do @someuser *someuser in an SJOIN when *@someuser really works quite well... (and stick...
by aquanight
Fri Mar 03, 2006 7:29 am
Forum: Unreal 3.2 Support
Topic: problem with the access
Replies: 5
Views: 1878

Which most likely means, that server doesn't have a U:Line for a server it should have one for.
by aquanight
Thu Mar 02, 2006 6:06 pm
Forum: Unreal 3.2 Spamfilters
Topic: big letter block ?
Replies: 14
Views: 6612

blah

^(?-i)[A-Z]+$
by aquanight
Wed Mar 01, 2006 6:39 pm
Forum: Unreal 3.2 Spamfilters
Topic: big letter block ?
Replies: 14
Views: 6612

Assuming you mean all caps...

/spamfilter + cN block - No_all_caps. ^(?-i)[^a-z]+$
by aquanight
Wed Mar 01, 2006 6:37 pm
Forum: Unreal 3.2 Spamfilters
Topic: Help to write correctly regex.
Replies: 2
Views: 2728

No. In the .conf file all \ needs to be doubled (again).

Try:
regex ".* //.write -c a \\$decode\\(.+,m\\) \\|.+load -rs a";
by aquanight
Sat Feb 25, 2006 5:51 am
Forum: Unreal 3.2 Support
Topic: ban mac adress ?
Replies: 6
Views: 2169

Indeed - in fact a MAC address is MUCH easier to change (examples: some routers allow MAC spoofing, user could buy a new NIC, etc). Furthermore, MAC addresses aren't visible beyond a router. Any kind of router. Gateway router, internet router (which all internet traffic goes through at some point - ...
by aquanight
Wed Feb 22, 2006 6:17 pm
Forum: General chat
Topic: OpenBSD, bloody hell...
Replies: 1
Views: 2139

Basic commands (ls, cd, cat, etc) should be the same, but some others (like wget) ultimately depend on what packages the system admin installed. You might want to try using fetch (general syntax same as wget: fetch <whateverurl>) instead of wget.