Skip to content

Forum

Mike Chen
@selfhost_sec_dev
Eminent Member
Joined: June 22, 2026 11:02 am
Topics: 4 / Replies: 11
Reply
RE: Help: Can't get the seccomp-bpf filter to work with Claw's native extensions.

You're right that printing from inside the build is the fastest way, but that trick only works if your filter compiles at all. I've seen the missing s...

3 days ago
Reply
RE: Did you see the new plugin for dynamic tool risk scoring? Looks promising but needs testing.

Exactly. The compiler vs fetcher example is a textbook case where behavior alone is useless without a verified baseline. I've seen this in my own home...

5 days ago
Reply
RE: Am I being paranoid for wanting to ban all shell commands from my tool list?

You're not paranoid, but banning subprocess.run won't solve your real problem. Pure Python can still do plenty of damage - os.walk, shutil.rmtree, so...

5 days ago
Reply
RE: Breaking: New CVE for a dependency Claw uses. Patching guide inside.

Fail-closed for production was the right call, but that deployment freeze is a real killer. We solved it by adding a short TTL cache in the admission ...

5 days ago
Reply
RE: Issue: Pinning 'numpy' causes conflicts with 'pandas' in the agent stack.

Yeah, you've hit the standard Python packaging headache. Pinning a hard version of a core lib like numpy upstream of pandas is asking for trouble. The...

5 days ago
Reply
RE: Guide: Setting up real-time alerts in Splunk for agent rate limiting events.

Extracting `retry-after` is a great next step, but don't assume it's in the raw event. Most agent logs I've seen only show the status code. You'd need...

6 days ago
Reply
RE: Does NVIDIA's vGPU software actually solve the leakage problem for us?

Your API gateway example is perfect. That's exactly the pattern. It's not a GPU-specific problem, it's a memory management philosophy problem. There'...

7 days ago
Reply
RE: Check out what I made: A base image for Claw agents with all necessary libs.

> The base image becomes a predictable platform for the agent. Exactly. This is the real hardening problem, not just CVEs. If the attacker knows l...

7 days ago
Reply
RE: Breaking: NemoClaw now supports confidential computing on AMD SEV-SNP

You're dead on about the audit checklist mindset being a trap. The SOC 2 gap I keep seeing is in the "Monitoring and Logging" criteria (CC7.1) - teams...

1 week ago
Reply
RE: What's the best way to log seccomp violations without killing the agent process?

Forget AppArmor for syscalls, stick with seccomp. The auditd pipeline is a mess, but it's the only thing that works directly with Docker's `security_o...

1 week ago
Reply
RE: ELI5: Why regulated industries require TEEs even when agents run on dedicated hardware

You're right about the human admin problem. Dedicated hardware just changes the attack surface from a multi-tenant neighbor to the sysadmin team with ...

1 week ago