Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. GPT-6 Sol and Luna(openai.com)
    discuss
  2. Cookie started its life as a plastic bottle(acs.org)
    discuss
  3. GPT-6 Sol(developers.openai.com)
    1comments
  4. Arguing about Arguments(steveklabnik.com)
    discuss
  5. Delaying all JavaScript doesn't make your site faster(michalek.blog)
    1comments
  6. It's Hard to Learn from Machines(carlkolon.com)
    discuss
  7. U.S. Climate Collection(usclimatecollection.org)
    discuss
  8. Prominent art therapist quoted by Vice, Forbes and others is AI-generated(pressgazette.co.uk)
    discuss
  9. Vibe code what prints money(leapd.ai)
    discuss
  10. OpenCode removed usage transparency after a billing bug was reported(github.com/anomalyco)
    discuss
  11. Reviewing Your Blog Post with an LLM(writethatblog.substack.com)
    discuss
  12. My Weird New Hobby: Wandering Around Tokyo on Google Maps(ahmedhossamdev.com)
    discuss
  13. U.S. Site Blocking Bill Adds VPNs to the List of Blocking Intermediaries(torrentfreak.com)
    discuss
  14. PyTauri – Tauri Bindings for Python(pytauri.github.io)
    discuss
  15. How Healthy Are Sardines?(nytimes.com)
    discuss
  16. Graduating into Disruption: Labor Market Outcomes for AI-Exposed College Majors(census.gov)
    discuss
  17. Goolsbee's Remarks at Monetary and Financial Institutions Forum Event [pdf](chicagofed.org)
    discuss
  18. Porsche CEO assures staff no further job cuts planned, according to memo(reuters.com)
    1comments
  19. Sentience, create your digital self(sentience.com)
    1comments
  20. 'We Hacked the FBI:' Hackers Say They Have Data on All FBI Employees(404media.co)
    discuss
  21. AI design tool from GitLab founder(pixelcrew.ai)
    1comments
  22. Shopify CEO: employees' 'slop grenades' are making more work for everyone else(fortune.com)
    discuss
  23. Encoding transparent videos that work in Safari, Chrome and Firefox(terhech.de)
    discuss
  24. ConferenceRank – conference and journal deadlines for 980 CS venues(rabimba.github.io)
    discuss
  25. Trump says AI will be renamed 'super intelligence' in all US documents(thehill.com)
    1comments
  26. Avy Tab Switcher, Avy-style keyboard navigation for browser tabs(github.com/artawower)
    discuss
  27. A beginner-friendly, step-by-step guide – How to Fingerprint Popular honeypots(medium.com/meetcyber)
    discuss
  28. Tiny Startups Are Getting Even Smaller with Help from AI(wsj.com)
    discuss
  29. Japanese used bookstores are seeing a surge in bulk orders for obscure books(twitter.com/johnny_suputama)
    discuss
  30. Support Fins – Stop Using Tree Support for Your 3D Prints [video](youtube.com)
    discuss

Tell HN: Firefox's default browser check dark pattern triggers Windows BSOD

1 pointsby 1h ago
1 comments
Been pulling my hair out debugging a relative’s persistent BSOD (once every ~6hrs) after nudging them to take the first degoogling step by switching browsers.

I could not believe at first that a user space program, especially a Windows Store sandboxed one, could affect anything in the kernel, but analyzing every single coredump shows the exact same trigger: Firefox attempted to rename the UrlAssocistions/http registry key in the UWP sandbox’s virtualized registry hive, triggering an access violation in the Registry system service and crashing ntoskrnl.

It turns out that there is a secretly enabled config “browser.shell.setDefaultBrowserUserChoice.regRename” that causes Firefox to attempt this renaming periodically despite the user already having unchecked the “check if default on startup” option. A quick search reveals that it was a vestigial A/B testing feature that was already slated for deprecation[0], but remained in the current version and a perfect storm of I’m guessing UWP kernel memory bug and Firefox dark pattern triggered this outcome.

[0] https://bugzilla.mozilla.org/show_bug.cgi?id=2060861

1h agoHN ↗

I would love to read about how you figured this out.