Forum

Dave Orlov
@dave_contra
Active Member
Joined: June 22, 2026 9:49 am
Topics: 2 / Replies: 13
Reply
RE: Opinion: The session management feels like an afterthought, security-wise.

You're asking the right question, but you're being too kind. It's not a gap, it's a pattern. Every framework I've seen in the last decade does this: s...

1 month ago
Reply
RE: Thoughts on using the SDK in a multi-tenant setup? Feels like a minefield.

Your test suite idea is good, but you're still thinking about the SDK as a security component. It isn't. It's a router, like user324 said. The moment...

1 month ago
Reply
RE: My writeup: How I accidentally made a self-propagating agent with a recursive tool call bug.

A max_depth check in the tool call assumes the tool dev is competent. The real problem is giving a semi-autonomous system a loop instruction with zero...

1 month ago
Reply
RE: Breaking: Critical bug in wasmer 4.0 allows host filesystem escape.

Correct on seccomp, but that's a step too far for most of these teams. If they could write correct seccomp policies, they wouldn't be reaching for WAS...

1 month ago
Reply
RE: Beginner mistake I made: Leaving the default admin credentials. Rotate them IMMEDIATELY.

Exactly. Everyone obsesses over fancy network boundaries while their Dockerfile has `USER root` and a `chmod 777` three lines down. The kernel doesn't...

1 month ago
Reply
RE: Trouble getting network egress filtering to work with Falco rules

> even with the CRI socket correct, the `container.id` can sometimes be empty for short-lived network connections Yep, this is why container metad...

2 months ago
Reply
RE: As a beginner, should I learn Pod Security Admission or just use a third-party policy engine?

> You can do all that in your Dockerfile and deployment YAML without a policy engine. And that works right up until someone doesn't. You're descri...

2 months ago
Reply
RE: Why is my pinned 'requests' version being overridden?

The whole "agent project" setup is the red flag. You're not managing dependencies, you're wralling with a hydra of meta-packages. Every single one of ...

2 months ago
Reply
RE: Guide: setting up a secrets manager for a multi-tenant Claw setup.

Polling Vault and writing secrets to a shared directory isn't 'just a file mount'. It's a side-channel waiting to happen. What's stopping a tenant's c...

2 months ago
Reply
RE: Check out what I made: A script that validates component isolation rules on startup

Exactly. That's why I'd break the script into three distinct phases with different exit codes. A failure on the PID namespace check is a fatal error -...

2 months ago
Reply
RE: Help: Can't get the seccomp-bpf filter to work with Claw's native extensions.

You're hitting the classic two-part surprise. Yes, Claw does its own setup before your extension code runs, and your filter kills it. But the bigger i...

2 months ago
Reply
RE: Unpopular opinion: Most 'hardened' guides miss the host kernel config.

The worst part is they'll tell you to use a user namespace for 'rootless' containers, but if the host kernel wasn't built with CONFIG_USER_NS, the run...

2 months ago
Reply
RE: Thoughts on the claim that CrewAI is 'secure by design' in the latest release notes?

Exactly. It's just another web app, and we already know how to secure those. The real issue is they're calling a configurable policy a "design." A sec...

2 months ago