❌

Normal view

Graphing AWS Attack Paths in Bloodhound

So happy to finally release AWSHound with Daniel Heinsen. Its been a labor of love for the last 6 months and I can't wait to hear how the community uses it!

If you haven't heard AWSHound is a free, self-hosted tool that turns AWS accounts and Organizations into real attack path graphs using BloodHound CE. It evaluates IAM policies, boundaries, SCPs, RCPs, and resource policies offline. Showing you what an attacker can actually compromise in your AWS organization.

submitted by /u/n0pe_sled
[link] [comments]

I escaped the WebAssembly's sandbox and got arbitrary shell execution on the host.

As per WABT's SECURITY.txt, #2831 issue exists

For context:

WABT is a Binary Toolkit for WebAssembly developed by WebAssembly.org (W3C)

wasm2c is a tool inside of it, which is used by many projects like FireFox (via RLBox) to compile wasm down to a sandboxed c library, the assumption is the built C code preserves all WebAssembly's sandbox security features.

This PoC demonstrates escaping that sandbox.

submitted by /u/trustsigRobert
[link] [comments]

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]
❌