Install
$ agentstack add skill-d-padmanabhan-agent-engineering-handbook-codebase-security-audit ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ● Environment & secrets Used
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Codebase Security Audit & Remediation
A systematic, multi-layer security review with actionable fixes. Combines static (SAST), composition (SCA), secrets, data-flow / taint, semantic / CPG, infrastructure (IaC), custom rules, and dynamic (DAST) checks - and wires the results into CI/CD for continuous coverage.
Companion rules:
310-security.mdc- principles + OWASP Top 10 + NHI Top 10316-zero-trust.mdc- Zero Trust principles (always-on)160-github-actions.mdc- secure CI workflow patterns
When to invoke
Use when the user asks to:
- "Security audit" / "harden this repo" / "check for vulnerabilities"
- "Find committed secrets" / "scan for credentials"
- "OWASP audit" / "Top 10 review"
- "SAST scan" / "SCA / dependency audit" / "IaC audit" / "DAST validation"
- "Set up continuous security scanning"
- Open / re-open a security incident triage on a codebase
Tooling Stack - Eight Practical Layers
Map every audit to these eight layers so coverage is explicit and gaps are visible.
| # | Layer | Purpose | Recommended Tools | |---|---|---|---| | 1 | Secrets scanning | Find exposed credentials in code & git history (regex + entropy) | gitleaks, trufflehog, detect-secrets, ggshield, ripgrep regex | | 2 | SAST (static) | Code-level vulns - injection, crypto, access control | semgrep, codeql, bandit (Python), gosec (Go), eslint-plugin-security (JS/TS), spotbugs + find-sec-bugs (Java), brakeman (Ruby), cppcheck / flawfinder (C/C++) | | 3 | SCA (deps) | Vulnerable / outdated / license-risky packages | pip-audit, safety, npm audit, yarn audit, govulncheck, mvn dependency-check, osv-scanner, grype, trivy fs, Snyk, Dependabot / Renovate | | 4 | Data-flow / taint | Track untrusted input through code to a dangerous sink | semgrep (mode: taint), CodeQL data-flow libs, Pysa (Python) | | 5 | Semantic / CPG | Behavior-aware deep analysis - privilege escalation, auth bypass | CodeQL (full DB build), Joern | | 6 | IaC scanning | Misconfig in Terraform / K8s / cloud / Dockerfiles | checkov, tfsec, terrascan, kube-linter, kubesec, kics, trivy config, hadolint | | 7 | Custom rules | Business-specific risks the off-the-shelf rules miss | Semgrep custom rules in .semgrep/, CodeQL custom queries in .github/codeql/ | | 8 | DAST (dynamic) | Validate runtime behavior on the deployed app | OWASP ZAP, Nuclei, Burp Suite, sqlmap (targeted) |
Accuracy Principles (apply to every layer)
- Data-flow > regex for code-level findings - taint analysis cuts false positives sharply.
- Combine multiple scanners - overlap = confidence; gaps = blind spots.
- Prioritize exploitability, not just presence - internet-reachable + sensitive data + auth boundary crossed = top.
- Tune rules - suppress justified false positives with file-scoped comments (
# nosec,// semgrep-ignore) and track them in an exception register. - Keep vuln databases fresh - refresh OSV / GitHub Advisory feeds at least daily; pin scanner versions in CI.
- Run continuously in CI/CD - every PR, every merge, every deploy. Block on Critical/High; warn on Medium.
Audit Workflow
Phase 1 - Secrets Scanning (regex + entropy + history)
Combine regex (catches known formats) with entropy and verified-secret scanning (catches unknown formats).
1a. Regex scan of the current tree
PATTERNS = [
r'(?i)(api[_-]?key|apikey)\s*[=:]\s*["\']?[\w\-]{20,}',
r'(?i)(secret|password|passwd|pwd)\s*[=:]\s*["\']?[^\s"\']{8,}',
r'(?i)(token|bearer)\s*[=:]\s*["\']?[\w\-\.]{20,}',
r'(?i)(aws_access_key_id)\s*[=:]\s*[A-Z0-9]{20}',
r'(?i)(aws_secret_access_key)\s*[=:]\s*[\w/+=]{40}',
r'ghp_[A-Za-z0-9]{36}', # GitHub PAT
r'xox[bpors]-[\w\-]{10,}', # Slack tokens
# Private-key headers - replace BEGIN_MARKER and KEY_MARKER with the literal
# text -----BEGIN and PRIVATEKEY respectively. Tokenized here
# so this rule file does not trip the detect-private-key pre-commit hook.
r'(RSA |EC |DSA )?',
r'jdbc:[\w]+://[^\s"]+', # JDBC connection strings
r'mongodb(\+srv)?://[^\s"]+', # MongoDB URIs
r'https?://[\w:]+@', # URLs with credentials
]
rg --no-heading -n '' --glob '!node_modules' --glob '!.git' --glob '!*.min.js'
1b. Entropy & verified-secret scan
gitleaks detect --redact --no-banner --report-format json --report-path gitleaks.json
trufflehog filesystem --json --no-update . > trufflehog.json
trufflehog git file://. --since-commit HEAD~500 --json > trufflehog-history.json
detect-secrets scan --all-files > .secrets.baseline
1c. Git history scan (deep)
git log --all --diff-filter=A -p -- '*.env' '*.pem' '*.key' 'credentials*' 'config/secrets*'
# Replace KEY_MARKER below with the literal text BEGINPRIVATEKEY
# (tokenized to avoid tripping the detect-private-key pre-commit hook in this rule file)
KEY_MARKER=""
git log --all -p -S "$KEY_MARKER" --
git log --all -p -S 'password' -- '*.py' '*.js' '*.yaml' '*.json' '*.yml'
gitleaks detect --log-opts="--all"
For each finding capture: commit hash, date, author, file path, whether the secret was later removed, and (if a tool reports it) whether the secret has been verified as live.
Exclude known false positives: test fixtures, documentation examples, placeholder values like your-key-here.
Phase 2 - Software Composition Analysis (SCA)
Most real-world vulns come from libraries. Run scanners per ecosystem, then prioritize by exploitability.
2a. Per-ecosystem dependency scanners
# Python
pip-audit --strict
safety check --full-report
# Node
npm audit --omit=dev
yarn audit --groups dependencies
# Go
govulncheck ./...
# Java / Maven / Gradle
mvn org.owasp:dependency-check-maven:check
gradle dependencyCheckAnalyze
# Ruby
bundle audit check --update
# Rust
cargo audit
# .NET
dotnet list package --vulnerable --include-transitive
# Multi-ecosystem
osv-scanner --recursive .
grype dir:.
trivy fs --scanners vuln,license,secret .
2b. License risk
trivy fs --scanners license .
# or per-ecosystem: pip-licenses, license-checker (Node), go-licenses
Flag copyleft / non-commercial / unknown licenses on dependencies that ship in the product.
2c. Prioritization
Rank findings in this order:
- Exploitability - known exploited (CISA KEV), reachable from network, reachable code path.
- Severity - CVSS >= 7.0 first, but use EPSS percentile when available.
- Fix availability - patched version exists -> fix now.
- Blast radius - service-tier, data sensitivity.
Output one row per finding: package@version, CVE/GHSA, CVSS, EPSS, fixed-in, license, ecosystem, severity, recommended action (upgrade / pin / replace / accept-with-justification).
Automate with Dependabot / Renovate for routine bumps; subscribe to GitHub Security Advisories per repo.
Phase 3 - SAST (Static Application Security Testing)
Three sub-layers: quick code-smell review, an OWASP Top 10 curated catalog, and tool-driven SAST.
3a. Code Smell Review (quick pass)
| Issue | What to Look For | |---|---| | Hardcoded URLs | Base URLs, API endpoints that vary by environment | | Hardcoded IDs | Cloud account IDs, org IDs, project IDs | | Debug flags | DEBUG = True, verbose logging in production code | | Insecure defaults | verify=False, allow_all_origins, disabled auth | | Missing input validation | User input passed directly to queries/commands | | Overly broad exceptions | except Exception: pass hiding errors |
3b. OWASP Top 10 (2021) Curated Checklist
For full operational depth (per-OWASP-category ripgrep snippets and fixes), see [references/owasp-top-10-playbook.md](references/owasp-top-10-playbook.md).
Quick pointers per category:
- A01 Broken Access Control - server-side authz on every route; CORS allow-list; IDOR ownership checks.
- A02 Cryptographic Failures - argon2/bcrypt for passwords; TLS verify on; AES-GCM with random IVs; KMS for keys; redact PII before logging.
- A03 Injection - parameterized queries; allow-list shell args; never
eval/exec; auto-escaping templates. - A04 Insecure Design - rate limits + lockouts; abuse cases; idempotency keys.
- A05 Security Misconfiguration - debug off in prod; least-privilege IAM; security headers; lock down management endpoints.
- A06 Vulnerable Components - covered by Phase 2 (SCA).
- A07 AuthN Failures - strong password policy (NIST 800-63B); HttpOnly/Secure/SameSite cookies; validate JWT alg/exp/iss/aud; MFA.
- A08 Software/Data Integrity Failures - safe yaml load; never pickle untrusted; sign artifacts (Sigstore/cosign); pin GitHub Actions by SHA.
- A09 Logging/Monitoring Failures - structured logs to SIEM; alerts on auth-failure spikes and admin actions.
- A10 SSRF - destination allow-list; block RFC1918/link-local/cloud-metadata; egress proxy with policy.
3c. Language-aware SAST tools
# Python
bandit -r . -ll -ii -f json -o bandit.json
# Go
gosec -fmt=json -out=gosec.json ./...
# JavaScript / TypeScript
eslint --ext .js,.jsx,.ts,.tsx --plugin security --rule 'security/detect-eval-with-expression:error' .
# Java
spotbugs -textui -include findsecbugs-include.xml -output spotbugs.xml target/classes
# Ruby on Rails
brakeman -o brakeman.json --format json
# C / C++
flawfinder --html . # or: cppcheck --enable=warning,style,performance,portability .
# PHP
psalm --taint-analysis
3d. Multi-language SAST: Semgrep
semgrep --config=p/security-audit \
--config=p/owasp-top-ten \
--config=p/secrets \
--config=p/cwe-top-25 \
--json --output=semgrep.json .
Run language-specific packs as needed: p/python, p/javascript, p/typescript, p/golang, p/java, p/ruby, p/csharp, p/terraform, p/dockerfile, p/kubernetes.
Phase 4 - Data-Flow / Taint Analysis
Tracks untrusted source -> dangerous sink; the single biggest precision boost over regex SAST.
Semgrep taint mode (lightweight, fast)
# .semgrep/sql-injection-taint.yaml
rules:
- id: sql-injection-taint
mode: taint
pattern-sources:
- patterns:
- pattern-either:
- pattern: request.args.get(...)
- pattern: request.json[...]
- pattern: request.form[...]
pattern-sinks:
- pattern-either:
- pattern: $CONN.execute($Q, ...)
- pattern: $CONN.cursor().execute($Q, ...)
pattern-sanitizers:
- pattern: sqlalchemy.text($Q).bindparams(...)
message: User input flows into a SQL query without parameterization
languages: [python]
severity: ERROR
Run: semgrep --config .semgrep/ .
CodeQL (deep, GitHub Advanced Security)
codeql database create db --language=python --source-root=.
codeql database analyze db codeql/python-queries:Security \
--format=sarifv2.1.0 --output=codeql.sarif
Use built-in queries python-queries:Security/CWE-089/SqlInjection.ql, etc., or write a custom data-flow query for an app-specific source/sink pair.
Pysa (Python, Meta)
pyre init && pyre analyze --no-verify --save-results-to .pysa-results
Phase 5 - Semantic / Code Property Graph (advanced)
For complex flaws - privilege escalation paths, auth bypass, multi-step exploits. More compute but high precision.
- CodeQL - full DB build per language; richest query library.
- Joern - open-source CPG; supports Java, JS, Python, C/C++, Go, Kotlin.
``bash joern-parse . joern --script audit.sc # run a query script over the CPG ``
Use cases: locate every path from an HTTP entry point that reaches an unauthenticated DB write; locate functions that read is_admin without first calling verify_session.
This phase is optional for small repos but strongly recommended for systems handling auth, payments, PII, or PHI.
Phase 6 - Infrastructure-as-Code (IaC) Scanning
If the repo contains Terraform, CloudFormation, Kubernetes manifests, Helm charts, or Dockerfiles.
# Multi-IaC, single tool
checkov --directory . --framework all --output json --output-file-path checkov.json
# Terraform-specific
tfsec . --format json --out tfsec.json
terrascan scan -d . -o json > terrascan.json
# Kubernetes
kube-linter lint .
kubesec scan deployment.yaml
kics scan -p . -o kics.json --report-formats json
# Container images / Dockerfiles
hadolint Dockerfile
trivy config .
trivy image
Common IaC findings to flag:
- S3 buckets with
public-read/AllUsersACL. - Security groups allowing
0.0.0.0/0on sensitive ports (22, 3389, 3306, 5432, 6379, 27017, 9200). - IAM policies with
Action: "*"orResource: "*". - K8s pods running as root (
runAsNonRoot: false), withoutreadOnlyRootFilesystem, withprivileged: true, withhostNetwork/hostPID. - K8s missing
NetworkPolicy. - Dockerfiles using
:latest, running as root, or leaking secrets viaARG. - Unencrypted storage / databases (
encrypted = false). - Secrets in env values instead of Secret refs / Vault / KMS.
Phase 7 - Custom Rules (business-specific)
Off-the-shelf rules miss internal frameworks, data classifications, and house auth conventions. This is where the most accurate detections come from.
Place rules at:
- Semgrep:
.semgrep/.yaml- picked up bysemgrep --config .semgrep/. - CodeQL:
.github/codeql/custom-queries/- referenced from CodeQL workflow.
Examples to author for any non-trivial repo:
- Internal auth decorator missing - every handler in
routes/must have@require_auth(scope=...)or@public_endpoint. - PII fields without redaction - any logger call with a known PII field name (
email,ssn,phone,dob,card_number) must wrap it inredact(). - Internal SDK misuse - internal HTTP client
acme_http.get()must always passtimeout=andverify=True. - Forbidden imports - block
import requestsin modules that should use the internal client; blockimport picklein services that accept external input. - Tenant-scope check - every DB query in a multi-tenant service must include a
tenant_idfilter.
Sample Semgrep custom rule: see [references/semgrep-custom-rules.md](references/semgrep-custom-rules.md).
Phase 8 - DAST Validation (optional, runtime)
Validates exploitability of SAST findings against the running app. Use against staging, never prod-without-isolation.
# OWASP ZAP baseline (passive, fast)
docker run -t owasp/zap2docker-stable zap-baseline.py \
-t https://staging.example.com -J zap-baseline.json
# ZAP full scan (active, slow, thorough)
docker run -t owasp/zap2docker-stable zap-full-scan.py \
-t https://staging.example.com -J zap-full.json
# Nuclei (template-driven, very fast)
nuclei -u https://staging.example.com -severity critical,high,medium \
-json -o nuclei.json
# Targeted: sqlmap on a specific suspect endpoint
sqlmap -u "https://staging.example.com/search?q=1" --batch --risk=2 --level=3
Use DAST to confirm SAST/CodeQL findings (especially A01, A03, A07, A10) and to catch runtime-only issues - TLS config, header drift, error-page leakage, session fixation.
Phase 9 - .gitignore Audit
Verify these entries exist:
# Secrets & local config
.env
.env.*
*.pem
*.key
credentials.json
secrets.yaml
setup-env.sh
run-local.sh
# Scanner output
gitleaks.json
trufflehog*.json
semgrep.json
bandit.json
gosec.json
checkov.json
tfsec.json
trivy*.json
codeql.sarif
.pysa-results/
# IDE & OS
.DS_Store
.idea/
.vscode/settings.json
# Build artifacts
__pycache__/
node_modules/
dist/
*.pyc
Phase 10 - Generate Remediation
.env.template
# Required - GitHub personal access token with repo scope
GITHUB_TOKEN=
# Require
…
## Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- **Author:** [d-padmanabhan](https://github.com/d-padmanabhan)
- **Source:** [d-padmanabhan/agent-engineering-handbook](https://github.com/d-padmanabhan/agent-engineering-handbook)
- **License:** MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.