Skip to content
Snippets Groups Projects
Commit 4a49c9ef authored by rswindell's avatar rswindell
Browse files

Don't allow the CRAM-MD5 challenge length to be overridden (always use

the binkp.js default, 32-hexchars/16-bytes). Even IRex v2.31 requires a
16-byte challenge, so experiment is over.
Log more details when a CRAM-MD5 authentication response doesn't match
(e.g. to make case-mismatch or other cause of authentication failures
potentially more obvious - still debugging the Mystic inbound CRAM-MD5
auth failure and this might help).
parent 1c91506a
No related branches found
No related tags found
No related merge requests found
......@@ -842,13 +842,15 @@ function inbound_auth_cb(pwd, bp)
if (cpw === undefined)
cpw = '-';
if (pwd[0].substr(0, 9) === 'CRAM-MD5-') {
if (bp.getCRAM('MD5', cpw) === pwd[0]) {
var expected = bp.getCRAM('MD5', cpw);
if (expected === pwd[0]) {
log(LOG_INFO, "CRAM-MD5 password match for " + addr);
addrs.push(addr);
check_nocrypt(bp.cb_data.binkitcfg.node[addr]);
ret = cpw;
} else {
log(LOG_WARNING, "CRAM-MD5 password mismatch for " + addr);
log(LOG_WARNING, "CRAM-MD5 password mismatch for " + addr
+ format(" (expected: %s, received: %s)", expected, pwd[0]));
invalid = true;
}
}
......@@ -921,8 +923,6 @@ function run_inbound(sock)
bp.want_callback = callout_want_callback;
if (bp.cb_data.binkitcfg.caps !== undefined)
bp.capabilities = bp.cb_data.binkitcfg.caps;
if (bp.cb_data.binkitcfg.cram_challenge_length !== undefined)
bp.cram_challenge_length = bp.cb_data.binkitcfg.cram_challenge_length;
// We can't use the defaults since the defaults are only 4D addresses.
bp.addr_list = [];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment