
Énumérer AD via LDAP avec un ensemble de scripts utiles regroupés.
python -m ade
usage: ade [-h] [--dc DC] [-o OUT_FILE] [-u USER] [-s] [-smb] [-kp] [-bh] [-spn] [-sysvol] [--all] [--no-creds] [--dry-run]
[--exploit EXPLOIT]
___ __ _ ____ _ __ ______
/ | _____/ /_(_) _____ / __ \(_)_______ _____/ /_____ _______ __/ ____/___ __ ______ ___
/ /| |/ ___/ __/ / | / / _ \/ / / / / ___/ _ \/ ___/ __/ __ \/ ___/ / / / __/ / __ \/ / / / __ `__ \
/ ___ / /__/ /_/ /| |/ / __/ /_/ / / / / __/ /__/ /_/ /_/ / / / /_/ / /___/ / / / /_/ / / / / / /
/_/ |_\___/\__/_/ |___/\___/_____/_/_/ \___/\___/\__/\____/_/ \__, /_____/_/ /_/\__,_/_/ /_/ /_/
/____/
/*----------------------------------------------------------------------------------------------------------*/
optional arguments:
-h, --help show this help message and exit
--dc DC Hostname of the Domain Controller
-o OUT_FILE, --out-file OUT_FILE
Path to output file. If no path, CWD is assumed (default: None)
-u USER, --user USER Username of the domain user to query with. The username has to be domain name as `[email protected]`
-s, --secure Try to estalish connection through LDAPS
-smb, --smb Force enumeration of SMB shares on all computer objects fetched
-kp, --kerberos_preauth
Attempt to gather users that does not require Kerberos preauthentication
-bh, --bloodhound Output data in the format expected by BloodHound
-spn Attempt to get all SPNs and perform Kerberoasting
-sysvol Search sysvol for GPOs with cpassword and decrypt it
--all Run all checks
--no-creds Start without credentials
--dry-run Don't execute a test but run as if. Used for testing params etc.
--exploit EXPLOIT Show path to PoC exploit code
La nouvelle inclusion d'exploits intégrés peut donner des résultats comme :
...
[ WARN ] DC may be vulnerable to: [ cve-2020-1472 ]
...
Pour interroger un exploit afin d'obtenir du code PoC :
$ python -m ade --exploit cve-2020-1472
Exploit for: cve-2020-1472 can be found at: https://github.com/dirkjanm/CVE-2020-1472
Lancez l'installation via pip3 :
pip3 install ActiveDirectoryEnum
python -m ade
Si vous utilisez BlackArch, ActiveDirectoryEnum est disponible via pacman comme ceci :
pacman -S activedirectoryenum
Bien que ce projet soit développé pour répondre à mes besoins, toute collaboration est appréciée. N'hésitez pas à forker le projet, à y apporter des modifications conformément aux termes de la licence et à soumettre une Pull Request. Je demande simplement :
Un grand merci aux créateurs de :
Impacket @github
BloodHound @github
BloodHound.py @github
CVE-2020-1472 par Tom Tervoort de Secura
Sans ces outils, ce wrapper n'aurait pas été possible.