Was dad notified of the security breach? If not he may want to consider switching hosting providers. Dad deserves a proper LLM-free post mortem.
Hahaha, I did tell him this afternoon. This is the bloke who has the same password for all his banking apps despite me buying him 1password though. The imminent threat from RCE's just didn't land.
I got hacked: My Hetzner server started mining Monero
61–70 of 422 posts
Re: I got hacked: My Hetzner server started mining Monero
#62Re: I got hacked: My Hetzner server started mining Monero
#63Re: I got hacked: My Hetzner server started mining Monero
#64As an aside, if you're using a Hetzner VPS for Umami you might be over-specced. I just cut my Hetzner bill by $4/mo by moving my Umami box to one of the free Oracle Cloud VPS after someone on here pointed out the option to me. Depends whether this is a hobby thing or something more serious, but that option is there.
Re: I got hacked: My Hetzner server started mining Monero
#65As an aside, if you're using a Hetzner VPS for Umami you might be over-specced. I just cut my Hetzner bill by $4/mo by moving my Umami box to one of the free Oracle Cloud VPS after someone on here pointed out the option to me. Depends whether this is a hobby thing or something more serious, but that option is there.
Re: I got hacked: My Hetzner server started mining Monero
#66> The Reddit post I’d seen earlier? That guy got completely owned because his container was running as root. The malware could: [...] Is that the case, though? My understanding was, that even if I run a docker container as root and the container is 100% compromised, there still would need to be a vulnerability in docker for it to “attack” the host, or am I missing something?
While this is true, the general security stance on this is: Docker is not a security boundary. You should not treat it like one. It will only give you _process level_ isolation. If you want something with better security guarantees, you can use a full VM (KVM/QEMU), something like gVisor[1] to limit the attack surface of a containerized process, or something like Firecracker[2] which is designed for multi-tenancy. Th…
Re: I got hacked: My Hetzner server started mining Monero
#67Re: I got hacked: My Hetzner server started mining Monero
#68Re: I got hacked: My Hetzner server started mining Monero
#69Is mining via CPU even worthwhile for the hackers? I thought ASICs dominated mining
Re: I got hacked: My Hetzner server started mining Monero
#70I know we aren't supposed to rely on containers as a security boundary, but it sure is great hearing stories like this where the hack doesn't escape the container. The more obstacles the better I guess.