For the complete documentation index, see llms.txt. This page is also available as Markdown.

Credential Hunting - Network

Wireshark Credential Filters

Filter
Purpose

http

All HTTP traffic

http.request.method == "POST"

POST requests (often contain credentials)

http contains "passw"

Packets containing password strings

tcp.port == 80

Port 80 traffic

ip.addr == X.X.X.X

Filter by specific IP

Pcredz (PCAP Credential Extraction)

./Pcredz -f demo.pcapng -t -v

Extracts: FTP/POP/SMTP/IMAP/SNMP credentials, HTTP NTLM/Basic auth, NTLMv1/v2 hashes, Kerberos AS-REQ hashes, credit card numbers.

Snaffler (Windows, Domain-Joined)

  • Automatically finds interesting files on accessible shares

Snaffler.exe -s

PowerHuntShares

Import-Module .\PowerHuntShares.psm1
Invoke-HuntSMBShares -Threads 100 -OutputDirectory c:\Users\Public

MANSPIDER (Linux, via Docker)

NetExec Spider Shares


AD Username Enumeration

Kerbrute

Username Anarchy (Name Permutation)

NTDS.dit Dump (NetExec One-Liner)

Last updated