Page 1 of 1

[DONE] Porting m_portsifresi (password per port)

Posted: Thu Jan 05, 2017 7:07 pm
by Gottem
Using this module you can specify a different password for every port. This might be useful if you have like backup servers only certain people should be able to connect to. Or if you want a totally private network. I think it was originally written by Sky-Dancer. The code seems to indicate the maximum password is 32 chars, so keep that in mind.

Config block:
I've kept the original format mostly, with the exception of stripping the required trailing colon. ;]

Code: Select all

psifre {
	pass "6667:secret";
	pass "6697:supersecret";
};
So any client connecting to port 6667 will first have to send a PASS secret command. People who use 6697 have to do PASS supersecret. Simply don't specify anything if you want a regular-type/public port.

Grab the code from the git repo.

Re: [DONE] Porting m_portsifresi (password per port)

Posted: Sat Jan 14, 2017 6:12 am
by erkut79
working !
nice work
thanks !