bug fixes

This commit is contained in:
ufrisk
2021-06-13 14:11:03 +02:00
parent 69aa9ce2f9
commit 00438b2df7
7 changed files with 10 additions and 12 deletions

View File

@@ -3,8 +3,8 @@
#define VERSION_MAJOR 2
#define VERSION_MINOR 6
#define VERSION_REVISION 0
#define VERSION_BUILD 27
#define VERSION_REVISION 1
#define VERSION_BUILD 28
#define VER_FILE_DESCRIPTION_STR "LeechAgent Memory Acquisition Service"
#define VER_FILE_VERSION VERSION_MAJOR, VERSION_MINOR, VERSION_REVISION, VERSION_BUILD

View File

@@ -304,7 +304,7 @@ BOOL DeviceFile_MsCrashCoreDumpInitialize(_In_ PLC_CONTEXT ctxLC)
QWORD i, cbFileOffset;
PElf64_Ehdr pElf64 = &ctx->CrashOrCoreDump.Elf64;
PElf32_Ehdr pElf32 = &ctx->CrashOrCoreDump.Elf32;
_PPHYSICAL_MEMORY_DESCRIPTOR64 pM32 = (_PPHYSICAL_MEMORY_DESCRIPTOR64)(ctx->CrashOrCoreDump.pbHdr + 0x064);
_PPHYSICAL_MEMORY_DESCRIPTOR32 pM32 = (_PPHYSICAL_MEMORY_DESCRIPTOR32)(ctx->CrashOrCoreDump.pbHdr + 0x064);
_PPHYSICAL_MEMORY_DESCRIPTOR64 pM64 = (_PPHYSICAL_MEMORY_DESCRIPTOR64)(ctx->CrashOrCoreDump.pbHdr + 0x088);
_fseeki64(ctx->pFile, 0, SEEK_SET);
fread(ctx->CrashOrCoreDump.pbHdr, 1, 0x2000, ctx->pFile);

View File

@@ -7,8 +7,7 @@
/*
* Retrieve the operating system path of the directory which is containing this:
* a) .dll file (Windows)
* b) executable file (Linux)
* .dll/.so file.
* -- szPath
*/
VOID Util_GetPathLib(_Out_writes_(MAX_PATH) PCHAR szPath)

View File

@@ -11,8 +11,7 @@
/*
* Retrieve the operating system path of the directory which is containing this:
* a) .dll file (Windows)
* b) executable file (Linux)
* .dll/.so file.
* -- szPath
*/
VOID Util_GetPathLib(_Out_writes_(MAX_PATH) PCHAR szPath);

View File

@@ -3,8 +3,8 @@
#define VERSION_MAJOR 2
#define VERSION_MINOR 6
#define VERSION_REVISION 0
#define VERSION_BUILD 27
#define VERSION_REVISION 1
#define VERSION_BUILD 28
#define VER_FILE_DESCRIPTION_STR "LeechCore Memory Acquisition Library"
#define VER_FILE_VERSION VERSION_MAJOR, VERSION_MINOR, VERSION_REVISION, VERSION_BUILD

View File

@@ -38,7 +38,7 @@ leechcorepyc = Extension(
setup(
name='leechcorepyc',
version='2.6.0', # VERSION_END
version='2.6.1', # VERSION_END
description='LeechCore for Python',
long_description='LeechCore for Python : native extension for physical memory access',
url='https://github.com/ufrisk/LeechCore',

View File

@@ -3,8 +3,8 @@
#define VERSION_MAJOR 2
#define VERSION_MINOR 6
#define VERSION_REVISION 0
#define VERSION_BUILD 27
#define VERSION_REVISION 1
#define VERSION_BUILD 28
#define VER_FILE_DESCRIPTION_STR "LeechCore Memory Acquisition Library : Python API"
#define VER_FILE_VERSION VERSION_MAJOR, VERSION_MINOR, VERSION_REVISION, VERSION_BUILD