mirror of
https://github.com/wavestone-cdt/EDRSandblast.git
synced 2026-06-10 17:31:23 +00:00
CLI: bugfix: the output path was too small to be overwritten
This commit is contained in:
committed by
Maxime Meignan
parent
77953c60bd
commit
794dd9c254
@@ -209,7 +209,8 @@ Dump options:\n\
|
||||
TCHAR wdigestOffsetCSVPath[MAX_PATH] = { 0 };
|
||||
TCHAR ciOffsetCSVPath[MAX_PATH] = { 0 };
|
||||
TCHAR fltmgrOffsetCSVPath[MAX_PATH] = { 0 };
|
||||
TCHAR processName[] = TEXT("lsass.exe");
|
||||
TCHAR processName[MAX_PATH];
|
||||
_tcscpy_s(processName, _countof(processName), TEXT("lsass.exe"));
|
||||
TCHAR outputPath[MAX_PATH] = { 0 };
|
||||
BOOL verbose = FALSE;
|
||||
BOOL removeVulnDriver = TRUE;
|
||||
|
||||
Reference in New Issue
Block a user