Version 2.10.2

This commit is contained in:
ufrisk
2021-12-30 15:53:34 +01:00
parent 2ffa85ac39
commit 2ed3ec0b36
7 changed files with 8 additions and 7 deletions

Binary file not shown.

Binary file not shown.

View File

@@ -3,8 +3,8 @@
#define VERSION_MAJOR 2
#define VERSION_MINOR 10
#define VERSION_REVISION 1
#define VERSION_BUILD 40
#define VERSION_REVISION 2
#define VERSION_BUILD 41
#define VER_FILE_DESCRIPTION_STR "LeechAgent Memory Acquisition Service"
#define VER_FILE_VERSION VERSION_MAJOR, VERSION_MINOR, VERSION_REVISION, VERSION_BUILD

View File

@@ -30,6 +30,7 @@ _Success_(return)
EXPORTED_FUNCTION BOOL LcMemMap_AddRange(_In_ PLC_CONTEXT ctxLC, _In_ QWORD pa, _In_ QWORD cb, _In_opt_ QWORD paRemap)
{
PVOID pvGrowMemMap;
if((cb & 0xfff) == 1) { cb--; }
if((pa & 0xfff) || (cb & 0xfff)) { return FALSE; }
if(ctxLC->cMemMap >= 0x00100000) { return FALSE; }
if(ctxLC->cMemMap == ctxLC->cMemMapMax) {

View File

@@ -3,8 +3,8 @@
#define VERSION_MAJOR 2
#define VERSION_MINOR 10
#define VERSION_REVISION 1
#define VERSION_BUILD 40
#define VERSION_REVISION 2
#define VERSION_BUILD 41
#define VER_FILE_DESCRIPTION_STR "LeechCore Memory Acquisition Library"
#define VER_FILE_VERSION VERSION_MAJOR, VERSION_MINOR, VERSION_REVISION, VERSION_BUILD

View File

@@ -39,7 +39,7 @@ leechcorepyc = Extension(
setup(
name='leechcorepyc',
version='2.10.1', # VERSION_END
version='2.10.2', # 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 10
#define VERSION_REVISION 1
#define VERSION_BUILD 40
#define VERSION_REVISION 2
#define VERSION_BUILD 41
#define VER_FILE_DESCRIPTION_STR "LeechCore Memory Acquisition Library : Python API"
#define VER_FILE_VERSION VERSION_MAJOR, VERSION_MINOR, VERSION_REVISION, VERSION_BUILD