Forgot that part (#926)
[openwrt.git] / package / busybox / patches / 310-passwd_access.patch
index 03cfe8b..868abfc 100644 (file)
@@ -1,7 +1,10 @@
+
+       Copyright (C) 2006 OpenWrt.org
+
 diff -urN busybox.old/networking/httpd.c busybox.dev/networking/httpd.c
 --- busybox.old/networking/httpd.c     2004-10-08 10:03:29.000000000 +0200
 +++ busybox.dev/networking/httpd.c     2006-02-04 01:54:19.688016250 +0100
-@@ -1467,12 +1467,22 @@
+@@ -1467,12 +1467,26 @@
                {
                        char *cipher;
                        char *pp;
@@ -16,6 +19,10 @@ diff -urN busybox.old/networking/httpd.c busybox.dev/networking/httpd.c
 +                      if(pp && pp[1] == '$' && pp[2] == 'p' &&
 +                                               pp[3] == '$' && pp[4] &&
 +                                               (pwd = getpwnam(&pp[4])) != NULL) {
++                              if(pwd->pw_passwd && pwd->pw_passwd[0] == '!') {
++                                      prev = NULL;
++                                      continue;
++                              }
 +                              ppnew = malloc(5 + strlen(pwd->pw_passwd));
 +                              ppnew[0] = ':';
 +                              strcpy(ppnew + 1, pwd->pw_passwd);
This page took 0.02447 seconds and 4 git commands to generate.