ad-report

ad-report is a skill for Claude Code from DouglasRao/Claude-Pentest-Skills. It costs 99 tokens per session (4,388 once invoked), scanned A, original, MIT.

A reporting workflow for Active Directory penetration tests, which assess security weaknesses in a Windows business network. It combines evidence from reconnaissance, exploitation, and post-exploitation work into technical and executive reports.

In plain words
What is it for?
Use it to turn Active Directory test outputs into a finished client report, including confirmed findings and supporting evidence.
Why use it?
It removes the need to gather findings and screenshots manually from separate test stages. It also helps present the results in a consistent report format.

Skill for Claude Code

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

Part of the claude-pentest-skills plugin — 8 skills shipped together

Good fit Use it to turn Active Directory test outputs into a finished client report, including confirmed findings and supporting evidence.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/douglasrao/claude-pentest-skills/ad-report
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 DouglasRao/Claude-Pentest-Skills --skill ad-report
Clone the repo
git clone --depth 1 https://github.com/DouglasRao/Claude-Pentest-Skills

Made for: Claude Code.

Or install claude-pentest-skills, the plugin that ships this one along with the rest of its 8 skills.

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 ad-report

README.md
[![agentmods](https://agentmods.dev/badge/skills/douglasrao/claude-pentest-skills/ad-report/github.svg)](https://agentmods.dev/skills/douglasrao/claude-pentest-skills/ad-report)
Your own site
<a href="https://agentmods.dev/skills/douglasrao/claude-pentest-skills/ad-report"><img src="https://agentmods.dev/badge/skills/douglasrao/claude-pentest-skills/ad-report/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 ad-report

Your own site · 80×15
<a href="https://agentmods.dev/skills/douglasrao/claude-pentest-skills/ad-report"><img src="https://agentmods.dev/badge/skills/douglasrao/claude-pentest-skills/ad-report.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 99 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,388 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 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.1 $0.00099 $0.04388
Opus 5 $0.00049 $0.02194
Sonnet 5 $0.00020 $0.00878
Haiku 4.5 $0.00010 $0.00439

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

Security

Grade A, and why

ad-report 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 12d 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

Copies of this mod

1 near-identical copy found in the catalogue:

skills/ad-report/SKILL.md · 442 lines

How it starts

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

AD Report — Technical & Executive Report Generation

Architecture

This skill is Claude-driven. It reads output directories from prior AD skills, organizes all confirmed findings, writes the full report in the correct format, reviews it twice, and publishes to Notion.

Input directories (any combination):
  $RECON_OUT    — ad-recon output (users.txt, nmap_dc.txt, enum4linux, bloodhound zips, asrep/kerberoast hashes)
  $EXPLOIT_OUT  — ad-exploitation output (cracked hashes, admin_hosts.txt, dcsync_hashes.txt)
  $POSTEX_OUT   — ad-postexploitation output (lsass dumps, lateral movement evidence, persistence)
  $EVIDENCE_DIR — screenshots directory (BloodHound paths, hashcat output, CME Pwn3d results)

Initial Setup

TARGET_DOMAIN="corp.local"
DC_IP="10.10.10.100"
CLIENT="Client Company Name"
ENGAGEMENT="Active Directory Penetration Test"
TESTER="[Your Name / Company]"
DATE="$(date +%Y-%m-%d)"

RECON_OUT="$(pwd)/corp-local"
EXPLOIT_OUT="$(pwd)/corp-local-exploit"
POSTEX_OUT="$(pwd)/corp-local-postex"    # leave empty if not applicable
EVIDENCE_DIR="$(pwd)/corp-local/evidence"

# Report mode — default: combined (recommended)
REPORT_MODE="combined"  # options: combined | technical | executive

Create progress tasks with TaskCreate:

"PHASE 1 — Finding Triage & Consolidation"
"PHASE 2 — Evidence Collection & Organization"
"PHASE 3 — Report Writing"
"PHASE 4 — Review #1 (completeness and technical accuracy)"
"PHASE 5 — Review #2 (clarity, language, formatting)"
"PHASE 6 — Notion Publication"

Report Modes

Mode Target audience What it includes
combined (default) Mixed — technical and management Full technical detail + executive sections with plain-language explanations. Recommended when audience is unknown.
technical Security team, sysadmins, blue team Full technical detail, attack commands, Kerberos internals, BloodHound path details
executive C-level, board, CISO Business impact, risk ratings, remediation priorities — no raw attack commands

Read the full file on GitHub · 442 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. 12d ago First seen · 442 lines · 99 tokens per session scan A 8708e48b3d9c

Subscribe to this mod's changes

ad-report is a skill published in the GitHub repository DouglasRao/Claude-Pentest-Skills (11 stars, last pushed 5mo ago), licensed MIT. It adds 99 tokens to every session and 4,388 once invoked, about $0.0005 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-30.

Related

Other skills, from other repositories

auditing-azure-active-directory-configuration

Auditing Microsoft Entra ID (Azure Active Directory) configuration to identify risky authentication policies, overly permissive role assignments, stale accounts, conditional access gaps, and guest user risks using AzureAD PowerShell, Microsoft Graph API, and ScoutSuite.

xalgorix/xalgorix · 58 tokens

deploying-active-directory-honeytokens

Deploys deception-based honeytokens in Active Directory including fake privileged accounts with AdminCount=1, fake SPNs for Kerberoasting detection (honeyroasting), decoy GPOs with cpassword traps, and fake BloodHound paths. Monitors Windows Security Event IDs 4769, 4625, 4662, 5136 for honeytoken interaction. Use…

xalgorix/xalgorix · 101 tokens

analyzing-windows-event-logs-in-splunk

Analyzes Windows Security, System, and Sysmon event logs in Splunk to detect authentication attacks, privilege escalation, persistence mechanisms, and lateral movement using SPL queries mapped to MITRE ATT&CK techniques. Use when SOC analysts need to investigate Windows-based threats, build detection queries, or…

26zl/cybersec-toolkit · 81 tokens

deploying-active-directory-honeytokens

Deploys deception-based honeytokens in Active Directory including fake privileged accounts with AdminCount=1, fake SPNs for Kerberoasting detection (honeyroasting), decoy GPOs with cpassword traps, and fake BloodHound paths. Monitors Windows Security Event IDs 4769, 4625, 4662, 5136 for honeytoken interaction. Use…

26zl/cybersec-toolkit · 101 tokens

conducting-internal-reconnaissance-with-bloodhound-ce

Conduct internal Active Directory reconnaissance using BloodHound Community Edition to map attack paths, identify privilege escalation chains, and discover misconfigurations in domain environments.

26zl/cybersec-toolkit · 44 tokens

configuring-active-directory-tiered-model

Implement Microsoft's Enhanced Security Admin Environment (ESAE) tiered administration model for Active Directory. Covers Tier 0/1/2 separation, privileged access workstations (PAWs), administrative f.

26zl/cybersec-toolkit · 46 tokens