mirror of
https://github.com/gentilkiwi/mimikatz
synced 2024-12-14 18:15:15 +00:00
f114a779e3
- [new] sekurlsa module and its kerberos submodule now work with old 2003 SP1 (live or dump) - [remove] misc::wifi with WLanAPI will be replaced with dpapi::wifi raw access - [fix] crypto::certificate buffer free at the right place - [internal] new kull_m_file Find function with callback - [internal] removed kull_m_file functions (read/write/file exist) with environment-variables, now used for all command-lines - [internal] kull_m_crypto_hash better checks for CRC32 trick - [internal] mimilove for Windows 2000 banner update - [internal] crypto::system now works with buffers (for future registry access) - [internal] kerberos::ptt & crypto::system call kull_m_file_Find instead of their own implementation - [internal] remove CrtlHandler, from mimikatz main modules, when exiting to let PowerShell clean - [internal] expand command lines environment-variables from mimikatz main modules
21 lines
974 B
C
21 lines
974 B
C
/* Benjamin DELPY `gentilkiwi`
|
|
http://blog.gentilkiwi.com
|
|
benjamin@gentilkiwi.com
|
|
Licence : https://creativecommons.org/licenses/by/4.0/
|
|
*/
|
|
#pragma once
|
|
#include "globals.h"
|
|
#include <shlwapi.h>
|
|
|
|
BOOL isBase64Intercept;
|
|
|
|
typedef BOOL (CALLBACK * PKULL_M_FILE_FIND_CALLBACK) (DWORD level, PCWCHAR fullpath, PCWCHAR path, PVOID pvArg);
|
|
|
|
BOOL kull_m_file_getCurrentDirectory(wchar_t ** ppDirName);
|
|
BOOL kull_m_file_getAbsolutePathOf(PCWCHAR thisData, wchar_t ** reponse);
|
|
BOOL kull_m_file_isFileExist(PCWCHAR fileName);
|
|
BOOL kull_m_file_writeData(PCWCHAR fileName, LPCVOID data, DWORD lenght);
|
|
BOOL kull_m_file_readData(PCWCHAR fileName, PBYTE * data, PDWORD lenght); // for 'little' files !
|
|
void kull_m_file_cleanFilename(PWCHAR fileName);
|
|
PWCHAR kull_m_file_fullPath(PCWCHAR fileName);
|
|
BOOL kull_m_file_Find(PCWCHAR directory, PCWCHAR filter, BOOL isRecursive /*TODO*/, DWORD level, BOOL isPrintInfos, PKULL_M_FILE_FIND_CALLBACK callback, PVOID pvArg); |