security-auditor-saas

security-auditor-saas is a skill for Claude Code, Codex from Aizaz-Noor/Agent-Startup-Skills. It costs 53 tokens per session (751 once invoked), scanned A, original, MIT.

A code-review agent that checks an application for common security problems, including the OWASP Top 10, a widely used list of web-application risks. It also looks for exposed secrets and unsafe handling of passwords, sessions, user input, and permissions.

In plain words
What is it for?
Use it for security audits, vulnerability checks, OWASP reviews, penetration-test preparation, and application hardening.
Why use it?
It helps find security weaknesses before deployment, when they are easier to fix and less likely to expose data or allow unwanted access.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it for security audits, vulnerability checks, OWASP reviews, penetration-test preparation, and application hardening.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aizaz-noor/agent-startup-skills/security-auditor-saas
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Aizaz-Noor/Agent-Startup-Skills --skill security-auditor-saas
Clone the repo
git clone --depth 1 https://github.com/Aizaz-Noor/Agent-Startup-Skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for security-auditor-saas

README.md
[![agentmods](https://agentmods.dev/badge/skills/aizaz-noor/agent-startup-skills/security-auditor-saas/github.svg)](https://agentmods.dev/skills/aizaz-noor/agent-startup-skills/security-auditor-saas)
Your own site
<a href="https://agentmods.dev/skills/aizaz-noor/agent-startup-skills/security-auditor-saas"><img src="https://agentmods.dev/badge/skills/aizaz-noor/agent-startup-skills/security-auditor-saas/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for security-auditor-saas

Your own site · 80×15
<a href="https://agentmods.dev/skills/aizaz-noor/agent-startup-skills/security-auditor-saas"><img src="https://agentmods.dev/badge/skills/aizaz-noor/agent-startup-skills/security-auditor-saas.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 53 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 751 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00053 $0.00751
Opus 5 $0.00026 $0.00376
Sonnet 5 $0.00011 $0.00150
Haiku 4.5 $0.00005 $0.00075

Measured 12d ago against content hash 1a63c46ef01b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

security-auditor-saas scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

skills/security-auditor-saas/SKILL.md · 92 lines

How it starts

The opening of the file, as written. The whole thing — 92 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Security Auditor — Hardening Agent

Purpose

Identify and remediate security vulnerabilities before the product is deployed. Prevent data breaches, unauthorized access, and common attack vectors.

When to Use

  • After code and tests are complete
  • Before deployment planning
  • When the user asks "is this code secure?"

Audit Checklist (OWASP Top 10 Aligned)

1. Injection (SQL, NoSQL, Command)

  • All database queries use parameterized statements or ORM
  • No string concatenation in queries
  • User input is never passed directly to system commands

2. Broken Authentication

  • Passwords are hashed with bcrypt/argon2 (never plain text, never MD5/SHA)
  • Sessions expire after a reasonable timeout
  • Login has rate limiting or brute-force protection
  • Password reset tokens are single-use and time-limited

3. Sensitive Data Exposure

  • No secrets in source code (API keys, passwords, tokens)
  • .env files are in .gitignore
  • HTTPS is enforced in production
  • Sensitive data is not logged

4. Broken Access Control

  • Users cannot access other users' data by changing IDs in URLs
  • Admin routes are protected with role checks
  • API endpoints verify the requesting user's permissions

5. Security Misconfiguration

  • CORS is configured to allow only known origins
  • Debug mode is disabled in production config
  • Default credentials are changed
  • Error messages do not expose stack traces to users

6. Cross-Site Scripting (XSS)

  • All user-generated content is escaped/sanitized before rendering
  • Content-Security-Policy headers are set
  • React/Vue/Angular auto-escaping is not bypassed (no dangerouslySetInnerHTML)

7. Cross-Site Request Forgery (CSRF)

  • CSRF tokens are used on state-changing forms
  • SameSite cookie attribute is set

8. Insecure Dependencies

  • No known vulnerable dependencies (check npm audit / pip audit)
  • Dependencies are pinned to specific versions

Read the full file on GitHub · 92 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 92 lines · 53 tokens per session scan A 1a63c46ef01b

Subscribe to this mod's changes

security-auditor-saas is a skill published in the GitHub repository Aizaz-Noor/Agent-Startup-Skills (2 stars, last pushed 4mo ago), licensed MIT. It adds 53 tokens to every session and 751 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

improve-codebase-architecture

Scan a codebase for deepening opportunities, present them as a visual HTML report, then grill through whichever one you pick.

RainMT-dv/skills-pack · 32 tokens

code-review

Review the changes since a fixed point (commit, branch, tag, or merge-base) along two axes — Standards (does the code follow this repo's documented coding standards?) and Spec (does the code match what the originating issue/PRD asked for?). Runs both reviews in parallel sub-agents and reports them side by side. Use…

RainMT-dv/skills-pack · 96 tokens

caveman-review

Ultra-compressed code review comments. Cuts noise from PR feedback while preserving the actionable signal. Each comment is one line: location, problem, fix. Use when user says "review this PR", "code review", "review the diff", "/review", or invokes /caveman-review. Auto-triggers when reviewing pull requests.

RainMT-dv/skills-pack · 72 tokens

coderabbit

AI-powered automated code review, PR summarization, and interactive developer feedback / Review kode otomatis berbasis AI, ringkasan PR, dan umpan balik developer interaktif.

roedyrustam/vibes-plug · 38 tokens

anti-slop

Comprehensive Anti-AI Slop enforcement guide. Updated to include token efficiency and code gardening / Panduan penegakan anti-AI slop komprehensif. Diperbarui dengan efisiensi token dan perawatan kode.

roedyrustam/vibes-plug · 52 tokens

go-code-reviewer

Review Go code with a defect-first approach using repository policy (constitution.md first, then AGENTS.md fallback). Use for code review, PR review, quality checks, risk analysis, and regression detection.

johnqtcg/awesome-skills · 45 tokens