frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Bought myself an Ampere Altra system

https://marcin.juszkiewicz.com.pl/2025/06/27/bought-myself-an-ampere-altra-system/
126•pabs3•4h ago•31 comments

Gridfinity: The modular, open-source grid storage system

https://gridfinity.xyz/
114•nateb2022•5h ago•44 comments

LetsEncrypt – Expiration Notification Service Has Ended

https://letsencrypt.org/2025/06/26/expiration-notification-service-has-ended/
64•zdw•4h ago•29 comments

Cross-Compiling Common Lisp for Windows

https://www.fosskers.ca/en/blog/cl-windows
14•todsacerdoti•2d ago•0 comments

I made my VM think it has a CPU fan

https://wbenny.github.io/2025/06/29/i-made-my-vm-think-it-has-a-cpu-fan.html
527•todsacerdoti•19h ago•131 comments

The Book of Shaders

https://thebookofshaders.com/
133•max_•3d ago•20 comments

Ask HN: What Are You Working On? (June 2025)

185•david927•12h ago•591 comments

NativeJIT: A C++ expression –> x64 JIT

https://github.com/BitFunnel/NativeJIT
41•nateb2022•6h ago•13 comments

Want to meet people, try charging them for it?

https://notes.eatonphil.com/2025-06-28-want-to-meet-people-charge-them.html
72•ArneVogel•2h ago•23 comments

Cell Towers Can Double as Cheap Radar Systems for Ports and Harbors (2014)

https://spectrum.ieee.org/cell-tower-signals-can-improve-port-security
89•transpute•11h ago•38 comments

Jane Austen's Boldest Novel Is Also Her Least Understood

https://www.nytimes.com/2025/06/27/books/review/jane-austen-mansfield-park.html
30•lermontov•2d ago•6 comments

Amber insect fossils reveal "zombie" fungi likely lived alongside dinosaurs

https://www.cnn.com/2025/06/24/science/amber-insect-zombie-fungi-fossil
39•jackgavigan•3d ago•13 comments

New Proof Dramatically Compresses Space Needed for Computation

https://www.scientificamerican.com/article/new-proof-dramatically-compresses-space-needed-for-computation/
9•baruchel•2d ago•2 comments

Revisiting Knuth's "Premature Optimization" Paper

https://probablydance.com/2025/06/19/revisiting-knuths-premature-optimization-paper/
124•signa11•3d ago•60 comments

The $25k car is going extinct?

https://media.hubspot.com/why-the-25000-car-is-going-extinct
163•pseudolus•17h ago•348 comments

Thousands in Norway told they had won life-changing sums in lottery error

https://www.theguardian.com/world/2025/jun/29/thousands-in-norway-told-they-had-won-life-changing-sums-in-lottery-error
4•zqna•19m ago•0 comments

Ultrasound toothbrush promises painless checks for hidden gum problems

https://phys.org/news/2025-06-ultrasound-toothbrush-painless-hidden-gum.html
23•PaulHoule•3d ago•5 comments

Use keyword-only arguments in Python dataclasses

https://chipx86.blog/2025/06/29/tip-use-keyword-only-arguments-in-python-dataclasses/
48•Bogdanp•8h ago•17 comments

LLM's Illusion of Alignment

https://www.systemicmisalignment.com/
38•GodotX•6h ago•21 comments

Touching the back wall of the Apple store

https://blog.lauramichet.com/touching-the-back-wall-of-the-apple-store/
160•nivethan•3d ago•124 comments

4-10x faster in-process pub/sub for Go

https://github.com/kelindar/event
141•kelindar•17h ago•29 comments

To the Postbox

https://literaryreview.co.uk/to-the-postbox
5•Caiero•2d ago•0 comments

Building untrusted container images safely at scale

https://depot.dev/blog/container-security-at-scale-building-untrusted-images-safely
16•Telstrom90•3d ago•6 comments

Anticheat Update Tracking

https://not-matthias.github.io/posts/anticheat-update-tracking/
52•not-matthias•12h ago•14 comments

The Medley Interlisp Project: Reviving a Historical Software System [pdf]

https://interlisp.org/documentation/young-ccece2025.pdf
98•pamoroso•18h ago•10 comments

Finding a former Australian prime minister’s passport number on Instagram (2020)

https://mango.pdf.zone/finding-former-australian-prime-minister-tony-abbotts-passport-number-on-instagram/
122•guiambros•10h ago•48 comments

Many ransomware strains will abort if they detect a Russian keyboard installed (2021)

https://krebsonsecurity.com/2021/05/try-this-one-weird-trick-russian-hackers-hate/
280•air7•14h ago•152 comments

We accidentally solved robotics by watching 1M hours of YouTube

https://ksagar.bearblog.dev/vjepa/
148•alexcos•16h ago•116 comments

Nearly 20% of cancer drugs defective in 4 African nations

https://www.dw.com/en/nearly-20-of-cancer-drugs-defective-in-4-african-nations/a-73062221
112•woldemariam•9h ago•57 comments

ICE test train reaches speeds of up to 405.0 km/h

https://www.deutschebahn.com/de/presse/pressestart_zentrales_uebersicht/ICE-Testzug-faehrt-bis-zu-405-0-km-h-und-sammelt-wichtige-Erkenntnisse-fuer-den-Hochgeschwindigkeitsverkehr-13428394
93•doener•10h ago•97 comments
Open in hackernews

Building untrusted container images safely at scale

https://depot.dev/blog/container-security-at-scale-building-untrusted-images-safely
16•Telstrom90•3d ago

Comments

adastra22•3d ago
I'm confused--what's the security risk in building a container?
Telstrom90•3d ago
You're running untrusted code. Every RUN command in a user's Dockerfile is executed during build, which means you're executing arbitrary commands from strangers on your own infrastructure. If you're not isolating that properly, it's a security risk.
adastra22•3d ago
Inside the container though. The whole point of which is that it sandboxes and isolates the running code.
amluto•4h ago
Maybe the default form of RUN is kinda sorta safe [0].

How about ADD? Or COPY? Or RUN —-mount=type=bind,rw…?

Over the last ten years or so we’ve progressed from subtle-ish security holes due to memory unsafety and such to shiny tools in shiny safe languages that have absolutely gaping security and isolation holes by design. Go us.

[0] There is some serious wishful thinking involved there.

RainyDayTmrw•4h ago
This blog post[1] explains why that is not a safe assumption.

[1]: https://www.aquasec.com/blog/container-isolation/

bilbo-b-baggins•14m ago
Fundamentally building a container involves running a container - each layer is executed in turn as a temporary container.

The same risks that running an unknown container has - are had by building one.

For reference there have been quite a few CVEs related to container escape: https://www.paloaltonetworks.com/blog/cloud-security/leaky-v...