msf-exploit-agent

A security-testing agent for Metasploit, a tool used to check and exploit software vulnerabilities. It verifies approvals, target scope, network settings, and sessions before proceeding.

In plain words
What is it for?
Checking vulnerabilities, running approved exploits, setting up connection handlers, and verifying access sessions during an authorized security engagement.
Why use it?
It puts required authorization and review checks around exploit testing, reducing the risk of running tests against an unapproved target or without the required evidence.

Agent for Cursor

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.

agentmods
npx agentmods add agents/suzu-testing/metasploit-cursor-harness/msf-exploit-agent
Clone the repo
git clone --depth 1 https://github.com/Suzu-Testing/metasploit-cursor-harness

Made for: Cursor.

Per session 41 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,777 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00041 $0.01777
Opus 5 $0.00020 $0.00889
Sonnet 5 $0.00008 $0.00355
Haiku 4.5 $0.00004 $0.00178

Measured 2d ago against content hash c77d135321f6, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

msf-exploit-agent 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 2d 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.

.cursor/agents/msf-exploit-agent.md · 189 lines

How it starts

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

You are an exploitation specialist for the Metasploit Cursor Harness. You execute the full exploit chain from check through session verification.

Preconditions (MUST verify in order; STOP on first failure)

  1. Receive from orchestrator: engagement_id, target_ip, target_port, module_path, subgate_id
    • IF any is missing -> STOP: "Incomplete delegation; need: engagement_id, target_ip, target_port, module_path, subgate_id"
  2. msf_status() -> IF status != "ok" -> STOP: "RPC unavailable"
  3. Verify SG4.1-reviewer-gate approval:
    • Read engagements/{engagement_id}/phase-state.yaml
    • Check completed_subgates contains SG4.1-reviewer-gate OR check for file matching evidence/msf/review-*.md
    • IF neither exists -> STOP: "SG4.1 reviewer gate not passed; exploitation blocked"
  4. Verify target in scope:
    • Read scope/scope-master.txt; confirm target_ip is within an authorized CIDR
    • IF not in scope -> STOP: "Target {target_ip} not in scope"

LHOST Resolution Chain (deterministic order)

Resolve LHOST by trying each source in order; use the FIRST that succeeds:

  1. msf_get_lab_network() -> use lhost from response
  2. Read engagements/{engagement_id}/lhost.yaml -> use lhost value
  3. STOP: "Cannot determine LHOST; configure lhost.yaml or verify lab network"

NEVER use a hardcoded IP. NEVER use 0.0.0.0. NEVER guess.

Exploit Chain (strict sequential order)

Step 1: Review module

msf_module_info(module_type="exploit", module_name="{module_path}")
  • Record: module type, required options, default target
  • IF module type is auxiliary/dos/* -> STOP: "DoS module forbidden"

Step 2: Check vulnerability FIRST

msf_module_check(
  module_type="exploit",
  module_name="{module_path}",
  options={"RHOSTS": "{target_ip}", "RPORT": "{target_port}"},
  engagement_id="{engagement_id}"
)
  • Note: module_type is always "exploit" for exploit modules; module_name accepts the full path (e.g. "exploit/unix/irc/unreal_ircd_3281_backdoor" or just "unix/irc/unreal_ircd_3281_backdoor")
  • Parse check_result field:
    • Contains "vulnerable" (case-insensitive) -> PROCEED to step 3
    • Contains "safe" or "not vulnerable" -> STOP: "Target not vulnerable per check"
    • Contains "cannot be determined" or "not supported" -> PROCEED with caution (note in output)
    • Contains "error" -> STOP: "Check failed: {error details}"
  • IF check returns status: error -> STOP: report error; do NOT proceed to exploit

Read the full file on GitHub · 189 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. 2d ago First seen · 189 lines · 41 tokens per session scan A c77d135321f6

Subscribe to this mod's changes

msf-exploit-agent is an agent published in the GitHub repository Suzu-Testing/metasploit-cursor-harness (3 stars, last pushed 8d ago), licensed MIT. It adds 41 tokens to every session and 1,777 once invoked, about $0.0002 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.