Hacker News new | past | comments | ask | show | jobs | submit login
Local Privilege Escalation in OpenBSD's Dynamic Loader (openwall.com)
141 points by lelf on Dec 12, 2019 | hide | past | favorite | 15 comments



Ouch. Been a rough week for OpenBSD.

And their errata description linked from the CVE seems... sorta obfuscatory: "ld.so may fail to remove the LD_LIBRARY_PATH environment variable for set-user-ID and set-group-ID executables in low memory conditions."

This is true, but really fails to capture the fact that this is a trivially exploitable local root. "Low memory conditions" refers not to global system state but to the availability of memory to the process, which is under the control of the attacker via setrlimit().

Not good, folks.


I think it's actually been a good week for OpenBSD. Last week, all of those issues were unpatched.


Hopefully next week will be better.


The CVE is text is accurate, the commit is an abbreviation. I wish they would've included the CVE in the commit message though.

OpenBSD through 6.6 allows local users to escalate to root because a check for LD_LIBRARY_PATH in setuid programs can be defeated by setting a very small RLIMIT_DATA resource limit. When executing chpass or passwd (which are setuid root), _dl_setup_env in ld.so tries to strip LD_LIBRARY_PATH from the environment, but fails when it cannot allocate memory. Thus, the attacker is able to execute their own library code as root.

Also, certain system calls like set(e)[gu]id should be pledged() opt-out rather than opt-in. It's probably a breaking change in a lot of software, but only some calls should ever be called in limited scopes where they're used and then prevented from being called ordinarily. You don't all the always doors unlocked, especially the ones that lead outside from the 11th floor without a fire escape, if you're only using a few of them.


Since passwd requires setuid, it would obviously choose to be able to call setuid.


The problem with set-user-ID executables is that they (and the dynamic loader they use) effectively operate in a "blacklist" basis: there's a list of "evil" things they have to protect against (in this case, environment variables controlling the dynamic loader), and if they fail to protect against one of them (in this case, the dynamic loader didn't think of protecting against low RLIMIT_DATA, though a component called later by chpass did) it's game over.

Contrast with something like a service called over dbus: the caller has little to no control over the service's environment, and the most the caller can do is try to confuse it with nonsense dbus calls. It's a "whitelist" basis: only calls the service understands (or think it understands) can do anything, everything else is rejected by default.


This. setuid/SUID root was - and still is - a terrible idea. It is a (deliberate) hole in the security barrier. It was an idea spawned out of necessity because of the limited expressiveness of the standard Unix security model.

Once you let a process run with root or other elevated capabilities, that process should be isolated so nothing about the process can be controlled by the unprivileged user. SUID root utilities violates that.


It was a reasonable enough mechanism for the 70s. It certainly isn't now.

Now you want to do all legitimate local privilege escalations via IPC.


>We thank Theo de Raadt and the OpenBSD developers for their incredibly quick response: they published a patch for this vulnerability in less than 3 hours.

Wow!



My preference would be to check if issetugid() then remove all env vars from environ[] that start with "LD". Don't even getenv() them.


This is quite a clever approach, and to be honest I feel its quite trivial.. Surprising though they have had a bad week!


For most projects I agree, but with OpenBSD every issue that is discovered seems to result in much more than just a simple fix. I bet the OpenBSD developers are going through their code with a very fine comb these days and look long and hard at execs and memory error handling.






Consider applying for YC's Spring batch! Applications are open till Feb 11.

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: