mirror of
https://github.com/ufrisk/LeechCore.git
synced 2026-05-07 06:01:34 +08:00
bug fixes
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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',
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user