Skip to content
ADscan Docs
ADscan PRO

Generate a Compliance Report

Two paths to a MITRE-mapped PDF and JSON — the interactive REPL, or adscan ci for unattended runs.

Two paths to a report

ADscan PRO supports two flows. Pick the one that fits how you work.

FlowCommandWhen
Interactive REPLadscan start → scan → deliverAny engagement you are present for. Full visibility per phase, same flow as LITE.
Unattendedadscan ci auth ...Pipelines, scheduled runs, and batching engagements whose shape you already know.

Both drive the same engine. The difference is who answers the questions: you, or the documented defaults. Full flag reference on the adscan ci page.

Audit mode vs CTF mode

ADscan has two scan modes. For compliance reports, always use audit mode (--type audit in CI, or pick audit at the REPL prompt).

ModeWhat it doesUse for
auditFull deep scan — all checks, all findings, complete attack pathsClient engagements, compliance reports
ctfStops after domain compromise (pwned)CTF labs (HackTheBox, TryHackMe)

CTF mode exits early by design. Audit mode runs every check and produces the full finding set the report engine needs. If you run CTF mode, your report will be sparse.

This is the same REPL you already know from LITE. The PRO image just adds the report engine.

export ADSCAN_DOCKER_IMAGE=ghcr.io/adscanpro/adscan-pro:latest
adscan start

The banner shows the PRO tier. From the prompt, the REPL guides each phase:

recon → kerberos → ACL → attack-path collection → exploitation

When the scan is complete, package the kit with one command:

deliver --display-name "Client Name"

That produces three PDFs — the Security Assessment Report, the AD Hardening Playbook and the AD Control Coverage Report — plus the MITRE ATT&CK Navigator bundle, all under ~/.adscan/workspaces/<workspace>/deliverables/. See adscan deliver for what each document carries.

Framework selection is prompted at report time in an interactive terminal, or set with --frameworks.

Unattended flow

adscan ci runs the same pipeline with every prompt pre-answered. It is what the Enterprise appliance's worker and the ADscan platform use to launch scans.

Run the shape interactively once first

Before wiring a new target shape into a pipeline, run it through adscan start once. A surprise is much cheaper to handle with the REPL in front of you than in a log you read afterwards.

adscan ci never prompts, so PRO has to be activated on the machine before it can run. Pass --partner-tag <tag> — the tag from your onboarding email — on the first run, and every later run reuses the saved tag. Exporting ADSCAN_PARTNER_TAG does the same job. Without either, the run stops on the activation gate instead of scanning. See Getting Started with PRO for the detail.

It requires a positional mode argument — auth or unauth. Each has different required flags.

Auth mode (you have credentials — standard for compliance engagements):

adscan ci auth \
  --type audit \
  --interface eth0 \
  --domain <domain.local> \
  --dc-ip <dc_ip> \
  --username <user> \
  --password '<pass>' \
  --generate-report \
  --frameworks iso27001 \
  --display-name "Client Name" \
  --report-theme premium_dark \
  --keep-workspace

Unauth mode (no credentials — documents unauthenticated exposure):

adscan ci unauth \
  --type audit \
  --interface eth0 \
  --hosts 10.10.10.0/24 \
  --generate-report \
  --frameworks iso27001 \
  --keep-workspace

In unauth mode you can pass --dc-ip instead of --hosts to skip host discovery and target a known DC directly.

ADscan will:

  1. Enumerate the AD environment (DNS, LDAP, SMB, Kerberos, ADCS)
  2. Generate the attack graph and exploit all available paths
  3. Produce a PDF + JSON report mapped to the requested framework
  4. Write outputs to ~/.adscan/workspaces/<workspace>/

Required flags summary (CI mode)

Auth mode requires: --domain, --dc-ip, --username, --password, --type, --interface

Unauth mode requires: --type, --interface, and either --hosts or --dc-ip

All flags reference

Scan flags

FlagModeRequiredDescription
--partner-tagbothUntil savedPartner tag from your onboarding email. Activates PRO and is saved on the machine, so it is only needed once (or set ADSCAN_PARTNER_TAG instead)
auth / unauthbothPositionalScan mode
--typebothYesaudit for compliance engagements, ctf for labs
--interface, -ibothYesNetwork interface (e.g. eth0, tun0)
--domainauthYesDomain to scan (e.g. corp.example.com)
--dc-ipauthYesPrimary DC IP
--username, -uauthYesUsername
--password, -pauthYesPassword
--hostsunauthOne of the twoCIDR range — required unless --dc-ip is passed
--dc-ipunauthOne of the twoKnown DC IP — alternative to --hosts
--workspace, -wbothWorkspace name (random if omitted)
--keep-workspacebothKeep workspace after scan for re-reporting

Report flags

FlagDefaultDescription
--generate-reportoffEnable report generation after the scan
--frameworksnoneCompliance framework(s): ens, nis2, iso27001, dora, pci_dss. Nothing is selected unless you ask
--display-nameClient name shown on the report cover page
--report-themenonepremium_dark or corporate_light
--report-templatepremiumCurrently only premium
--report-enginechromiumPDF rendering engine

Framework examples

adscan ci auth \
  --type audit \
  --interface eth0 \
  --domain corp.example.com \
  --dc-ip 10.10.10.10 \
  --username auditor \
  --password 'P@ssw0rd!' \
  --generate-report \
  --frameworks iso27001 \
  --report-theme premium_dark \
  --display-name "Acme Corp" \
  --keep-workspace

Produces an ISO/IEC 27001:2022 compliance section mapping each AD finding to the relevant Annex A control.

adscan ci auth \
  --type audit \
  --interface eth0 \
  --domain corp.example.com \
  --dc-ip 10.10.10.10 \
  --username auditor \
  --password 'P@ssw0rd!' \
  --generate-report \
  --frameworks ens \
  --display-name "Empresa S.A." \
  --keep-workspace

Produces an ENS Alto (CCN-CERT) compliance section — the default, for Spanish public-sector regulated environments.

adscan ci auth \
  --type audit \
  --interface eth0 \
  --domain corp.example.com \
  --dc-ip 10.10.10.10 \
  --username auditor \
  --password 'P@ssw0rd!' \
  --generate-report \
  --frameworks nis2 \
  --display-name "Operador Crítico S.A." \
  --keep-workspace

Produces a NIS2 (EU Directive 2022/2555) compliance section — for critical-infrastructure operators. NIS2 and ENS are distinct frameworks; request --frameworks ens,nis2 for both.

adscan ci auth \
  --type audit \
  --interface eth0 \
  --domain bank.internal \
  --dc-ip 192.168.1.5 \
  --username auditor \
  --password 'P@ssw0rd!' \
  --generate-report \
  --frameworks dora \
  --report-theme corporate_light \
  --display-name "Financial Entity" \
  --keep-workspace

Produces a DORA EU 2022/2554 compliance section — designed for financial entities under EU Digital Operational Resilience Act requirements.

adscan ci auth \
  --type audit \
  --interface eth0 \
  --domain corp.example.com \
  --dc-ip 10.10.10.10 \
  --username auditor \
  --password 'P@ssw0rd!' \
  --generate-report \
  --frameworks iso27001,dora \
  --display-name "Client Name" \
  --keep-workspace

Multiple frameworks produce a single PDF with separate compliance sections. One scan, one report, multiple frameworks.

Generate report from the interactive shell

The same flow you know from LITE: the REPL walks every phase, and deliver packages the three PDFs plus the ATT&CK Navigator bundle at the end.

export ADSCAN_DOCKER_IMAGE=ghcr.io/adscanpro/adscan-pro:latest
adscan start

Inside the shell, first configure the workspace type:

set type audit

Then run your scan as usual. Once the scan completes, generate the report:

generate_report

ADscan will guide you through two interactive prompts:

1. Framework selection (checkbox — select one or more):

❯ ◉ ENS Alto — Spain / CCN-CERT (recommended)
  ◯ NIS2 — EU Directive (EU) 2022/2555 (critical infrastructure)
  ◯ ISO 27001:2022 — International ISMS standard
  ◯ DORA — EU 2022/2554 (financial sector)
  ◯ PCI DSS v4.0.1 — Payment Card Industry

2. Theme selection:

❯ Editorial — warm bone, ember accent (premium, McKinsey-grade)
  Corporate — white/navy, print-safe (Big-4 / auditor)

corporate_light is the default when nothing is picked.

You can also pass arguments directly to skip the prompts:

generate_report full iso27001
generate_report technical ens,iso27001
generate_report executive dora

The profiles (full, technical, executive) control which report sections are included. full is the default and recommended for most engagements.

Regenerate the deliverable kit from an existing workspace

If the scan already ran (or you want to regenerate the PDFs without re-scanning), use adscan deliver:

adscan deliver --workspace <workspace_name>

To regenerate just the Security Assessment Report:

adscan deliver --workspace <workspace_name> --only report

Why --keep-workspace matters

By default, auto-created CI workspaces are deleted after the scan. Pass --keep-workspace to preserve the scan data so you can re-run adscan deliver later without re-scanning.

Where are the outputs?

Everything lands in the workspace, not the working directory:

~/.adscan/workspaces/<workspace>/
├── technical_report.json          structured data for your pipeline
└── deliverables/
    ├── <YYYY-MM-DD>-adscan-kit.zip    the kit, ready to send
    ├── manifest.json
    └── staging/                       the rendered PDFs and Navigator files

Under GitHub Actions (GITHUB_ACTIONS=true) the report is additionally copied into ./artifacts/ so a workflow can upload it without knowing the workspace path. Nothing is copied there on a normal run.

The scan output names the workspace. To list them from inside the shell:

workspace list

Timing

Environment sizeTypical scan time
< 500 users, 1 domain15–25 min
500–2000 users, 1–2 domains25–45 min
2000+ users, multi-domain45–90 min

Report generation adds ~2–5 minutes after the scan completes.

Find this useful?
Pass it to the next pentester running an AD engagement
Running 2+ AD engagements/year?
Get PRO free — beta access·Free in exchange for feedback
Automated PDF reports. Save ≥1 day per engagement.

ADscan — AD pentest automation for security consultants

Generate a Compliance Report | ADscan