I have installed portauditing which says:
basically it says a local user can become root by causing a buffer overflow.
I went to the URL, which points to a patch and I downloaded it: file name: kdebase-workspace-4.3.5-CVE-2010-0436.diff. however there is no instructions how to install this file...
it seems to be a c program...the first few lines of it says:
how do I install this patch? Thanks.
Code:
Affected package: kdebase-workspace-4.3.5_1
Type of problem: KDM -- local privilege escalation vulnerability.
Reference: <http://portaudit.FreeBSD.org/3987c5d1-47a9-11df-a0d5-0016d32f24fb.html>
basically it says a local user can become root by causing a buffer overflow.
I went to the URL, which points to a patch and I downloaded it: file name: kdebase-workspace-4.3.5-CVE-2010-0436.diff. however there is no instructions how to install this file...
it seems to be a c program...the first few lines of it says:
Code:
--- kdm/ConfigureChecks.cmake
+++ kdm/ConfigureChecks.cmake
@@ -37,6 +37,35 @@ int main()
}
" HAVE_SETLOGIN)
+check_c_source_runs("
+#include <sys/socket.h>
+#include <sys/un.h>
+#include <sys/stat.h>
+#include <sys/types.h>
+#include <string.h>
+#include <unistd.h>
+#include <errno.h>
+int main()
how do I install this patch? Thanks.