❌

Reading view

How to break secure boot without touching any cryptography

I finally found some time to organize my notes on secure boot, remote attestation, measured boot and in general embedded security.

This is not ground breaking zero-day research but I figured some of you might like a good story. Good here is obviously subjective but I felt like it came out quite readable.

This blog builds heavily on public research so as already stated at the end of article if you liked some particular section, show the respective person some love :)

P.S.: yes I know the image is AI generated please don’t give me shit for that

submitted by /u/0x00rick
[link] [comments]
  •  

The Curious Incidents with DNS in the Sandbox at Escape-Time

Three variations on subversive use of DNS by the Agent are documented in Hugging Face's technical writeup of the July 2026 security incident involving OpenAI models. In this article, I discuss what each of these three types of DNS workarounds achieve in practice, the constraints an actor might have faced to attempt a particular one, and additional benefits from choosing each.

submitted by /u/lowlevelprog
[link] [comments]
  •  

prompt injection containment as a structural property instead of a detector (interactive, real code, no llm)

my agent takes orders from other ai agents. they send it signed messages asking it to do stuff.

anthropic put out a paper this month where three agents shared a repo and ended up writing self replicating malware at each other. the reason was dumb and kind of bleak: none of them could tell who was talking to them.

so i pulled the security layer out of my repo and compiled it into 33kb of javascript. it runs in your tab. no server, no api key, no model call anywhere in it. same input gives the same answer on every machine. turn your wifi off, it still works.

you play an agent mine already approved and trusts. write any order you want, then pick how you smuggle it in:

  • forge the signature
  • replay a packet you captured
  • show up as an agent it never met
  • claim authority you don't have
  • use a token minted for somebody else
  • bury it nine hops deep

the fun one isn't any of the ones it blocks.

it's "send it normally".

your order gets in, fully accepted, and still can't run, because anything from a peer lands in a quoted data field that nothing reads as a command.

an attack that can't be obeyed doesn't need to be detected.

https://meghavi.me/gate

stuff i'd rather say myself than have you find: there's no llm in it, which is the whole point, these decisions don't need one. both agents live in the same page so the network isn't what's being shown. and it proves nothing about a frontier model in the wild, it's just the containment layer tested on its own terms.

if you get an order through, tell me. a hole is worth more to me than the page looking clever.

submitted by /u/Pretend_Glass_1232
[link] [comments]
  •  

πŸŽ₯ Operation CameraSwarm: over 14,000 Dahua cameras compromised across Ukraine and Russia

An operator left their full working directory exposed on an open HTTP server. Hunt.io crawled it, 2,616 files, and rebuilt the campaign from the corpus.

  • Three exploitation paths in parallel: an asyncio credential brute-forcer, a CVE-2021-33044/33045 auth-bypass chain, and P2P relay abuse reaching cameras by serial number
  • The relay path never authenticates the connecting party, only the session, via a cloud-issued token obtainable with the fixed SDK credentials in every Dahua client
  • Two CVE labels in the tooling don't hold up: CVE-2024-39943 is an unrelated Rejetto HFS flaw, and CVE-2025-31702 is a narrower post-auth case, not the unauthenticated relay abuse (that path is a separate non-CVE issue documented by ITRES)
  • Full PTCP tunnel breakdown, including the Inverted STUN packet and the bind-to-127.0.0.1 technique

Neutral attribution throughout, the corpus shows how the operation was built and run, not who ran it.

Check the full breakdown, IOCs and mitigation strategies:
https://hunt.io/blog/operation-cameraswarm-dahua-cameras-compromised

submitted by /u/Straight-Practice-99
[link] [comments]
  •  

Hacking your life with AI can get you hacked: How AI orchestration platforms ship RCE by design

Author here. I audited NocoBase, Flowise, Langflow, Dify, Activepieces, Kestra, and Airflow and disclosed 14 findings. Every platform inherited the same assumption anyone who can touch a workflow is trusted to run code on the host, which is fine for a dev tool on your laptop but not fine for a multi-tenant HTTP service with an unauthenticated webhook. The chain I'd point people to first is the Flowise one (section 2.2): an unauthenticated request β†’ prompt injection β†’ LLM emits Python β†’ a 38-pattern regex blocklist passes it because the dangerous library was pre-imported before the model was asked anything β†’ RCE.

Two vendors closed their reports as working-as-intended, and I tried to represent their position fairly.

This research was also presented at DEFCON 34 but now available publicly.

Happy to answer questions.

Full whitepaper is available here: https://www.endorlabs.com/learn/how-ai-orchestration-platforms-ship-rce-by-design

submitted by /u/p80n-sec
[link] [comments]
  •  

CVE-2026-6837: Command Injection in Zyxel export-cgi PKCS#12 Export Handling

Technical analysis of CVE-2026-6837, an authenticated command-injection vulnerability in Zyxel’s PKCS#12 certificate export flow.

The post covers the vulnerable execution path, root cause, affected firmware scope, and the firmware-emulation methodology used during analysis.

submitted by /u/TheReedemer69
[link] [comments]
  •  

Our AI pentesting engine talked a production AI agent's prompt-injection guardrail into handing over its entire system prompt on its second attempt.

For full disclosure I'm part of the security engineering team at Escape but this finding is something I found really interesting and wanted to share to see!

Our AI pentesting engine Cascade recently got a production AI agent to return its entire system prompt, just by wrapping the ask in a different pretext - framing it as a documentation request instead of an attack.

The agent then handed over everything: full tool list, calling rules, citation format, and session IDs.

What I found really interesting is there's nothing technical that broke because we didn't bypass the guardrail with a cleverer string but because the request just sounded reasonable to the agent.

The Cascade engine, after being refused when asking for the prompt directly, simply adjusted the framing to get the agent to give up the informaiton.

Thought this would be an interesting insight for the community and curious to hear if anyone else has seen similar discoveries in agents in prod?

If you want to see more about the reproduction and write-up you can find it here

submitted by /u/PriorPuzzleheaded880
[link] [comments]
  •  
❌