mirror of
https://github.com/ufrisk/LeechCore.git
synced 2026-09-03 06:48:17 +08:00
Version 2.10.2
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -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
|
||||
|
||||
@@ -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) {
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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',
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user