Open
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://github.com/mverschu/adwsdomaindump Content Categories: Based on the analysis, this content was categorized under "Windows Hardening -> Active Directory Methodology (add a subsection like "AD Enumeration via ADWS (TCP/9389)" and reference ADWSDomainDump as a tool; cross-link from Network Services Pentesting if a 9389/ADWS page exists/gets added)". Repository Maintenance:
Review Notes:
Bot Version: HackTricks News Bot v1.0 |
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
What this project is
ADWSDomainDump is an Active Directory information dumping / enumeration tool that performs “domain dump” style recon by querying a Domain Controller via ADWS (Active Directory Web Services) instead of classic LDAP queries. It is explicitly described as a fork/adaptation of LDAPDomainDump (original:
https://github.com/dirkjanm/ldapdomaindump/), converted to use ADWS for evasion purposes.How it works (prot...
🔧 Technical Details
AD reconnaissance via ADWS (TCP/9389) instead of LDAP (evasion-oriented collection): If you have valid AD credentials, you can enumerate (“domain dump”) Active Directory by authenticating to Active Directory Web Services rather than sending LDAP queries. This shifts recon traffic to ADWS on TCP/9389 and can reduce detection in environments tuned for LDAP-based discovery tooling/patterns. Practical flow: connect to DC ADWS → verify 9389 reachable → bind/authenticate → run ADWS queries to collect directory information.
Reduce pre-check noise / handle filtering by skipping connectivity checks: If a tool performs explicit service reachability tests prior to enumeration, use its “force”/override option (here:
--force) to bypass the preliminary port check while still attempting the actual bind/query logic. This can help when monitoring is focused on simple port probes or when the check is unreliable.🤖 Agent Actions
Summary:
--forcebehavior, and observed EDR bypass notes.Tests:
This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.