11. Credentialed Enumeration - from Linux
1. CrackMapExec (CME)
Function:
Post-exploitation tool for Active Directory assessment.
Enumerates users, groups, logged-on users, and SMB shares.
Supports share spidering.
Commands:
Additional Features:
Use
crackmapexec -h
for help.Redirect output:
sudo crackmapexec smb <target_ip> --users > users.txt
.
2. SMBMap
Function:
Enumerates SMB shares, permissions, and file structures.
Commands:
Additional Features:
Supports searching file contents within shares.
3. rpcclient
Function:
Interacts with MS-RPC for Active Directory enumeration.
Commands:
Additional Features:
Check all options with
man rpcclient
.
4. Impacket
Function:
Python toolkit for Windows protocol interaction.
Commands:
Additional Features:
Supports hash authentication:
psexec.py <domain>/<username>@<target_ip> -hashes <LM hash>:<NT hash>
5. Windapsearch
Function:
LDAP-based enumeration of users, groups, and GPOs.
Commands:
Additional Features:
Supports GPO enumeration with
--gpos
.
Summary
CrackMapExec: Powerful SMB enumeration and exploitation.
SMBMap: Detailed SMB share analysis.
rpcclient: Low-level AD interaction.
Impacket: Remote execution and shell access.
Windapsearch: Efficient LDAP-based enumeration.
Monitor and log enumeration activities to detect potential attacks!
Last updated