First published: Mon Jul 30 2012(Updated: )
The sudo packages in Red Hat Enterprise Linux 5 contained a %postun script (executed during the package removal or upgrade) that created a temporary file insecurely. The script did the following: # Remove the "sudoers:" line from nsswitch.conf if it's not modified if grep -q "^sudoers: files ldap$" ""/etc/nsswitch.conf""; then rm -f ""/var/tmp/nsswitch.conf.bak"" && \ touch ""/var/tmp/nsswitch.conf.bak"" && \ grep -v "^sudoers: files ldap$" ""/etc/nsswitch.conf"" > ""/var/tmp/nsswitch.conf.bak"" && \ mv -f ""/var/tmp/nsswitch.conf.bak"" ""/etc/nsswitch.conf"" fi There was a race condition between the removal of the temporary file and its re-creation using touch. A local attacker could possibly use this to create nsswitch.conf.bak file or symlink after rm -f "/var/tmp/nsswitch.conf.bak" was run and cause the script to overwrite arbitrary file with the contents of the /etc/nsswitch.conf file, or make the script create /etc/nsswitch.conf file with attacker controlled content and permissions. The attack would have to be executed during the sudo package upgrade or removal. This problem was introduced in the sudo erratum RHSA-2012:0309 which was released in Red Hat Enterprise Linux 5.8: <a href="https://rhn.redhat.com/errata/RHSA-2012-0309.html">https://rhn.redhat.com/errata/RHSA-2012-0309.html</a> The sudo packages in other Red Hat Enterprise Linux versions did not include this %postun script and were not affected this issue.
Affected Software | Affected Version | How to fix |
---|---|---|
Red Hat Enterprise Linux | >=5.8 | |
Red Hat Sudo |
Sign up to SecAlerts for real-time vulnerability data matched to your software, aggregated from hundreds of sources.
REDHAT-BUG-844442 is considered a medium severity vulnerability due to its potential to allow unauthorized file access.
To fix REDHAT-BUG-844442, update the sudo package to the latest version available for Red Hat Enterprise Linux 5.
REDHAT-BUG-844442 affects the sudo package in Red Hat Enterprise Linux 5, specifically versions prior to the recommended updates.
The %postun script in REDHAT-BUG-844442 executes during package removal or upgrade and creates a temporary file insecurely.
REDHAT-BUG-844442 can affect any system running the specified versions of sudo in Red Hat Enterprise Linux 5 that utilize the vulnerable script.