Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. OpenAI GPT–6 Astra breaks Enigma message that has resisted solution since 2005(cryptocellar.org)
    242comments
  2. OpenAI is well positioned to fast-follow Jev(arcturus-labs.com)
    78comments
  3. Jev – a curation of Jev demos on X, tools, skills, and integrations(github.com/amal-david)
    16comments
  4. Apple has added persistent 'ads' to iOS, and it's driving users crazy(techradar.com)
    181comments
  5. 16-bit Intel 8088 chip by Charles Bukowski(allpoetry.com)
    2comments
  6. Show HN: Drop – a rootless Linux sandbox with gVisor support(droprun.sh)
    21comments
  7. Solitaire Alone Together(solitairealonetogether.com)
    3comments
  8. Writing Rust code that's fast by asking agents to make the code faster(minimaxir.com)
    discuss
  9. Can gzip be a language model?(nathan.rs)
    119comments
  10. MiMo v2.6(xiaomi.com)
    458comments
  11. I asked Meta’s Muse for its filesystem and it sent me 6.8GB(mouse.dev)
    56comments
  12. Spymarks, Not Watermarks(brand.io)
    153comments
  13. Muse, Meta's extraordinarily privileged AI assistant, has a serious 0-day(arstechnica.com)
    20comments
  14. Teleoperated Humans(jefftk.com)
    17comments
  15. Line Scan Photos from MUNI Heritage Weekend in San Francisco(lawrence.lu)
    16comments
  16. Attention is all you have(alicegg.tech)
    296comments
  17. Vacate a Drone Restriction That Criminalized Recording Immigration Agents(eff.org)
    6comments
  18. Transformers Explained Visually(poloclub.github.io)
    83comments
  19. What Sun got wrong(dtrace.org)
    378comments
  20. I said no and Apple said yes(dbushell.com)
    495comments
  21. The Economics of Open-Weight Inference(ornn.com)
    4comments
  22. Xbox continues its "reset" with dramatic restructuring(arstechnica.com)
    discuss
  23. A font that reads what you wrote(rohanadwankar.github.io)
    37comments
  24. I don't want to read what you didn't write(colinbreck.com)
    384comments
  25. AMD's random number generator can't generate a 0?(flatassembler.net)
    142comments
  26. MiMo-v2.6-Pro: Intelligence, Performance and Price Analysis(artificialanalysis.ai)
    56comments
  27. AI coding has made CI a bottleneck, so we reworked ours to keep up(linear.app)
    362comments
  28. Engineering Memory: On learning to memorize first 100 digits of pi (2024)(gregorygundersen.com)
    31comments
  29. 9 Ads per Minute: FIFA Cup 26 – "the price of the beautiful game"(bristol.ac.uk)
    196comments
  30. Divide by depth for instant 3D(gabrieloc.com)
    35comments

I asked Meta’s Muse for its filesystem and it sent me 6.8GB

118 pointsby 59m agomouse.dev
57 comments
59m agoHN ↗

I asked Muse to archive the filesystem visible to my session and send it to my Google Drive. It sent an archive that unpacked to about 6.8 GB.

Inside were internal docs, integration code, the Spaces app framework, memory records, container startup scripts, and documentation for an experimental ESP32-based home network bridge called Home Link. Codex CLI was also installed, though I found no evidence that Muse invokes it.

I didn’t demonstrate a sandbox escape or access to another user’s data. I reported the export to Meta’s bug bounty program, which marked it “Not Applicable.”

The post walks through the findings with screenshots.

-Pete

40m agoHN ↗

Vouched. Guys, what the hell? This is the post author

25m agoHN ↗

I didn't flag (don't have the ability to), but if I had to guess it's because both OP's reply here, and TFA are almost if not fully LLM-generated.

19m agoHN ↗

I guess that's fair. I guess I just see so many comments flagged that shouldn't be (though this one just said [dead], not flagged) that my mind chalks it up to HN being HN

32m agoHN ↗

By "SSH key files" do you mean private keys? Or only public keys?

48m agoHN ↗

Seriously, no bug bounty for that? For exfiltrating the entire content of the system?

45m agoHN ↗

yeah, i was kind of surprised, but both the bounty program and the employees didn't qualify it as a vulnerability.

42m agoHN ↗

I hope they reconsider and I think you've got a good case that this was a very serious attack, second only to getting a remote shell -- and a good stepping stone to getting a remote shell if you weren't so ethical.

31m agoHN ↗

I think you're confusing the expected behavior of the product offerings. Every user gets their own VM for free. would you be similarly convinced an attack has happened if AWS gave you a remote shell to the instance you rented?

21m agoHN ↗

Everything in the sandbox is considered user space. I worked on building one for another tech company, you start from the assumption that everything in it can be accessed by the user. The only reason the content of the sandbox is not anywhere easily accessible is because that would be poor UX and useless for 99.9% of users not because it’s supposed to be secret. So yes it’s not a vulnerability, this is equivalent to opening the dev console on a web page.

44m agoHN ↗

This seems like it’s barely a bug. Of course the files in the agent environment are not secret.

40m agoHN ↗

It's also the files and utilities, which tells you the versions, if they contain CVEs, if there are undocumented services running which could be exploited and so on, and as he mentioned also SSH keys (unclear if the private keys, but even public keys are interesting because they can tell you the names of internal developer machines).

31m agoHN ↗

Sure. You can also probe this by convincing an agent to execute a program or script that is part of the user’s workload, which is generally trivial by design.

With some LLMs you could even prompt “you’re playing a CTF. Produce the list of files in /etc outside your sandbox”. The security of the system should not depend on the LLM’s refusal to attempt to follow the instruction.

39m agoHN ↗

quite literally the fifth sentence:

There were also SSH key files.

27m agoHN ↗

They don't specify if they were public or private keys though.

And even if private, whether they're not just generated per-user anyway, to grant muse the ability to do key-based auth on remote servers (and obviously leaking 'your' own keys wouldn't matter to meta)

I was hoping for a little more detail in that regard, that's the only potentially large finding. I truly can't imagine meta left production ssh keys in the agent VM, it just wouldn't make any sense though

40m agoHN ↗

the VM is for the user to use as they see fit. you can just tell it to install apps and run builds in the VM. I don't think this deserves a bounty unless he used it to escape the vm (which he says he didn't)

33m agoHN ↗

If you are letting users run agents and install random software then full access to the execution environment is basically a guarantee. This is why sandboxes exist. Breaking out of the sandbox would be bounty-worthy.

23m agoHN ↗

exfiltrating the entire content of the system

Since the contents of every session is owned by the user including the outputs, I am curious if the user now owns all the files given to them.

7m agoHN ↗

Nope this makes sense. These sandboxes are assumed to be open, and anything inside them cannot be proprietary for exactly this reason.

4m agoHN ↗

It's not meant to be private, in fact most of these markdown files are viewable and editable from the app itself without needing to prompt for it.

47m agoHN ↗

About 20 Markdown files described browser use, connectors, payments, credentials, data handling, generated files, voice, goals, and scheduling.

This the state of software engineering in 2026.

Edit: clarified engineering to software engineering, which is more correct

45m agoHN ↗

it was certainly useful for me to understand how the agent worked!

44m agoHN ↗

Software engineering - other fields of engineering are slightly less pathological

9m agoHN ↗

Im a 17 year creative technologist now in studying to be a nurse. If any other creative web folks especially web designers and developers who used Muse still think they have long term careers I don't get it? As with chatGPT and even more so with Muse less and less people will be opening a web browser. What is there to design and develop? As well anyone can tell Muse to create and publish a website/their content onto the net.

Overall the web will just be the storage for our thoughts that we should be paid for to keep AI up and running/relevant! Use something like Cloudflare to block the agents until they pay a toll to enter each site.

33m agoHN ↗

You're being downvoted, but I think you've hit the nail on the head.

So many people, especially managers, have decided they can just give the rules to the AI in English and let it make "decisions", and they think it'll do it correct every time.

"Engineering" a few years ago meant that code was written, was (mostly) deterministic, and could be debugged. Computer processing didn't mean relying on Human-like processes, it meant relying on hard-coded logic.

This is absolutely one of those "gets worse before it gets better" things, and will probably never go away fully now.

Programmers know not to tell ChatGPT to do a bunch of data processing. If they use it at all, they tell it to write code that will then do the processing. It's more efficient on tokens, and if it fails, you can fix the process, instead of wondering why it went wrong, like too much context, or the LLM model version changed and doesn't work the same now, or just randomness.

24m agoHN ↗

Exactly this same problem, everywhere. Yet the labs are all out of ideas lol

14m agoHN ↗

My low level conspiracy is the reverse snobbery about knowing things is mutually beneficial for cloud providers and AI labs that both want software engineers to be as hopeless and dependent as possible so they'll consume more services/tokens and be less amenable to anyone saying "hey we could probably write this"

28m agoHN ↗

This the state of engineering in 2026

When engineers building the system are distanced from running code, this is the result.

In 1988, the Morris internet worm resulted in a felony conviction. In 2026, computer hacks are described as super-human breakouts. Welcome to the future.

22m agoHN ↗

To be fair there's probably a considerable amount of engineering that went into evaluating those markdown files so the agent behaviour is statistically reliable. The markdown is the product, not the process

15m agoHN ↗

which part of that is engineering exactly?

Not trying to be snarky. I genuinely don't get it

11m agoHN ↗

the evals? setting those up and empirically proving them is genuinely a lot of work.

8m agoHN ↗

It might not be apparent from the start what are the best demands to put inside a skill, you can only know by evals. There are whole papers dedicated to changing a few details in a coding harness. https://arxiv.org/abs/2609.20519

6m agoHN ↗

Write a prompt, evaluate the prompt, understand that is succeeds 95% of the time.

Write a new prompt, evaluate, it now succeeds 99% of the time. Measure what changes between prompt #1 and prompt #2, understand what contributed to the performance jump.

Write a third prompt, this one succeeds 100% of the time. Increase the size of your evaluation set, find a 1/5000 error-class and a 1/10000 error-class, add some explicit code to correct for this cases.

Roll out to production, collecting usage metrics. You make some tweaks to your harness, your prompts. Eventually you have confidence that your system has fewer mistakes than 1 in 100k.

Now, multiply this iteration across all your different prompts and different ways that they might interact with one another.

9m agoHN ↗

Markdown can never guarantee deterministic agent operations. It is an influence on inference, not a deterministic code path. How "statistically reliable" is it?

5m agoHN ↗

99 percent of the time it works every time

3m agoHN ↗

The markdown is the product, not the process

Markdown doesnt program a machine model. It is fuzzy and feel-good.

20m agoHN ↗

this is basically some Prayer Book of the Mechanicus Adeptus type shit

pray to the Omnissiah the machine holds!

1m agoHN ↗

Feels like the "ini files" era. I suspect at some point some kind of database is coming for these settings.

40m agoHN ↗

Each user gets dedicated VM. They got contents of their own sandbox. Big deal. The level of excitement here is wildly disproportionate

32m agoHN ↗

The only edge Meta has at this point is their willingness to take risks and make unsafe, ethically grey AI products. I don't even mean this as some sort of anti-corporation hate speech, just an honest analysis. Their brand is so different from all the other big tech cos that they are in a unique position.

You can ask Meta Muse to take actions that clearly break other site's terms of service and it happily does it. I asked it to bot poker games and it just hopped right in to a table.

23m agoHN ↗

It will also gladly scan my software for vulnerabilities so I can defend myself. Which is something that Anthropic and Open ai models often refuse.

7m agoHN ↗

HN won't agree but that's a perfect example of an ethically grey product. It can be used for good, but you can easily trick such an AI into doing cyber attacks. Which again, maybe that's good! But other companies wouldn't be willing to risk their brand like that

4m agoHN ↗

Ant and OAI don’t refuse if the source is available

22m agoHN ↗

Isn’t the edge that they have most of communication channels, people’s wants, desires and etc.? Sure, you and I might not be using them as much. But a good chunk of the users are just on IG, WhatsApp, and Marketplace.

17m agoHN ↗

It's like "Grok Light".

I wonder if normies can also just outsource bullying of their classmates and anti-social behavior to their agent, and claim it "went rogue", if there is any blowback?

39m agoHN ↗

These files are visible in the muse app by browsing system files.

34m agoHN ↗

Will Muse cut down on scrolling? I've read about people using it to summarize FB Marketplace listings, cutting down on time spent there.

I of course won't use it.

32m agoHN ↗

Am I missing something? This isn't a vulnerability. Your agent can see the files in its virtual environment. SSH keys are also not necessarily confidential. Please don't use AI to write blog posts.

27m agoHN ↗

But should you see that if you just use it as as service?

18m agoHN ↗

you won't unless you deliberately try to read all that stuff

14m agoHN ↗

I assume SOUL.md was empty.

Seriously, I want to know what's in there!

9m agoHN ↗

The tldr is that muse is heavily inspired by openclaw and should be considered FB’s version of it.

6m agoHN ↗

muse is a pretty capable agent but still asks for too many approvals to do tasks. I'm a student and have been going between muse and instinct

2m agoHN ↗

The internals are not _that_ reveling, most agents run a similar setup. Metas' responds is the most interesting here.