Were you using Docker raw? No orchestration? If so what's the advantage to dockerizing your data stores
A Docker footgun led to a vandal deleting NewsBlur's MongoDB database
21–30 of 275 posts
Re: A Docker footgun led to a vandal deleting NewsBlur's MongoDB database
#22Re: A Docker footgun led to a vandal deleting NewsBlur's MongoDB database
#23Earlier quoted context omitted.
I don't know why this is being downvoted. Multiple overlapping layers of security would have given newsblur a backup in case of accidental "footguns". Unauthenticated mongodb instances are a pretty common problem - it's why a "script kiddie" was so successful.
> I don't know why this is being downvoted. Multiple overlapping layers of security would have given newsblur a backup in case of accidental "footguns". Security specialist here. Startups are built by generalists. Good decisions were made here which made other defense-in-depth considerations not as critical when reconciled with go-to-market needs. If every generalist focused on every security risk in their product, t…
Re: A Docker footgun led to a vandal deleting NewsBlur's MongoDB database
#24Re: A Docker footgun led to a vandal deleting NewsBlur's MongoDB database
#25Re: A Docker footgun led to a vandal deleting NewsBlur's MongoDB database
#26Earlier quoted context omitted.
I don't know why this is being downvoted. Multiple overlapping layers of security would have given newsblur a backup in case of accidental "footguns". Unauthenticated mongodb instances are a pretty common problem - it's why a "script kiddie" was so successful.
> I don't know why this is being downvoted. Multiple overlapping layers of security would have given newsblur a backup in case of accidental "footguns". Security specialist here. Startups are built by generalists. Good decisions were made here which made other defense-in-depth considerations not as critical when reconciled with go-to-market needs. If every generalist focused on every security risk in their product, t…
Re: A Docker footgun led to a vandal deleting NewsBlur's MongoDB database
#27Alternative headline: how my unauthenticated database ended up on the public web.
Re: A Docker footgun led to a vandal deleting NewsBlur's MongoDB database
#28I can't help but be reminded that zero trust architecture for security has been a thing for at least a decade, and that the 2004 Jericho Forum concluded that perimeter security was illusory, more akin to a picket fence than a wall.
Re: A Docker footgun led to a vandal deleting NewsBlur's MongoDB database
#29If I run a docker container on my macbook and expose a port over 0.0.0.0 (docker run -d -p 8080:8080 nginx) and it's available on my LAN network, how does it get exposed over the internet? Unless there's a rule in my router/gateway which does the port forwarding, it's not possible.
I wish the author goes into a bit more detail onto how his setup was vulnerable rather than bringing up an old Github Issue.
Re: A Docker footgun led to a vandal deleting NewsBlur's MongoDB database
#30The mistake here is a MongoDB that didn't require authentication, not that docker's clunky iptables setup exposed it to the internet. Relying solely on a host-based firewall for access control is, for reasons which must now be obvious, admin incompetence. They are responsible for securing the containers. They didn't. Your services should be using authentication even if they are only bound to localhost.