mirror of
https://github.com/gentilkiwi/mimikatz
synced 2025-02-14 08:27:43 +00:00
[internal] ldap supports authentication [internal] rpc cleanup for EFS [internal] sekurlsa skeleton for 11/2022
13 lines
453 B
C
13 lines
453 B
C
/* Benjamin DELPY `gentilkiwi`
|
|
https://blog.gentilkiwi.com
|
|
benjamin@gentilkiwi.com
|
|
Licence : https://creativecommons.org/licenses/by/4.0/
|
|
*/
|
|
#pragma once
|
|
#include "globals.h"
|
|
#include <Winldap.h>
|
|
#include <WinBer.h>
|
|
#include "kull_m_string.h"
|
|
|
|
BOOL kull_m_ldap_getLdapAndRootDN(PCWCHAR system, PCWCHAR nc, PLDAP *ld, PWCHAR *rootDn, PSEC_WINNT_AUTH_IDENTITY pIdentity);
|
|
PWCHAR kull_m_ldap_getRootDomainNamingContext(PCWCHAR nc, LDAP *ld); |