Outfits that haven't installed patches since February are getting popped in May by a vuln that was published in January.
Linux
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
Normal technology situations created by normal human behavior. 😜
Outfits? What does it mean in this context?
It's a privilege escalation.
The vulnerability, tracked as CVE-2024-1086 and carrying a severity rating of 7.8 out of a possible 10, allows people who have already gained a foothold inside an affected system to escalate their system privileges. It’s the result of a use-after-free error, a class of vulnerability that occurs in software written in the C and C++ languages when a process continues to access a memory location after it has been freed or deallocated. Use-after-free vulnerabilities can result in remote code or privilege escalation.
a use-after-free error, a class of vulnerability that occurs in software written in the C and C++ languages when a process continues to access a memory location after it has been freed or deallocated.
Immediately I noticed how when Teslas can't drive themselves we also blame the car and not the driver.
Weak. Blame the driver.
I re-wrote my Tesla firmware in Rust. It is faster and more secure. Self-driving is no problem when you use a safe language.
Honestly, why are we even selling cars to people who do not take these basic steps?
This is why least privilege is so important. If one account is compromised it will be harder to compromise others if the original account is isolated.
Yet another security issue that Rust would solve.
Oh, we heard, Rust is the greatest invention since sliced bread. We heard it already. Like 65534 times.
Like 65534 times.
So close to full 16-bit max. So close...
Yeah I figured he was going purposely for a memory overflow
Aviation, Health, Space and Car industry have only 3 certified languages that they use. Ada, C and C++. Ada is dying because there are way less young engineers who want to invest their future learning it. Then there is C and C++ but they dont offer memory safety and its really hard to master and its really hard and long (thats what she said) to certify the code when being audited for safety by a tier company.
Rust solves by default (no need to review) like 2/3 of the standard requirements those industries have and are that found in C and C++. Rust will soon be approved in this group by the car industry.
Im not a rust fan, but I have 3 things to say about rust.
- Its fun to program like C++ having the peace of mind knowing the compiler is there helping.
- You dont feel like youre defusing a bomb like when writing C.
- Even though its a fun language to write, its also really hard to master, itd say 2 years to be really proficient with it. There is just so much knowledge.
Aviation, Health, Space and Car industry have only 3 certified languages that they use. Ada, C and C++.
Rust is automotive certified since over half a year. https://ferrous-systems.com/blog/officially-qualified-ferrocene
- You dont feel like youre defusing a bomb like when writing C.
Whoa, Skippy. It's not saving the world, it's just coding properly.
Could you explain the "no need to review" part? I do keep hearing good things about Rust.
I wonder how many folks are just refusing to use Rust to spite the Rust Evangelism Strike Team.
Rustaceans 🤝 Vegans
I hate it when people talk about new technologies 🤬
Same. We should head back to ICQ!
eh, still beats Discord as far as I'm concerned
Yet another problem that actually updating your shit - which is trivially easy on enterprise Linux - would fix.
It's part of the 95% of problems solved by actually updating your enterprise Linux host.
Any software can have security issues, including ones written in rust. Just because C/C++ allows one to shoot oneself in the foot doesn't mean it's something that's commonly allowed by anyone with any skill, it's just a bug like anything else. I swear, people advocating rust believe that it's something intrinsic in C/C++ that allows such a thing regardless of what a developer does, and it's getting tiresome.
Of course a good developer can avoid these problems for the most part. The point is that we want the bad developers to be forced to do things a safe way by default.
But it is, do you not understand what rust brings compared to these two languages ?
There are still slight advantages to C that probably will make some devs stick to it in specific cases
The problem is bad programmers. You can write good C code but it takes more effort and security checking. You also can write vulnerable and sloppy Rust code.
I don’t think it’s realistic to expect a rewrite of code that works. Maybe over time we can start implementing pieces in safer languages.
Is there a way to jailbreak an Android phone using this exploit?
You could just unlock the bootloader
Assuming the bootloader is unlockable
You could just buy an android phone that encourages this. All Pixels, for example.
Is this even new?
I thought this already circulated a few months back.
Even Debian stable has already patched it.
Debian is actually one of the fastest patchers
RHEL on the other hand
Security patches do the opposite of break stuff
This is the best summary I could come up with:
It’s the result of a use-after-free error, a class of vulnerability that occurs in software written in the C and C++ languages when a process continues to access a memory location after it has been freed or deallocated.
At the time this Ars post went live, there were no known details about the active exploitation.
A deep-dive write-up of the vulnerability reveals that these exploits provide “a very powerful double-free primitive when the correct code paths are hit.” Double-free vulnerabilities are a subclass of use-after-free errors that occur when the free() function for freeing memory is called more than once for the same location.
The write-up lists multiple ways to exploit the vulnerability, along with code for doing so.
The double-free error is the result of a failure to achieve input sanitization in netfilter verdicts when nf_tables and unprivileged user namespaces are enabled.
Some of the most effective exploitation techniques allow for arbitrary code execution in the kernel and can be fashioned to drop a universal root shell.
The original article contains 351 words, the summary contains 168 words. Saved 52%. I'm a bot and I'm open source!