security-review

security-review is a skill for Claude Code from imMamdouhaboammar/get-fable. It costs 18 tokens per session (2,230 once invoked), scanned A, a copy of security-review, MIT.

A focused review of code changes for likely security vulnerabilities, including common web flaws and exposed credentials.

In plain words
What is it for?
Use it to inspect a branch or pull request for issues such as injection, cross-site scripting, request forgery, server-side request forgery, broken access controls, or leaked secrets.
Why use it?
It narrows review to newly introduced issues that could enable unauthorized access, data exposure, or system compromise, while filtering out low-confidence concerns.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the get-fable plugin — 78 skills, 1 agent, 5 hooks shipped together

Good fit Use it to inspect a branch or pull request for issues such as injection, cross-site scripting, request forgery, server-side request forgery, broken access controls, or leaked secrets.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/immamdouhaboammar/get-fable/security-review
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 imMamdouhaboammar/get-fable --skill security-review
Clone the repo
git clone --depth 1 https://github.com/imMamdouhaboammar/get-fable

Made for: Claude Code.

Or install get-fable, the plugin that ships this one along with the rest of its 78 skills, 1 agent, 5 hooks.

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-review

README.md
[![agentmods](https://agentmods.dev/badge/skills/immamdouhaboammar/get-fable/security-review/github.svg)](https://agentmods.dev/skills/immamdouhaboammar/get-fable/security-review)
Your own site
<a href="https://agentmods.dev/skills/immamdouhaboammar/get-fable/security-review"><img src="https://agentmods.dev/badge/skills/immamdouhaboammar/get-fable/security-review/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-review

Your own site · 80×15
<a href="https://agentmods.dev/skills/immamdouhaboammar/get-fable/security-review"><img src="https://agentmods.dev/badge/skills/immamdouhaboammar/get-fable/security-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 18 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,230 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 92% copy Near-identical to another mod 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.00018 $0.02230
Opus 5 $0.00009 $0.01115
Sonnet 5 $0.00004 $0.00446
Haiku 4.5 $0.00002 $0.00223

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

Security

Grade A, and why

security-review 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 11d 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

This is a copy

92% identical to security-review — 3 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

assets/skills/claude-code/security-review/SKILL.md · 192 lines

How it starts

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

You are a senior security engineer conducting a focused security review of the changes on this branch.

GIT STATUS:

<git status output>

FILES MODIFIED:

<list of modified files>

COMMITS:

<commit log>

DIFF CONTENT:

<full diff>

Review the complete diff above. This contains all code changes in the PR.

OBJECTIVE: Perform a security-focused code review to identify HIGH-CONFIDENCE security vulnerabilities that could have real exploitation potential. This is not a general code review - focus ONLY on security implications newly added by this PR. Do not comment on existing security concerns.

CRITICAL INSTRUCTIONS:

  1. MINIMIZE FALSE POSITIVES: Only flag issues where you're >80% confident of actual exploitability
  2. AVOID NOISE: Skip theoretical issues, style concerns, or low-impact findings
  3. FOCUS ON IMPACT: Prioritize vulnerabilities that could lead to unauthorized access, data breaches, or system compromise
  4. EXCLUSIONS: Do NOT report the following issue types:
    • Denial of Service (DOS) vulnerabilities, even if they allow service disruption
    • Secrets or sensitive data stored on disk (these are handled by other processes)
    • Rate limiting or resource exhaustion issues

SECURITY CATEGORIES TO EXAMINE:

Input Validation Vulnerabilities:

  • SQL injection via unsanitized user input
  • Command injection in system calls or subprocesses
  • XXE injection in XML parsing
  • Template injection in templating engines
  • NoSQL injection in database queries
  • Path traversal in file operations

Authentication & Authorization Issues:

  • Authentication bypass logic
  • Privilege escalation paths
  • Session management flaws
  • JWT token vulnerabilities
  • Authorization logic bypasses

Crypto & Secrets Management:

  • Hardcoded API keys, passwords, or tokens
  • Weak cryptographic algorithms or implementations
  • Improper key storage or management
  • Cryptographic randomness issues
  • Certificate validation bypasses

Injection & Code Execution:

  • Remote code execution via deseralization
  • Pickle injection in Python
  • YAML deserialization vulnerabilities
  • Eval injection in dynamic code execution
  • XSS vulnerabilities in web applications (reflected, stored, DOM-based)

Data Exposure:

  • Sensitive data logging or storage
  • PII handling violations
  • API endpoint data leakage
  • Debug information exposure

Additional notes:

  • Even if something is only exploitable from the local network, it can still be a HIGH severity issue

ANALYSIS METHODOLOGY:

Phase 1 - Repository Context Research (Use file search tools):

  • Identify existing security frameworks and libraries in use
  • Look for established secure coding patterns in the codebase
  • Examine existing sanitization and validation patterns
  • Understand the project's security model and threat model

Phase 2 - Comparative Analysis:

  • Compare new code changes against existing security patterns
  • Identify deviations from established secure practices
  • Look for inconsistent security implementations
  • Flag code that introduces new attack surfaces

Phase 3 - Vulnerability Assessment:

  • Examine each modified file for security implications
  • Trace data flow from user inputs to sensitive operations
  • Look for privilege boundaries being crossed unsafely
  • Identify injection points and unsafe deserialization

REQUIRED OUTPUT FORMAT:

You MUST output your findings in markdown. The markdown output should contain the file, line number, severity, category (e.g. sql_injection or xss), description, exploit scenario, and fix recommendation.

For example:

Vuln 1: XSS: foo.py:42

  • Severity: High
  • Description: User input from username parameter is directly interpolated into HTML without escaping, allowing reflected XSS attacks
  • Exploit Scenario: Attacker crafts URL like /bar?q=alert(document.cookie) to execute JavaScript in victim's browser, enabling session hijacking or data theft
  • Recommendation: Use Flask's escape() function or Jinja2 templates with auto-escaping enabled for all user inputs rendered in HTML

Read the full file on GitHub · 192 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. 11d ago First seen · 192 lines · 18 tokens per session scan A 474e4932863c

Subscribe to this mod's changes

security-review is a skill published in the GitHub repository imMamdouhaboammar/get-fable (4 stars, last pushed yesterday), licensed MIT. It adds 18 tokens to every session and 2,230 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. It is 92% identical to security-review, differing in 3 lines, and is treated as a copy.

Related

Other skills, from other repositories

reviewing-changes

Use when a review package asks you to review a plan step's change set (todo.startReview): you are the REVIEWER, not the author. How to judge an agent-written diff, file findings with addreviewcomment, and settle with exactly one reviewverdict.

JetBrains/thinkrail · 59 tokens

reflecting-findings

Use when a reflection package hands you another agent's review findings to verify (before they become a fix request): you are the REFLECTOR, an independent skeptic. Judge each finding against the real code and settle it with reflectfinding — kept or refuted.

JetBrains/thinkrail · 58 tokens

reviewing

Claude-on-Claude code review protocol — reviews implementation against spec requirements and code quality standards.

LucasDuys/forge · 19 tokens

code

Use BEFORE generating, refactoring, reviewing, or debugging code. Trigger phrases include "write a function/script/class for X", "review this code/diff/PR", "refactor this", "debug this error", "is this implementation correct", "what's wrong with this code", "improve this code", "translate from X to Y", or any prompt…

ejentum/ejentum-mcp · 192 tokens

improve-codebase-architecture

Find deepening opportunities in a codebase, informed by the domain language in CONTEXT.md and the decisions in docs/adr/. Use when the user wants to improve architecture, find refactoring opportunities, consolidate tightly-coupled modules, or make a codebase more testable and AI-navigable.

berekvolgyipeter/dotclaude · 68 tokens

omh-code-review

This is a Hermes-native code-review workflow skill.

rlaope/oh-my-hermes · 46 tokens