[svn-commits] russell: trunk r61788 - in /trunk: ./ main/manager.c

svn-commits at lists.digium.com svn-commits at lists.digium.com
Tue Apr 24 14:37:00 MST 2007


Author: russell
Date: Tue Apr 24 16:37:00 2007
New Revision: 61788

URL: http://svn.digium.com/view/asterisk?view=rev&rev=61788
Log:
Merged revisions 61787 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

................
r61787 | russell | 2007-04-24 16:34:53 -0500 (Tue, 24 Apr 2007) | 12 lines

Merged revisions 61786 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.2

........
r61786 | russell | 2007-04-24 16:33:59 -0500 (Tue, 24 Apr 2007) | 4 lines

Don't crash if a manager connection provides a username that exists in
manager.conf but does not have a password, and also requests MD5 
authentication. (ASA-2007-012)

........

................

Modified:
    trunk/   (props changed)
    trunk/main/manager.c

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.

Modified: trunk/main/manager.c
URL: http://svn.digium.com/view/asterisk/trunk/main/manager.c?view=diff&rev=61788&r1=61787&r2=61788
==============================================================================
--- trunk/main/manager.c (original)
+++ trunk/main/manager.c Tue Apr 24 16:37:00 2007
@@ -984,7 +984,8 @@
 	}
 	if (!strcasecmp(astman_get_header(m, "AuthType"), "MD5")) {
 		const char *key = astman_get_header(m, "Key");
-		if (!ast_strlen_zero(key) && !ast_strlen_zero(s->challenge)) {
+		if (!ast_strlen_zero(key) && !ast_strlen_zero(s->challenge) &&
+		    !ast_strlen_zero(password)) {
 			int x;
 			int len = 0;
 			char md5key[256] = "";



More information about the svn-commits mailing list