Security Review Agent
A read-only security reviewer for code and AI agents. It audits diffs and full repositories against the OWASP Top 10 and a catalog of AI-agent-specific risks, then reports findings ranked by severity with concrete remediation.
What it checks
- Injection — SQL, command, template, and prompt injection
- Broken auth & access control — missing checks, IDOR, JWT misuse
- Secrets — hardcoded keys, tokens, and credentials in code or history
- SSRF & unsafe fetch — user-controlled URLs, metadata endpoints
- AI-agent risks — over-broad tool permissions, untrusted tool output, prompt-injection surface
Why it's safe to run
This agent requests only readFiles and gitHistory. It cannot write to your files, run commands, or reach the network.
Install
npx nuclexa install security-review --target claude-codeExample output
| Severity | Finding | Location |
|---|---|---|
| High | Command injection via exec(userInput) | src/api/run.ts:42 |
| Medium | JWT verified without expiry check | src/auth/verify.ts:18 |
| Low | Verbose error leaks stack trace | src/server.ts:120 |