Earlier quoted context omitted.
OpenBSD is the Linux of a decade or two ago, not attracting attention and not being compatible or useful for quite a lot of stuff.
Not counting GPU compute, what exactly is OpenBSD not useful for?
GhostLock, a stack-UAF that has existed in all Linux distributions for 15 years
161–170 of 209 posts
Re: GhostLock, a stack-UAF that has existed in all Linux distributions for 15 years
#162Earlier quoted context omitted.
Once upon a time(tm), Google had a great solution for that: You could get a credit card in nano SIM format, and insert into in your dual-SIM phone. That then allows you to do secure NFC credit card payments even on a rooted phone with custom ROM.
That doesn't work when someone has multiple or virtual cards. That also means if someone steals my phone they get my credit card too. Not a great solution.
Re: GhostLock, a stack-UAF that has existed in all Linux distributions for 15 years
#163> This is the same shape as many other life-cycle bugs [...] Claude-ism detected. IME with Claude Code an object does not have a type or definition, apparently, but rather a shape (or at least it reaches for that word before more technically-accurate ones). Problems are not of a similar class or type, but of the same shape. Functions are not defined by their signatures but by their shape. Who talks like this and how…
Re: GhostLock, a stack-UAF that has existed in all Linux distributions for 15 years
#164Earlier quoted context omitted.
Non native speakers have been on HN since its inception. Unless you mean something else?
Sorry, I was posting hastily and can see how that was unclear. Unfortunately I've forgotten my point. Perhaps it was this: there are many non-native English speakers who have valuable things to contribute to HN, who don't yet have sufficient English or don't feel they do, and therefore resort to LLMs to do their English for them. Should they automatically be excluded?
If you mean the linked content: can come from anyone and anywhere--it's just whatever someone submits and is deemed good enough by The Algorithm to get attention. So that's not "HN content" - the content exists independently of HN. As for that, I'll repeat myself: the scientific community has managed somehow to intercommunicate for centuries despite language barriers before LLMs existed. (English was neither Einstein's nor Madame Curie's first language.) It's an existence proof that LLMs aren't needed to overcome those barriers.
Re: GhostLock, a stack-UAF that has existed in all Linux distributions for 15 years
#165Earlier quoted context omitted.
That's right. Docker still runs without user namespaces by default, which means that root is the same user inside and outside of the container. This does open up attack surface and configuration footguns. Confinement still leverages dropping some root caps, seccomp, various other namespaces, etc.
I don't think this is true, otherwise you could just load a kernel module into the host kernel from a container.
Re: GhostLock, a stack-UAF that has existed in all Linux distributions for 15 years
#166Earlier quoted context omitted.
That's a huge amount of money for a vulnerability.
Also one order of magnitude less than you could get on the black market for a universal Linux LPE and two orders less if you can make it work reliably.
Re: GhostLock, a stack-UAF that has existed in all Linux distributions for 15 years
#167Earlier quoted context omitted.
I don't think this is true, otherwise you could just load a kernel module into the host kernel from a container.
It is very possible to load a kernel module into the host from a container. https://stackoverflow.com/questions/33013539/docker-loading-...
Re: GhostLock, a stack-UAF that has existed in all Linux distributions for 15 years
#168Earlier quoted context omitted.
Would be amazing if this was used to root so-far unrootable android devices. Any suggestions.
Wonder if it were possible to use this to (finally) jailbreak DJIs original RC that came with the Mini 3 Pro. It doesn't have a web browser or, virtually, anything of use... but I think it supports enough of a web browser to log in into wifi captive portals.
This would almost surely work there too, though.
Re: GhostLock, a stack-UAF that has existed in all Linux distributions for 15 years
#169Earlier quoted context omitted.
Wonder if it were possible to use this to (finally) jailbreak DJIs original RC that came with the Mini 3 Pro. It doesn't have a web browser or, virtually, anything of use... but I think it supports enough of a web browser to log in into wifi captive portals.
What can you do with a jailbroken drone rc?
Re: GhostLock, a stack-UAF that has existed in all Linux distributions for 15 years
#170Earlier quoted context omitted.
If you are given a shell with `docker run -it --rm alpine:3 sh`, can you read the /etc/shadow on the host without kernel exploit? Assuming the docker and kernel are sufficiently update-to-date (e.g. latest Docker on Debian Stable).
No. The "root" you get in docker is not actually root outside of the namespace the container in running in. Assuming no bugs in the kernel, it should not be able to do anything more than the UID that it's mapped from.
While there is a feature to do with UID mapping, it doesn't actually work/isn't usable/nobody uses it in current docker iirc.
Therefore root in the container very much is root on the host.