Cve Env
Description
Agentic CVE → Docker environment builder: given a CVE ID, builds and verifies a Docker environment running the affected application at its pre-patch version.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
cve-env
**Agentic CVE → Docker environment builder.**
Given a CVE ID, cve-env builds a Docker environment running the affected application at its pre-patch version and verifies the build is correct. The agent researches each CVE live (NVD + OSV + GitHub + container registries) and picks its own build path.
Version: 1.0 beta Author: Gadi Evron (@gadievron)
What `success` means
`status="success"` requires **both**:
- Right version — a version-assertion
exec_check(pip show,dpkg -l,openssl version,find / -name '*.jar', …) proving the deployed binaries fall in the CVE's affected range. - Working app — functional-smoke checks proving normal operation on benign input (e.g. HTTP
GET /+ a content match, or aSELECT 1roundtrip for a database).
If verify runs but that evidence is incomplete, the runtime records the honest fallback `verified_partial` instead. cve-env's job ends at a correct, working environment — it builds and verifies; it does not assess or attempt the vulnerability.
Every build runs in a hardened container: `--cap-drop ALL`, `--security-opt no-new-privileges:true`, ports bound to `127.0.0.1` only.
Requirements
- Python 3.12+ and uv
- A Docker daemon reachable via
dockeronPATH. Developed and tested against Colima; any Docker-compatible daemon (Docker Desktop, OrbStack, rootless Docker) should work but is untested - The
claudeCLI, logged in — cve-env authenticates through your existing Claude Code session viaclaude-agent-sdk. NoANTHROPIC_API_KEYis consumed.
Install
git clone && cd cve-env
uv sync
Quick start
# Build + verify one CVE (prints a per-stage report at the end)
uv run cve-env build CVE-2014-0160
# Probe external services (NVD, OSV, GitHub, Docker Hub, registries)
uv run cve-env doctor
Per-CVE audit traces (every tool call, result, and cost) are written to `output/agentic//
Related Skills
Fastapi Review
Review a FastAPI application for architecture, async correctness, dependency injection, Pydantic schemas, secu
Security Defense in Depth
Implement multi-layered testing and security best practices.
Security SecLists Official Repository
[OWASP Testing Guide](https://owasp.org/www-project-web-security-testing-guide/)
Security Threat Hunting with Sigma Rules
Use Sigma detection rules to hunt for threats and analyze security events
Security Maintenance Walkthrough - 2026-03-29
- Re-triaged the full 2026-03-15 security finding set against current `main` and wrote a fresh current-head re
Security Google Workspace Model Armor
Filter user-generated content for safety
Security Related Agents
Django Reviewer
Expert Django code reviewer specializing in ORM correctness, DRF patterns, migration safety, security misconfi
Token Auditor
Scans ui/src/ for hardcoded visual values, duplicate components, and shadcn replacement candidates; produces d
Gitnexus Security Boundary Reviewer
GitNexus security and trust-boundary reviewer. Use for auth, permissions, secrets, injection, unsafe parsing,