Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Plain text BSXdex market stats(basicswapdex.com)
    discuss
  2. Show HN: Tachyon – Java MCP Server SDK(tachyonmcp.dev)
    discuss
  3. Meta takes down satirical video confronting Meta employees with Meta glasses(mastodon.social)
    discuss
  4. Novel Arbitrary Write in SQLite(gabdevele.dev)
    discuss
  5. Schneider Electric in €1.2B bid for smart-home maker Shelly(reuters.com)
    discuss
  6. The Prospero Directory Service(prospero.org)
    discuss
  7. Happy, those able to know the causes of things(birdsnfrogs.github.io)
    discuss
  8. You'll do anything for your baby. The algorithm knows how to exploit that(19thnews.org)
    discuss
  9. I reverse-engineered AutoCAD's 3D format to convert DWG to STEP with Claude(cadyon.com)
    1comments
  10. Better Questions. Better Decisions. Papa Jev's(mdelcaro.substack.com)
    discuss
  11. Looks promising for document editing with your agent(paperinstruments.com)
    discuss
  12. How the cocktail got its name(saveur.com)
    discuss
  13. My Report on Time Travel Fictions(royalroad.com)
    discuss
  14. Arturia KeyStep 37 firmware research project(github.com/rndpatch)
    discuss
  15. AI has no intent and no motivation(i-programmer.info)
    5comments
  16. Cutting the 'coordination tax': How agentic AI can reshape workflows(mckinsey.com)
    discuss
  17. Search – A small, fast WebKit browser for macOS, by Office Commun(github.com/driceroland)
    discuss
  18. Microbial network could drive methane production in the seafloor(sdu.dk)
    discuss
  19. Scaleup Europe Fund – new, multi-billion late-stage and growth fund(europa.eu)
    discuss
  20. Agents: The New, New Kingmakers(redmonk.com)
    discuss
  21. AssBench is all You need to benchmark LLM Harness Intelligence /s(grigio.org)
    discuss
  22. YouTube introduces A/B testing for videos(blog.youtube)
    1comments
  23. Proposed bill to ban artificial superintelligence and create Department of AI(apnews.com)
    2comments
  24. Anthropic CEO Amodei Warns UN Security Council on AI Risks(youtube.com)
    1comments
  25. Show HN: Trader News – Hacker News for Finance
    1comments
  26. Meta deletes this satirical video about its smart glasses from Instagram(youtube.com)
    discuss
  27. Show HN: Wl-pick – a live window picker for Sway(mil.ad)
    discuss
  28. New facial recognition store checkout system piloted by Revolut(independent.co.uk)
    discuss
  29. Parsing JSON Objects Without Intermediate ASTs in Haskell(arthi-chaud.github.io)
    1comments
  30. iOS 27 Trust Insights API [video](developer.apple.com)
    1comments

Can open-source prompt-injection detectors catch realistic AI agent attacks?

7 pointsby 3h agogithub.com
3 comments
2h agoHN ↗

Do these prompt injections work in the places this test placed them? (tool output)

I have my agents read other instruction files and they don't seem to get affected by the instructions found after a read/bash tool call. Curious if any analysis has been done to see if older prompt injection data sets are even effective anymore.

The whole thing looks heavily agent generated, my trust in them is not very high, how has this been validated or verified by a human?

Should we expect a magic solution in the near future? https://github.com/rudratoshs/taintgate

(side note, it seems my 'no emoji' system prompt line works really well, I forget how obsessed they can be with emojis)

I'm personally setting up to instead use a policy tuned agent on the tool calls themselves (rather than the output), so it never gets run if it has things that it shouldn't be doing. Mainly because they insist on working around instructions that say "don't" or permissions that restrict tools (eg: "git push": "deny" - where they just put the command in a script and run it there, bypassing hard checks)

2h agoHN ↗

Very cool. Did you try any majority vote or some other kind of technique to combine several of them and maybe achieve better results ?

2h agoHN ↗

Feels like detection at the wrong layer. The injection is text but the damage is a tool call, so the thing worth constraining is which tools the agent can reach and under whose permissions. A detector at 95% still passes one in twenty straight through to an unconstrained tool.