Cybersecurity Notes intermediate

Credential Attacks

Credential dumping, password spraying, pass-the-hash, pass-the-ticket, token theft and the defences that stop them.

Updated Aug 6, 2026 2 min read 4 views
#CEH#Credentials#Pass-the-Hash#Kerberos
Back to category

What are Credential Attacks?

Credential attacks abuse material that already exists on a host or directory service — hashes, tickets, tokens and cached secrets — instead of guessing passwords from outside. They are the bridge between initial access and full domain compromise.

Documented for defensive understanding, authorised testing and exam preparation only.

Credential Dumping

SourceContentsAccess required
LSASS memoryNTLM hashes, Kerberos tickets, sometimes plaintextLocal admin
SAM + SYSTEM hivesLocal account NTLM hashesLocal admin
NTDS.ditEvery domain account hashDomain Controller / DA
LSA secretsService account passwords, DPAPI keysLocal admin
Credential vaultsSaved application and browser passwordsUser context
/etc/shadowLinux hashes (yescrypt, SHA-512)root

Attack Techniques

Password Spraying

One or two common passwords tried against many accounts, staying under lockout thresholds.

Credential Stuffing

Reuse of username/password pairs leaked in unrelated breaches. Defeated by unique passwords and MFA.

Pass-the-Hash (PtH)

NTLM authentication needs the hash, not the password — a dumped NT hash is enough to authenticate.

Pass-the-Ticket (PtT)

Stolen Kerberos TGT/TGS tickets are replayed for access. Related: Kerberoasting and AS-REP Roasting, which yield service tickets that are cracked offline.

Access Token Manipulation

Impersonating an existing Windows token — lateral movement without ever handling a credential.

Keylogging and Credential Phishing

Capturing secrets at the point of entry, bypassing hashing entirely.

Typical Attack Chain

text
initial access -> local privilege escalation -> credential dump
   -> offline cracking / hash reuse -> lateral movement -> domain dominance

Defences

ControlBlocks
MFA everywhereSpraying, stuffing, phished passwords
LAPS / unique local admin passwordsPass-the-hash lateral movement
Credential Guard + Protected UsersLSASS dumping, ticket theft
Tiered administrationAdmin hashes landing on workstations
Long, random service account passwordsKerberoasting
Lockout + spray detection alertingPassword spraying
Disable legacy NTLM where possiblePtH and relay attacks

Quick Reference

  • Hashes are credentials, not just artefacts — treat them like plaintext.
  • Anywhere a hash can authenticate, cracking is optional.
  • Detection focuses on abnormal LSASS access, unusual ticket requests and auth anomalies.
  • Rotate every exposed secret after an incident, including the krbtgt account twice.