mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-11-04 06:54:27 -05:00 
			
		
		
		
	fix busybox http auth if the root user has an empty password
SVN-Revision: 12869
This commit is contained in:
		
							parent
							
								
									7e0e4fb486
								
							
						
					
					
						commit
						51a69f3f97
					
				@ -3,7 +3,7 @@
 | 
			
		||||
 | 
			
		||||
--- a/networking/httpd.c
 | 
			
		||||
+++ b/networking/httpd.c
 | 
			
		||||
@@ -1697,21 +1697,32 @@
 | 
			
		||||
@@ -1697,21 +1697,32 @@ static int check_user_passwd(const char 
 | 
			
		||||
 
 | 
			
		||||
 		if (ENABLE_FEATURE_HTTPD_AUTH_MD5) {
 | 
			
		||||
 			char *md5_passwd;
 | 
			
		||||
@ -17,7 +17,7 @@
 | 
			
		||||
+
 | 
			
		||||
+				pwd = getpwnam(&md5_passwd[4]);
 | 
			
		||||
+				if(!pwd->pw_passwd || !pwd->pw_passwd[0] || pwd->pw_passwd[0] == '!')
 | 
			
		||||
+					continue;
 | 
			
		||||
+					return 1;
 | 
			
		||||
+
 | 
			
		||||
+				md5_passwd = pwd->pw_passwd;
 | 
			
		||||
+				goto check_md5_pw;
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user