fix-security-vulnerabilities-with-strix

fix-security-vulnerabilities-with-strix is a skill for Claude Code, Codex from wedabro/bro-skills. It costs 124 tokens per session (1,422 once invoked), scanned A, a copy of fix-security-vulnerabilities-with-strix, MIT.

A workflow for repairing security vulnerabilities that Strix has confirmed with a working exploit. It covers both locally run scans and scans from Strix's hosted service.

In plain words
What is it for?
Use it to sort findings by severity, reproduce proof-of-concept exploits, fix issues such as injection, cross-site scripting, server-side request forgery, and access-control flaws, then re-scan the application.
Why use it?
It turns security reports into targeted code changes and checks the fix by running the exploit again, helping avoid patches that only hide the symptom.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

Good fit Use it to sort findings by severity, reproduce proof-of-concept exploits, fix issues such as injection, cross-site scripting, server-side request forgery, and access-control flaws, then re-scan the application.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/wedabro/bro-skills/fix-security-vulnerabilities-with-strix
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 wedabro/bro-skills --skill fix-security-vulnerabilities-with-strix
Clone the repo
git clone --depth 1 https://github.com/wedabro/bro-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 fix-security-vulnerabilities-with-strix

README.md
[![agentmods](https://agentmods.dev/badge/skills/wedabro/bro-skills/fix-security-vulnerabilities-with-strix/github.svg)](https://agentmods.dev/skills/wedabro/bro-skills/fix-security-vulnerabilities-with-strix)
Your own site
<a href="https://agentmods.dev/skills/wedabro/bro-skills/fix-security-vulnerabilities-with-strix"><img src="https://agentmods.dev/badge/skills/wedabro/bro-skills/fix-security-vulnerabilities-with-strix/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 fix-security-vulnerabilities-with-strix

Your own site · 80×15
<a href="https://agentmods.dev/skills/wedabro/bro-skills/fix-security-vulnerabilities-with-strix"><img src="https://agentmods.dev/badge/skills/wedabro/bro-skills/fix-security-vulnerabilities-with-strix.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 124 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,422 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00124 $0.01422
Opus 5 $0.00062 $0.00711
Sonnet 5 $0.00025 $0.00284
Haiku 4.5 $0.00012 $0.00142

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

Security

Grade A, and why

fix-security-vulnerabilities-with-strix scanned grade A with 1 finding 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 10d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

new_id=$(curl -sS "$BASE/scans/$scan_id/rerun" "${auth[@]}" -X POST | jq -r .scan_id)
Origin

This is a copy

92% identical to fix-security-vulnerabilities-with-strix — 6 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.

.agents/skills/fix-security-vulnerabilities-with-strix/SKILL.md · 78 lines

How it starts

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

Fix Strix findings and verify

Turn validated Strix findings into minimal, correct fixes — and prove they work by re-scanning.

1. Triage

Get the findings from wherever the scan ran:

  • OSS CLI — artifacts in strix_runs/<run-name>/:
    • vulnerabilities/*.md — one finding per file: description, severity, PoC steps or script, affected code locations, remediation guidance.
    • vulnerabilities.json — the same findings as JSON (ids, severity, CWE/CVE, code_locations with fix_before/fix_after suggestions when available).
  • Cloud (app.strix.ai) — fetch the scan's vulnerabilities[] via GET /api/v1/scans/{scanId} (or GET /api/v1/vulnerabilities org-wide). Each carries severity, cwe, endpoint, method, impact, technical_analysis, poc_description, poc_script_code and, for code findings, code_file/code_diff/code_before/code_after. See the managed-pentesting-with-strix skill for auth.

Order work by severity: critical → high → medium → low. Every Strix finding was validated with a working proof-of-concept, so do not dismiss findings as false positives without re-testing the PoC yourself.

2. Fix

For each finding:

  1. Reproduce it with the PoC from the finding file when feasible.
  2. Fix the root cause, not the specific payload (e.g. parameterize all queries, don't blocklist one string; enforce authorization in the handler, don't hide the endpoint).
  3. Prefer the framework's built-in defense (ORM parameterization, template auto-escaping, CSRF middleware, centralized authz) over ad-hoc sanitization.
  4. Keep the diff minimal and apply the repo's existing patterns. Finding files often include fix_before/fix_after snippets — use them as a starting point, not verbatim.

Common finding classes and expected fixes: injection → parameterization/escaping at the sink; IDOR/broken access control → object-level authorization checks; SSRF → allowlist + block internal ranges; XSS → context-aware output encoding + CSP; secrets exposure → rotate the secret AND remove it from code/history; auth issues → fix the server-side check (never client-side).

Read the full file on GitHub · 78 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. 10d ago First seen · 78 lines · 124 tokens per session scan A 3396bb754991

Subscribe to this mod's changes

fix-security-vulnerabilities-with-strix is a skill published in the GitHub repository wedabro/bro-skills (2 stars, last pushed 15d ago), licensed MIT. It adds 124 tokens to every session and 1,422 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). It is 92% identical to fix-security-vulnerabilities-with-strix, differing in 6 lines, and is treated as a copy.