ShadowHound is a set of PowerShell scripts for Active Directory enumeration without the need for introducing known-malicious binaries like SharpHound.
It leverages native PowerShell capabilities to minimize detection risks and offers two methods for data collection:
DirectorySearcher
.For more details and context, check out the blog post.
Get-ADObject
via ADWS).-SplitSearch
, -Recurse
, and -LetterSplitSearch
options.-Certificates
flag.DirectorySearcher
.-Certificates
flag.-Credential
parameter.# Basic usage
ShadowHound-ADM -OutputFilePath "C:\Results\ldap_output.txt"
# Specify a domain controller and custom LDAP filter
ShadowHound-ADM -Server "dc.domain.local" -OutputFilePath "C:\Results\ldap_output.txt" -LdapFilter "(objectClass=user)"
# Use alternate credentials
$cred = Get-Credential
ShadowHound-ADM -OutputFilePath "C:\Results\ldap_output.txt" -Credential $cred -SearchBase "DC=domain,DC=local"
# Basic usage
ShadowHound-DS -OutputFile "C:\Results\ldap_output.txt"
# Specify a domain controller
ShadowHound-DS -Server "dc.domain.local" -OutputFile "C:\Results\ldap_output.txt"
# Use a custom LDAP filter
ShadowHound-DS -OutputFile "C:\Results\ldap_output.txt" -LdapFilter "(objectClass=computer)"
For more information click here.
Relocatable is an innovative tool designed to simplify the creation of Position Independent Code (PIC)…
In cybersecurity, a vulnerability refers to a flaw or weakness in a system, application, or…
The BOF WinRM Client is a Beacon Object File (BOF) extension for Cobalt Strike that…
Dioxus is a cutting-edge framework for building cross-platform applications using the Rust programming language. It…
Modrinth is a cutting-edge platform designed to revolutionize the world of Minecraft modding. Focused primarily…
Deno is a modern runtime for JavaScript, TypeScript, and WebAssembly, designed to address some of…