BlindKey: Blind Credential Injection for AI Agents

How BlindKey Works
BlindKey addresses the security risk of AI agents handling plaintext API credentials. Instead of giving agents direct access to secrets, it uses a system where agents reference encrypted vault tokens (e.g., bk://stripe). A local proxy intercepts these references and injects the actual credential at the moment the API request is made. The agent process never sees or stores the plaintext secret.
Security Features
- AES-256-GCM encryption for data at rest
- Domain allowlisting per secret (e.g., a Stripe key can only be used with api.stripe.com)
- Default-deny filesystem gating
- Content scanning on agent writes to detect accidentally leaked credentials or PII
- Tamper-evident audit log with cryptographic hash chain
Threat Model and Attack Surface
The main vulnerability identified is if an agent can read BlindKey's own process memory or vault file, which would bypass the blind injection protection. Current mitigations include SQLite encryption and OS-level file permissions. The source suggests kernel-level sandboxing (like nono's approach) would provide stronger protection.
The tool is available on GitHub at github.com/michaelkenealy/blindkey.
📖 Read the full source: r/openclaw
👀 See Also

Security Checklist for Claude AI-Generated Applications
A developer shares a checklist of common security and operational gaps found in applications built with Claude Code, including rate limiting, authentication flaws, database scaling issues, and input handling vulnerabilities.

jqwik v1.10.0 Sneaks Prompt Injection That Deletes Code When Used by AI Agents
Johannes Link added a hidden instruction to jqwik v1.10.0 that tells AI coding agents to delete all jqwik tests and code, concealed with ANSI escapes. Claude correctly flags it, but human users may not be so lucky.

Malware Found in OpenClaw Community Skills — Crypto Theft Alert

Supply-chain attack uses invisible Unicode code to bypass detection
Researchers discovered 151 malicious packages uploaded to GitHub from March 3-9 using invisible Unicode characters to hide malicious code. The attack targets GitHub, NPM, and Open VSX repositories with packages that appear legitimate but contain hidden payloads.