Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 82269 Details for
Bug 125803
x11-base/xorg-x11: Local root (CVE-2006-0745)
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
xorg-server-1.0.1-CVE-2006-0745.patch
xorg-server-1.0.1-CVE-2006-0745.patch (text/plain), 715 bytes, created by
Donnie Berkholz (RETIRED)
on 2006-03-16 00:26:21 UTC
(
hide
)
Description:
xorg-server-1.0.1-CVE-2006-0745.patch
Filename:
MIME Type:
Creator:
Donnie Berkholz (RETIRED)
Created:
2006-03-16 00:26:21 UTC
Size:
715 bytes
patch
obsolete
>Fix a local denial of service and arbitrary code execution as root. > >--- xc.orig/programs/Xserver/hw/xfree86/common/xf86Init.c 2006-03-14 22:45:46.000000000 -0800 >+++ xc/programs/Xserver/hw/xfree86/common/xf86Init.c 2006-03-14 22:46:06.000000000 -0800 >@@ -1376,7 +1376,7 @@ > } > > /* First the options that are only allowed for root */ >- if (getuid() == 0 || geteuid != 0) >+ if (getuid() == 0 || geteuid() != 0) > { > if (!strcmp(argv[i], "-modulepath")) > { >@@ -1679,7 +1679,7 @@ > } > if (!strcmp(argv[i], "-configure")) > { >- if (getuid() != 0 && geteuid == 0) { >+ if (getuid() != 0 && geteuid() == 0) { > ErrorF("The '-configure' option can only be used by root.\n"); > exit(1); > }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 125803
:
81903
| 82269 |
82270