From: Felix Fietkau Date: Sat, 28 Jun 2008 23:20:35 +0000 (+0000) Subject: fix running boa as root X-Git-Tag: 0.8.0~741 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=b2c50ce17eab93086aa4e1e1faae572082b6c8cc fix running boa as root --- diff --git a/libs/sgi-webuci/boa-patches/120-setuid_fix.patch b/libs/sgi-webuci/boa-patches/120-setuid_fix.patch new file mode 100644 index 000000000..1ea62b4c3 --- /dev/null +++ b/libs/sgi-webuci/boa-patches/120-setuid_fix.patch @@ -0,0 +1,13 @@ +Index: boa-0.94.13/src/boa.c +=================================================================== +--- boa-0.94.13.orig/src/boa.c 2002-07-23 17:50:29.000000000 +0200 ++++ boa-0.94.13/src/boa.c 2008-06-29 01:12:31.000000000 +0200 +@@ -222,7 +222,7 @@ + /* test for failed-but-return-was-successful setuid + * http://www.securityportal.com/list-archive/bugtraq/2000/Jun/0101.html + */ +- if (setuid(0) != -1) { ++ if ((server_uid != 0) && (setuid(0) != -1)) { + DIE("icky Linux kernel bug!"); + } + } else {