# LDAP ## Get Domain Use the `ldapsearch` tool to receive information from an LDAP server. ```sh ldapsearch -H ldap://$TARGET_IP -x -s base namingcontexts ``` * Use found namingcontexts DC ```sh ldapsearch -H ldap://$TARGET_IP -x -b 'DC=<DC>,DC=<ORG> ``` * Authenticated LDAP Search ```sh ldapsearch -H ldap://$TARGET_IP -x -b 'DC=<DC>,DC=<ORG>' -D '<DC>\<user>' -W > outfile ``` ## Domain Dump If a set of LDAP credentials is known dump the domain via ```sh ldapdomaindump $TARGET_IP -u '<domain>\<user>' -p '<password>' --no-json --no-grep ``` The result is a set of HTML files, take a look at them.