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.
npx agentmods add skills/jessefmoore/offensive-claude-code/netexecnpx skills add jessefmoore/offensive-claude-code --skill netexecgit clone --depth 1 https://github.com/jessefmoore/offensive-claude-codeWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00000 | $0.09524 |
| Opus 5 | $0.00000 | $0.04762 |
| Sonnet 5 | $0.00000 | $0.01905 |
| Haiku 4.5 | $0.00000 | $0.00952 |
Grade C, and why
netexec scanned grade C 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 yesterday.
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.
Harvests environment variableshighData exfiltration
Enumerating or grepping the environment for keys collects credentials unrelated to what the mod says it does.
# 7. Dump credentials (if admin) How it starts
The opening of the file, as written. The whole thing — 988 lines — stays where its author put it; the contents beside it link to each section on GitHub.
NetExec (nxc) Skill
Overview
NetExec (nxc) is a network service exploitation tool for assessing large networks. It supports SMB, LDAP, WinRM, MSSQL, SSH, FTP, RDP, WMI, NFS, and VNC protocols.
Source: https://www.netexec.wiki/ | GitHub: https://github.com/Pennyw0rth/NetExec
Global Syntax & Options
nxc [-h] [-t THREADS] [--timeout TIMEOUT] [--jitter INTERVAL] [--no-progress] [--verbose] [--debug] [--version]
{smb,ssh,ldap,ftp,wmi,winrm,rdp,vnc,mssql,nfs} ...
# View protocol options
nxc <protocol> --help
# View available modules for a protocol
nxc <protocol> -L
Target Formats
nxc <protocol> hostname.domain.local
nxc <protocol> 192.168.1.0/24
nxc <protocol> 192.168.1.0 192.168.0.2
nxc <protocol> 192.168.1.0-28 10.0.0.1-67
nxc <protocol> ~/targets.txt
Authentication
Credentials
# Password
nxc <protocol> <target> -u username -p password
# NT hash (pass-the-hash)
nxc <protocol> <target> -u username -H 'NTHASH'
nxc <protocol> <target> -u username -H 'LM:NT'
# Special chars / dashes in creds
nxc <protocol> <target> -u username -p 'October2022!'
nxc <protocol> <target> -u='-username' -p='-October2022'
# From database by credential ID
nxc <protocol> <target> -id <cred_id>
# Multi-domain (FILE format: DOMAIN\user per line)
nxc <protocol> <target> -u FILE -p password
Brute Force & Password Spraying
# Multiple users/passwords inline
nxc <protocol> <target> -u user1 user2 -p Summer18
nxc <protocol> <target> -u user1 -p pass1 pass2 pass3
# From files
nxc <protocol> <target> -u users.txt -p passwords.txt
nxc <protocol> <target> -u users.txt -H hashes.txt
# No bruteforce (1 user = 1 password, paired)
nxc <protocol> <target> -u users.txt -p passwords.txt --no-bruteforce
nxc <protocol> <target> -u users.txt -H hashes.txt --no-bruteforce
# Continue after success
nxc <protocol> <target> -u users.txt -p 'Summer18' --continue-on-success
# Jitter between requests (seconds or range)
nxc <protocol> <target> --jitter 3 -u users.txt -p passwords.txt
nxc <protocol> <target> --jitter 2-5 -u users.txt -p passwords.txt
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.
- yesterday First seen · 988 lines · 0 tokens per session scan C c80fded110b0
netexec is a skill published in the GitHub repository jessefmoore/offensive-claude-code (2 stars, last pushed 3mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 9,524 tokens. A static security scan graded it C with 1 finding (harvests environment variables). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
babysit-pr
Babysit a GitHub pull request after creation by continuously polling review comments, CI checks/workflow runs, and mergeability state until the PR is merged/closed or user help is required. Diagnose failures, retry likely flaky failures up to 3 times, auto-fix/push branch-related issues when appropriate, and keep…
imagegen
Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output…
cpu-profile-analysis
Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…
next-cache-components-optimizer
Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…