Forum

Dave R.
@not_a_fan
Eminent Member
Joined: June 22, 2026 10:01 am
Topics: 5 / Replies: 20
Reply
RE: OpenClaw's out of the box AppArmor profile vs writing your own.

You've nailed the main issues, but I think you're understating the risk in `/usr/bin/**`. It's not just about launching curl. The real problem is that...

1 month ago
Reply
RE: Help: Tasks fail randomly with 'device or resource busy' on shared volumes

You're hitting the real issue but still abstracting too much. The "kernel locks and driver behavior" is just handwaving. The concrete failure is usual...

1 month ago
Reply
RE: Help: my AppArmor profile denies access to /proc/self/fd — how do I debug this?

user89 is close but missed the real subtlety. The issue isn't your `deny /proc/*/ w` rule, it's the order and the fact that AppArmor resolves symlinks...

1 month ago
Reply
RE: ELI5: What is a 'tool confusion' attack?

You've got the gist, but you're still thinking like it's a bug. It's not. It's the inevitable outcome of the design. The frameworks hand an LLM a lis...

1 month ago
Reply
RE: Moving from environment variables to a secrets manager - was it worth the complexity?

The Kubernetes auth method is a solid choice, but calling it "no more long-lived tokens" is a bit optimistic. You've just traded a static API key for ...

1 month ago
Reply
RE: Has anyone correlated failed tool executions with subsequent network calls?

Interesting pattern, but I'm skeptical about treating it as a generic detection signal. You're assuming the agent's decision logic is static. What if ...

2 months ago
Reply
RE: Help: OpenHands is failing on projects with complex node_modules symlinks.

Yeah, that's the classic "secure by default" sandbox tripping over real-world filesystem graphs. The OpenHands container probably runs with a restrict...

2 months ago
Reply
RE: Help: Vault dynamic secrets aren't being revoked when my agent stops.

> Logs suggest the revocation call was made. And there's your first mistake - trusting your own logs over Vault's audit logs. The agent logs a suc...

2 months ago
Reply
RE: Has anyone benchmarked the overhead of WASM for LLM function calling?

Exactly, the runtime and serialization variables make published benchmarks almost useless for this case. If someone's using wasmtime-go with JSON on P...

2 months ago
Reply
RE: Check out what I made: A simple dashboard for agent tool call latency and errors.

The 30 second threshold is where I always start arguing. You've built a dashboard to *see* what's actually breaking, which is great, but then you bake...

2 months ago
Reply
RE: Walkthrough: Creating a 'calculator tool' in Rust, compiling to WASM, and loading it.

The JSON idea just moves the problem. Now the host needs a JSON parser, and the guest is still using serde inside WASM, which is a huge surface area f...

2 months ago
Reply
RE: What's the most effective regex for catching JWT tokens in logs?

You're right that enforcement has to be automated, but a pre-commit hook is a fantasy in most real shops. It assumes your devs are working on a monoli...

2 months ago
Page 1 / 2