managed-pentesting-with-strix

managed-pentesting-with-strix is a skill for Claude Code, Codex from wedabro/bro-skills. It costs 139 tokens per session (2,200 once invoked), scanned A, a copy of managed-pentesting-with-strix, MIT.

A managed web-application and API penetration-testing service accessed through Strix’s REST API. Penetration testing is a security check that looks for exploitable weaknesses; the scans run on Strix’s infrastructure.

In plain words
What is it for?
Use it to register websites or code repositories, launch and monitor security scans, review vulnerabilities, export SARIF results, and download compliance reports.
Why use it?
It avoids the need to install local scanning infrastructure or provide a local language-model setup, while keeping scan results and reports in a team dashboard.

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 register websites or code repositories, launch and monitor security scans, review vulnerabilities, export SARIF results, and download compliance reports.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/wedabro/bro-skills/managed-pentesting-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 managed-pentesting-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 managed-pentesting-with-strix

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/wedabro/bro-skills/managed-pentesting-with-strix"><img src="https://agentmods.dev/badge/skills/wedabro/bro-skills/managed-pentesting-with-strix.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 139 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,200 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 2 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 95% 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.00139 $0.02200
Opus 5 $0.00069 $0.01100
Sonnet 5 $0.00028 $0.00440
Haiku 4.5 $0.00014 $0.00220

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

Security

Grade A, and why

managed-pentesting-with-strix scanned grade A with 2 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 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.

Sends data to an external URLlowData exfiltration

A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.

scan_id=$(curl -sS "$BASE/scans" "${auth[@]}" -H "Content-Type: application/json" -d '{

Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.

Makes network callslowCapability

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

curl -sS "$BASE/domains" "${auth[@]}" -H "Content-Type: application/json" \
Origin

This is a copy

95% identical to managed-pentesting-with-strix — 295 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/managed-pentesting-with-strix/SKILL.md · 153 lines

How it starts

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

Strix Cloud API (managed, no local infra)

Use this when you want Strix's autonomous pentesting without running Docker or an LLM yourself — the scan runs on Strix's infrastructure and results are tracked in a team dashboard. This is the right choice in sandboxed/hosted agent and CI environments, for teams, and for scheduled/continuous testing (downloadable PDF/DOCX reports are an Enterprise-plan feature). For fully local, free, air-gapped, or BYO-LLM runs, use the open-source CLI in the penetration-testing-with-strix skill instead — both share the same engine and SARIF output, so you can mix them.

Full reference: docs.app.strix.ai · OpenAPI: https://docs.app.strix.ai/openapi.json

Setup

  • Base URL: https://app.strix.ai/api/v1

  • Auth: every request sends Authorization: Bearer <token>. Tokens are org-scoped.

  • Get a token: the user creates one in the dashboard at Settings → API Access (app.strix.ai). Ask them for it; never hardcode, log, or commit it. Store it in an env var or the CI secret store.

  • Scopes (least-privilege): assign only what the integration needs and rotate regularly:

    Scope Grants
    scans:read / scans:write list/read/report scans · create/rerun/cancel scans
    vulnerabilities:read / :write read findings · update status & notes
    assets:read / :write read domains/repos · register/update them
    schedules:read / :write read schedules · create/trigger recurring scans
    pr_reviews:write trigger PR security reviews
    webhooks:read / :write manage webhook subscriptions
    tokens:write create/revoke API tokens
export STRIX_API_TOKEN="<token>"
BASE=https://app.strix.ai/api/v1
auth=(-H "Authorization: Bearer $STRIX_API_TOKEN")

All examples use jq to parse JSON. Handle HTTP errors: 401 bad/expired token, 402 out of credits, 403 scope/plan-tier limit, 422 validation error.

1. Register the target as an asset

Read the full file on GitHub · 153 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 · 153 lines · 139 tokens per session scan A 0bd5894a17ac

Subscribe to this mod's changes

managed-pentesting-with-strix is a skill published in the GitHub repository wedabro/bro-skills (2 stars, last pushed 14d ago), licensed MIT. It adds 139 tokens to every session and 2,200 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 2 findings (sends data to an external url, makes network calls). It is 95% identical to managed-pentesting-with-strix, differing in 295 lines, and is treated as a copy.