Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Dutch governments builds alternative for Microsoft based on NixOS (dawo.community)
    85comments
  2. Tech Needs Humanists More (passo.uno)
    35comments
  3. Pentium II at 600Mhz with Voodoo 3 Emulated on 86Box with M6 Mac Mini (nyaa.sh)
    22comments
  4. F-Droid 2.0 (f-droid.org)
    362comments
  5. CVE-2025-13032: Entering and Breaking the Avast Antivirus Sandbox Part 2 (safateam.com)
    12comments
  6. Ink and Switch Interactive Homepage (inkandswitch.com)
    1comments
  7. Special Projects (2016) (openai.com)
    5comments
  8. Show HN: Make cursed fonts like Times New Bastard (mitpit.com)
    94comments
  9. Show HN: Whiteboard (YC W26) – An open-source IDE for thoughtful software design (github.com/devdotfast)
    118comments
  10. Why is the liver so weirdly regenerative? (dynomight.substack.com)
    212comments
  11. 2DWillNeverDie (2dwillneverdie.com)
    54comments
  12. Running local LLMs on your Mac: what fits, what's free, and what's overkill (typetab.app)
    —discuss
  13. Fearless SIMD v1.0 (linebender.org)
    37comments
  14. Rails World 2026 Opening Keynote [video] (youtube.com)
    373comments
  15. Toyota is taking the Corolla electric (electrek.co)
    606comments
  16. My weird new hobby: Wandering around Tokyo on Google Maps (ahmedhossamdev.com)
    154comments
  17. What About Rails? (jardo.dev)
    24comments
  18. Using LLMs to trace alchemical knowledge and decode 17th century letters (resobscura.substack.com)
    28comments
  19. Google’s Project Suncatcher to put ML infrastructure in space (blog.google)
    382comments
  20. Opus 5.5 is good at explainer videos (launchvideo.io)
    140comments
  21. Two-tier encryption in the UK (macanorak.com)
    407comments
  22. Writing Parquet files using Haskell (datahaskell.org)
    18comments
  23. Book review: Is parallel programming hard, and, if so, what can you do about it? (ahelwer.ca)
    56comments
  24. The Board Game of the Alpha Nerds (2014) (grantland.com)
    47comments
  25. Sourcehut account takeover via build logs (XSS in ansi2html) (blog.arusekk.pl)
    23comments
  26. The Bayeux Tapestry: Woven by the Victors (historytoday.com)
    12comments
  27. Nokia Design Archive (2025) (aalto.fi)
    128comments
  28. California is chasing wealth that has feet (landeconomics.org)
    664comments
  29. Oracle on the hook to pay data centre investors even if site has no electricity (ft.com)
    3comments
  30. WaveDigger: Dig into wireless signals to discover their physical locations (github.com/christianrowlands)
    22comments

CVE-2025-13032: Entering and Breaking the Avast Antivirus Sandbox Part 2

51 pointsby 3h agosafateam.com
12 comments
2h agoHN ↗

Chalk another one up for "Antiviruses causing more problems than solving them".

They 'worked' when they initially just scanned files for known malicious signatures. Now they're the equivalent of a sledgehammer to a wall with all of the extra bells & whistles strapped to them.

Application whitelisting is the remaining way forward if you actually care about runtime security. That & locking every access point down to the bare minimum.

2h agoHN ↗

I would say white listing will have to happen for everything in the near future: applications, ports, URLs (including fragments!), filesystem hierarchies, basically everything.

I'm not sure it's doable with current OS architectures, though.

2h agoHN ↗

Isn't the model of AppArmor or SELinux a good approach to tackle this problem?

1h agoHN ↗

No, it is unfit for this purpose. The reason is:

- you need to specify the rules before starting an application. How one is supposed to guess what application will do? Figuring out the correct rules may take lot of time and is impossible for non-programmers. Imagine I want to install 10 apps per day and they should work perfectly, how much time will I be spending writing rules?

- the rules cannot be changed in runtime, for example, giving access to a camera for 1 minute

- the rules are too limited. You can restrict access to a file, but can you restrict access to a DBUS bus? Can you restrict access to audio, video, GPU etc? To /proc filesystem? To a DNS domain? The rules feel like they were written for computers with teletypes from 70s and not for modern machines.

- they do not allow providing fake data, for example, a fake list of WiFi points so that the app thinks it has the access to your geolocation while in reality is doesn't.

So it is some outdated technology unfit for modern day.

What does a user want? The user wants to be able to run anything without any risk and without writing any config files. Obviously it takes a skill to write such OS, and there is definitely a lack of people with this skill among Linux distribution creators.

A system where installation is done using "curl + sudo bash" is the opposite of a safe OS.

1h agoHN ↗

A system where installation is done using "curl + sudo bash" is the opposite of a safe OS.

not clear at all. E.g. on QubesOS this could be fine

1h agoHN ↗

Antivirus is not a bad thing. Imagine running a company where there are 100 employees that click every link and open every attachment. Definitely safer with an antivirus.

1h agoHN ↗

I imagined it with employees on Linux and it wasn't clear to me it's definitely safer with an antivirus software. You are just stating things without explaining yourself...

1h agoHN ↗

I'm a firm believer that hardware virtualization is the way forward for security. Qubes OS has the right idea, but running an entire OS for every application is demanding.

IMO it would make more sense to run every app in its own scaled down VM, like Microdroid for Android. Windows 10 had Microsoft Defender Application Guard for Microsoft Edge, and as far as security goes it was a fortress.

Too bad they discontinued it, and that performance was subpar. I would have loved to see them develop the idea more.

1h agoHN ↗

Aren’t you then just moving the responsibility from OS (process isolation) to the CPU ? And doesn’t this whole thing break with practical realities, such as processes needing to interact with each other ?

How would you deal with a password manager or a clipboard in these cases, for example, without increasing friction for users ?

1h agoHN ↗

And doesn’t this whole thing break with practical realities, such as processes needing to interact with each other ?

There will always be advantages and disadvantages to all of this. But the general idea is to protect the "core" OS, and for that virtualization is superior to anything else you could try really. Android and iOS are already built to isolate apps from one another. ChromeOS uses Crostini to run Linux programs in a VM, etc.

without increasing friction

That's always the compromise with an Antivirus, isn't it? The logical thing would be to build password managers into the OS, or maybe even to handle them differently. As they are already done in Android and iOS today.

26m agoHN ↗

No what they are is:

You want to keep a building secure, so you have some structure of access and key managment, who has access to what and who do you let in.

Then you let access and key managment slide, your front-desktop lets in some shady people and their is a hole in your back wall.

The solution: add scaffolding around the facade and empower some security service staff to enter every room through every window and chime in on every front desk decision.

1h agoHN ↗

That's an impressively tight TOCTOU exploit!