diff --git a/leechagent/version.h b/leechagent/version.h index 4549106..e757979 100644 --- a/leechagent/version.h +++ b/leechagent/version.h @@ -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 diff --git a/leechcore/device_file.c b/leechcore/device_file.c index 99d9876..b14041b 100644 --- a/leechcore/device_file.c +++ b/leechcore/device_file.c @@ -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); diff --git a/leechcore/util.c b/leechcore/util.c index 5ecfb4e..057c38e 100644 --- a/leechcore/util.c +++ b/leechcore/util.c @@ -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) diff --git a/leechcore/util.h b/leechcore/util.h index 6403ea6..42550be 100644 --- a/leechcore/util.h +++ b/leechcore/util.h @@ -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); diff --git a/leechcore/version.h b/leechcore/version.h index cde9cc5..35d578a 100644 --- a/leechcore/version.h +++ b/leechcore/version.h @@ -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 diff --git a/leechcorepyc/pkggen_linux.sh b/leechcorepyc/pkggen_linux.sh index 1066fb7..fa7d09c 100644 --- a/leechcorepyc/pkggen_linux.sh +++ b/leechcorepyc/pkggen_linux.sh @@ -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', diff --git a/leechcorepyc/version.h b/leechcorepyc/version.h index e4054a1..63e7994 100644 --- a/leechcorepyc/version.h +++ b/leechcorepyc/version.h @@ -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