SkillVaultskills Browse all 500 skills

Security · Version 2.1.0 · Reviewed 2026-08-02

Security Audit Agent

Find and prioritize exploitable risk in vulnerability review and authorization gaps with evidence, explicit trade-offs, and a verification plan.

4 method steps 7 documented failure modes 5 diagnostic checks 7 quality gates

Reviews code and configuration for injection, authentication, authorization, secret handling, and data exposure risks.

₹99 one-time

Get this skill archive

What this skill helps you do

  • Vulnerability review
  • Authorization gaps
  • Secret handling

How Security Audit Agent works

You provide

Code, configuration, data flows, and trust boundaries

It inspects

Authorization at the data layer and injection sinks

It decides

Findings ranked by reachability, not scanner severity

You verify

Re-attempt the exploit path and check access logs

What it checks first

Security Audit Skill reviews code and configuration for injection, authentication, authorization, secret handling, and data exposure risks. Use it when the work involves Vulnerability review, Authorization gaps, Secret handling.

  1. Trust boundaries first: where data crosses from untrusted to trusted, since every injection class lives on that line.
  2. Authorization checks at the data-access layer rather than only at the route, because internal callers bypass routes.
  3. Whether secrets appear in source, logs, error messages, or client bundles.
  4. Cryptography choices: custom implementations, ECB mode, static IVs, and non-constant-time comparison.
  5. Whether user-controlled identifiers are used directly in object lookups without an ownership check.

Failure modes it recognizes

  • Insecure direct object reference — the endpoint authenticates the user but never verifies the record belongs to them.
  • SQL injection surviving because one query path uses string interpolation while the rest use parameters.
  • Server-side request forgery through a user-supplied URL used for a fetch, reaching cloud metadata endpoints.
  • JWT verification that decodes without verifying the signature, or accepts the `none` algorithm.
  • Mass assignment binding request fields directly to a model, allowing privilege fields to be set.
  • Path traversal from an unsanitized filename reaching a filesystem read.
  • Timing-variable comparison of tokens allowing incremental discovery.

Answers it will reject

  • Reporting a scanner finding without an exploit path — severity without reachability wastes remediation capacity.
  • Relying on client-side validation as a control, which is a usability feature and not a security boundary.
  • Rotating a leaked credential without checking access logs for use before rotation.
  • Blocking a specific payload rather than fixing the class of vulnerability, which is defeated by the next encoding.

Decision rules it applies

  • Rank findings by exploitability and blast radius, not by scanner severity label.
  • Any finding reported as exploitable must include the concrete path from input to impact.
  • Prefer removing the dangerous capability over filtering input into it.
  • If authentication and authorization are handled in different layers, assume a gap exists until proven otherwise.

Evidence it asks for

  • Trace one concrete request from untrusted input to the sink, naming each file and function on the path.
  • Confirm parameterization by inspecting the actual query construction, not the ORM call site.
  • Check dependency advisories against the resolved lockfile version, not the declared range.

The method inside

  1. Map the artifact, actors, boundaries, and invariants relevant to vulnerability review.
  2. Trace concrete failure or abuse paths for authorization gaps; do not report checklist items without a mechanism.
  3. Prioritize secret handling findings by impact, likelihood, confidence, and cost of correction.
  4. Recommend the smallest defensible change, then define how an independent reviewer can verify it.

Deliverables

  • Vulnerability review assessment
  • Authorization gaps decision and action plan
  • Secret handling verification checklist

Evidence requirements

  • Code, configuration, data flows, and trust boundaries
  • Identity, authorization, and deployment context
  • Threat model, controls, and known assumptions

Quality gates

  • Every material claim traces to supplied evidence or is labeled as a hypothesis.
  • The response follows the declared deliverable contract.
  • No execution, access, measurement, or verification is invented.
  • Secrets and personal data are redacted rather than repeated.
  • The user receives a concrete independent verification step.
  • The relevant failure modes in this domain were considered rather than only the reported symptom.
  • No listed anti-pattern was recommended as a solution.

Example task

Input

Audit this Express service for authorization problems before we expose it externally.

Expected output

The route checks authentication but never verifies resource ownership, so any authenticated user can read another tenant record by changing the ID...

Boundaries and compatibility

Ideal for

  • Vulnerability review: produce a decision or artifact grounded in supplied evidence.
  • Authorization gaps: produce a decision or artifact grounded in supplied evidence.
  • Secret handling: produce a decision or artifact grounded in supplied evidence.

Out of scope

  • Authorizing offensive actions against systems without permission
  • Reporting theoretical issues as exploitable without a path

Agent compatibility

  • GitHub Copilot custom agents
  • Claude Agent Skills / SKILL.md
  • Any instruction-following chat model

Tool policy: Advisory by default. No tools are assumed. If the host provides tools, use read-only evidence gathering unless the user explicitly approves a scoped write or execution action.