View Issue Details

IDProjectCategoryView StatusLast Update
0002001unrealircdpublic2004-08-04 04:32
Reporterwolfwood Assigned To 
PrioritynormalSeverityfeatureReproducibilityalways
Status closedResolutionopen 
Product Version3.2.1 
Summary0002001: Require a Password for clients that fail to respond to IDENT requests.
DescriptionI tried to accomplish this through the Allow blocks, but to no avail. Im not sure if this is a bug or not but I think it would be a great feature to impliment.
Steps To ReproduceI tried adding:

allow {
    ip ~*@*;
    hostname ~*@*;
    class noident;
    maxperip 5;
    password "w00t";
};
I tried this in both orders in the config, first and last, and it wouldnt work either way. I also added a match class block. But the test client(with IDENTD disabled) was always able to connect without the use of a password.
3rd party modules

Activities

vonitsanet

2004-08-01 18:20

reporter   ~0007286

I think this is a prefix added to your real ident if you are not responding to IDENT requests.
Unreal does not check this symbol as a part of your ident.
I think this is not a bug.

syzop

2004-08-01 18:22

administrator   ~0007287

Last edited: 2004-08-01 18:39

allow {
    ip "*@*";
    hostname "*@*";
    class clients;
    maxperip 2048;
};
allow {
    ip "unknown@*";
    hostname "unknown@*";
    class clients;
    maxperip 2048;
    password "blah";
};

would work. There might be other ways too.

*edit* yes I know that this would also match people of which their ident server replies 'unknown' as username.. My IQ is over 100 too.. amazing eh? I'm just saying this works and you can use it right now ;p */edit*

edited on: 2004-08-01 18:39

wolfwood

2004-08-01 21:12

reporter   ~0007289

Thanks for quick replies. As I stated above I wasnt sure if it was a bug or not thanks for clairifying. Great job Syzop, thats works fine, in my opinion 'unknown' shouldnt be used as a IDENT reply by anyone anyways.

Thanks Again,
Wolfwood

Issue History

Date Modified Username Field Change
2004-08-01 18:08 wolfwood New Issue
2004-08-01 18:20 vonitsanet Note Added: 0007286
2004-08-01 18:22 syzop Note Added: 0007287
2004-08-01 18:39 syzop Note Edited: 0007287
2004-08-01 21:12 wolfwood Note Added: 0007289
2004-08-04 04:32 syzop Status new => closed