forum integration / IP monitoring

These are old archives. They are kept for historic purposes only.
Post Reply
marx
Posts: 4
Joined: Sun May 04, 2008 7:09 am

forum integration / IP monitoring

Post by marx »

Hi there,

I am hositng my first IRCD and having a great time of it.

Anyway, instnat bad news - someone who hates me (to the point of threatening to murder me) is impersonating my forum members.

I use a java applet to allow my board members to enter the ircd automatically using their board names to make life easier for them (most are computer illiterate) and so the vast majority don't konw what 'nickserv' or such is. However, this 'claimed' hacker is impersonating board members in efforts to be able to stay on the ircd. Every time i realise it's him, i kill him and keep his proxy'd ip in the kline list - hopefully, he'll start running short of proxies soon.

So, I ahve asked one of the heaviest users of the irc room to help with monitoring and checking whehter this user is really from the board or just an impersonator.

My current method to check is to check the IP address as each person joins. Then, I go to the board, find a recent post of theirs and see if the IP/host matches up. If they're completely different - I assume it's the hacker. If they match, I know they're legit.

However, the person I've asked to help is agreeable, but can't see behind the masked IP's - he doesn't have any special access.

Is there a way for me to allow him to see full IP addresses once he's identified to nickserv?

Cheers
Casper
Posts: 338
Joined: Sun Jul 08, 2007 7:44 am
Location: The Netherlands

Re: forum integration / IP monitoring

Post by Casper »

What you're looking for is BOPM, a proxyscanner which scans any new connection to the IRCd. Download it here and read it's documentation (Unreal needs some special settings) here
Ex Network-Administrator
marx
Posts: 4
Joined: Sun May 04, 2008 7:09 am

Re: forum integration / IP monitoring

Post by marx »

Although I am investigating the BOPM situation, could I not add him as an OPER (IRCOP) and limit his flags to be able to see IP address and kill users (and /sajoin/sapart)?
Jobe
Official supporter
Posts: 1180
Joined: Wed May 03, 2006 7:09 pm
Location: United Kingdom

Re: forum integration / IP monitoring

Post by Jobe »

marx wrote:Although I am investigating the BOPM situation, could I not add him as an OPER (IRCOP) and limit his flags to be able to see IP address and kill users (and /sajoin/sapart)?
Well for him to get /sajoin and /sapart, you need to give him at least services-admin which gives him a whole host of other privileges by default.
Your IP: Image
Your Country: Image
marx
Posts: 4
Joined: Sun May 04, 2008 7:09 am

Re: forum integration / IP monitoring

Post by marx »

Thanks for the prompt reply, can I just confirm I udnerstand correctly. To add my chosen member as an IRCOP able to read IP's and /sajoin/sapart, I would edit my opers.conf to read:

Code: Select all

oper  berty-basset {
        class           opers;
        from {
                userhost *@XX.XX.XX.XX;
        };
        password "XXXXXXXXX";
        flags
        {
                local;
                services-admin;
                helpop;
                get_host;
        };
        swhois "Administrator";
        snomask frebWqFv;
};
?
Jobe
Official supporter
Posts: 1180
Joined: Wed May 03, 2006 7:09 pm
Location: United Kingdom

Re: forum integration / IP monitoring

Post by Jobe »

Well because you added "services-admin" the local flag is effectively useless and ignored, also helpop is assumed with any of "local", "global", "co-admin", "admin", "services-admin" or "netadmin"
Your IP: Image
Your Country: Image
Post Reply