Skip to main content

Python Active Directory Reconnaissance Tool (ADRecon port) using ADWS with NTLM support.

Project description

pyadrecon

A Python3 implementation of PyADRecon using ADWS instead of LDAP for Pentesters, Red and Blue Teams

PyADRecon is a tool which gathers information about MS Active Directory and generates an XSLX report to provide a holistic picture of the current state of the target AD environment.

[!TIP] Queries Active Directory Web Services (ADWS) over TCP/9389 instead of LDAP to fly under the EDR radar.

Table of Contents

Installation

# stable release from pypi
pipx install pyadrecon-adws

# latest commit from github
pipx install git+https://github.com/l4rm4nd/PyADRecon-ADWS

Then verify installation:

pyadrecon_adws --version

[!TIP] For Windows, may read this. Only NTLM authentication works on Windows atm.

Usage

usage: pyadrecon_adws.py [-h] [--version] [--generate-excel-from CSV_DIR] [-d DOMAIN] [-u USERNAME] [-p PASSWORD]
                         [-dc DOMAIN_CONTROLLER] [--port PORT] [--auth {ntlm,kerberos}] [--spn SPN]
                         [--workstation WORKSTATION] [-c COLLECT] [--only-enabled] [--page-size PAGE_SIZE]
                         [--dormant-days DORMANT_DAYS] [--password-age PASSWORD_AGE] [-o OUTPUT] [--no-excel]
                         [-v]

PyADRecon-ADWS # Active Directory Reconnaissance using ADWS

options:
  -h, --help            show this help message and exit
  --version             show program's version number and exit
  --generate-excel-from CSV_DIR
                        Generate Excel report from existing CSV files (standalone mode)
  -d, --domain DOMAIN   Domain name (e.g., example.com)
  -u, --username USERNAME
                        Username (DOMAIN\user or user@domain.com)
  -p, --password PASSWORD
                        Password or LM:NTLM hash (will prompt if not provided)
  -dc, --domain-controller DOMAIN_CONTROLLER
                        Domain controller hostname or IP
  --port PORT           ADWS port (default: 9389)
  --auth {ntlm,kerberos}
                        Authentication method: ntlm or kerberos (default: ntlm)
  --spn SPN             Service Principal Name override (default: HTTP/dc.fqdn)
  --workstation WORKSTATION
                        NTLM authentication workstation name (default: random)
  -c, --collect COLLECT
                        Comma-separated modules to collect (default: all)
  --only-enabled        Only collect enabled users/computers
  --page-size PAGE_SIZE
                        ADWS query page size (default: 256)
  --dormant-days DORMANT_DAYS
                        Users/Computers with lastLogon older than X days are dormant (default: 90)
  --password-age PASSWORD_AGE
                        Users with pwdLastSet older than X days have old passwords (default: 180)
  -o, --output OUTPUT   Output directory (default: PyADRecon-Report-<timestamp>)
  --no-excel            Skip Excel export
  --no-dashboard        Skip interactive HTML dashboard generation  
  -v, --verbose         Enable verbose output

Examples:
  # Basic usage with NTLM authentication
  pyadrecon_adws.py -dc 192.168.1.1 -u admin -p password123 -d DOMAIN.LOCAL

  # With Kerberos authentication (only works on Linux with gssapi atm)
  pyadrecon.py -dc dc01.domain.local -u admin -p password123 -d DOMAIN.LOCAL --auth kerberos

  # Only collect specific modules
  pyadrecon_adws.py -dc 192.168.1.1 -u admin -p pass -d DOMAIN.LOCAL --collect users,groups,computers

  # Output to specific directory
  pyadrecon_adws.py -dc 192.168.1.1 -u admin -p pass -d DOMAIN.LOCAL -o /tmp/adrecon_output

  # Generate Excel report from existing CSV files (standalone mode)
  pyadrecon_adws.py --generate-excel-from /path/to/CSV-Files -o report.xlsx

Docker

There is also a Docker image available on GHCR.IO.

docker run --rm -v /etc/krb5.conf:/etc/krb5.conf:ro -v /etc/hosts:/etc/hosts:ro -v ./:/tmp/pyadrecon_output ghcr.io/l4rm4nd/pyadrecon-adws:latest -dc dc01.domain.local -u admin -p password123 -d DOMAIN.LOCAL -o /tmp/pyadrecon_output

Known Limitations

Multi-Domain Forests - Certificate Templates

When querying child domains in a multi-domain forest, ADWS returns incomplete security descriptors for forest-wide objects like certificate templates. This means:

Issue:

  • Certificate template ACLs (enrollment rights, write permissions) may not show principals from the child domain itself
  • Only parent domain principals will appear in enrollment rights
  • This is an ADWS protocol limitation, not a PyADRecon-ADWS bug

Example:

  • Querying from child domain (deham.domain.local): Shows parent domain principals only
  • Querying from parent domain (domain.local): Shows all principals including child domain

Solution:

  • For complete certificate template ACL data, connect to the forest root domain controller instead of a child DC:
    # Instead of connecting to child DC:
    pyadrecon_adws.py -dc child-dc.deham.domain.local -d deham.domain.local ...
    
    # Connect to forest root DC:
    pyadrecon_adws.py -dc root-dc.domain.local -d domain.local ...
    

Warning: PyADRecon-ADWS will display a warning when collecting certificate templates from a child domain:

[WARNING] [!] Connected to child domain - certificate template ACLs may be incomplete!
[WARNING]     For complete ACL data, connect to forest root DC instead.

Collection Modules

As default, PyADRecon-ADWS runs all collection modules. They are referenced to as default or all.

Though, you can freely select your own collection of modules to run:

Icon Meaning
🛑 Requires administrative domain privileges (e.g. Domain Admins)
Requires regular domain privileges (e.g. Authenticated Users)
💥 New collection modul in beta state. Results may be incorrect.

Forest & Domain

  • forest
  • domain
  • trusts
  • sites
  • subnets
  • schema or schemahistory

Domain Controllers

  • dcs or domaincontrollers

Users & Groups

  • users
  • userspns
  • groups
  • groupmembers
  • protectedgroups ✅💥
  • krbtgt
  • asreproastable
  • kerberoastable

Computers & Printers

  • computers
  • computerspns
  • printers

OUs & Group Policy

  • ous
  • gpos
  • gplinks

Passwords & Credentials

  • passwordpolicy
  • fgpp or finegrainedpasswordpolicy 🛑
  • laps 🛑
  • bitlocker 🛑💥

Managed Service Accounts

  • gmsa or groupmanagedserviceaccounts ✅💥
  • dmsa or delegatedmanagedserviceaccounts ✅💥
    • Only works for Windows Server 2025+ AD schema

Certificates

  • adcs or certificates ✅💥
    • Detects ESC1, ESC2, ESC3, ESC4 and ESC9

DNS

  • dnszones
  • dnsrecords

PyADRecon HTML Dashboard

PyADRecon-ADWS will automatically create an HTML dashboard with important stats and security findings.

You may disable HTML dashboard generation via --no-dashboard.

[!CAUTION] This is a beta feature. Displayed data may be falsely parsed or reported as issue

image
image image image

Acknowledgements

Many thanks to the following folks:

  • S3cur3Th1sSh1t for a first Claude draft of PyADRecon using LDAP
  • Sense-of-Security for the original ADRecon script in PowerShell
  • dirkjanm for the original ldapdomaindump script
  • mverschu for his port of ldapdomaindump using ADWS (adwsdomaindump). PyADRecon-ADWS heavily makes use of the ldap-to-adws wrapper.
  • Forta for the awesome impacket suite
  • Anthropic for Claude LLMs

License

PyADRecon-ADWS is released under the MIT License.

The following third-party libraries are used:

Library License
openpyxl MIT
impacket Apache 2.0
adwsdomaindump ADWS Wrapper MIT

Please refer to the respective licenses of these libraries when using or redistributing this software.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyadrecon_adws-0.4.1.tar.gz (1.8 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pyadrecon_adws-0.4.1-py3-none-any.whl (128.0 kB view details)

Uploaded Python 3

File details

Details for the file pyadrecon_adws-0.4.1.tar.gz.

File metadata

  • Download URL: pyadrecon_adws-0.4.1.tar.gz
  • Upload date:
  • Size: 1.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyadrecon_adws-0.4.1.tar.gz
Algorithm Hash digest
SHA256 58be9e8018f97c72fa6899ee31eff25d8422f3a3cf5664d819f1bbe83526586b
MD5 b3dd6b5e2bb562ae62d044faad3aa67e
BLAKE2b-256 fc59f228b6f704e464f2ef0cf081dbfbe8dfa59dd33544ad29b2b1f9c6448e40

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyadrecon_adws-0.4.1.tar.gz:

Publisher: pypi.yml on l4rm4nd/PyADRecon-ADWS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyadrecon_adws-0.4.1-py3-none-any.whl.

File metadata

  • Download URL: pyadrecon_adws-0.4.1-py3-none-any.whl
  • Upload date:
  • Size: 128.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyadrecon_adws-0.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 c80714f926b5591f89f0fb25483ec7cd3eb6faba3c04c5761d71c0bf3783c482
MD5 d804513964a7c05c714eb5f15f87675b
BLAKE2b-256 472906a4911fc67c8fcca46040fa966e64190b70c76293fb87a254d7713c9d15

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyadrecon_adws-0.4.1-py3-none-any.whl:

Publisher: pypi.yml on l4rm4nd/PyADRecon-ADWS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page