Loading...
Loading...
Audit code for security vulnerabilities using OWASP Secure Coding rules. Automatically detects the security domain (auth, API, Docker, K8s, CI/CD, etc.) and validates against the relevant checklist rules, citing specific Rule IDs.
npx skill4agent add vchirrav/owasp-secure-coding-md secure-coding-auditrules/| Code Type | Rule Files to Load |
|---|---|
| Login, auth, passwords, MFA | |
| API routes, controllers, REST/GraphQL | |
| Dockerfile, container config | |
| Kubernetes manifests, Helm charts | |
| CI/CD pipelines (GitHub Actions, Jenkins, GitLab CI) | |
| Terraform, CloudFormation, Pulumi | |
| File upload/download handlers | |
| Database queries, ORM code | |
| Frontend, React, HTML templates | |
| Encryption, hashing, key/cert handling | |
| Environment variables, secrets, vaults | |
| Error handling, logging, monitoring | |
| RBAC, permissions, authorization | |
| PII, data storage, retention | |
| Dependencies, package management, SBOM | |
| C/C++, memory-unsafe languages | |
| Server config, hardening | |
| General review (no specific domain) | |
rules/rules/| Rule ID | Status | Finding | Remediation |
|---------|--------|---------|-------------|
| [INPUT-01] | FAIL | User input not validated server-side | Add server-side validation middleware |
| [AUTH-03] | PASS | — | — |