From fe48442907de93a729e85dc36b4380ddffb065b0 Mon Sep 17 00:00:00 2001 From: Petitoto Date: Sun, 17 Dec 2023 13:51:42 +0100 Subject: [PATCH] Prepare v0.5 release --- README.md | 6 +++--- pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ecddcfd..39667eb 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Documentation is available at https://petitoto.github.io/pyjectify/ ## Features -### Windows +### Windows (x86 & x86_64) #### Core - Allocate / Free / Read / Write memory - Create threads @@ -25,10 +25,10 @@ Documentation is available at https://petitoto.github.io/pyjectify/ - MemScan: scan memory using regex patterns - Inject: load library, from disk (remote LoadLibrary) or from memory (fully map the DLL into the remote process) - Hook: set up inline hooks in the target process -- PythonLib: embed python into a remote process (Python 3.10 - 3.11 supported) +- PythonLib: embed python into a remote process (Python 3.6 - 3.11 supported) #### Utils -- Syscall: Parse syscall codes from ntdll.dll (from the loaded library or from the disk), and produce a ntdll-like object which can be used by the Inject module to use direct syscalls +- Syscall: parse syscall codes from ntdll.dll (from the loaded library or from the disk), and produce a ntdll-like object which can be used by the core to use direct syscalls - ApiSetSchema: parse Windows ApiSet diff --git a/pyproject.toml b/pyproject.toml index 7cb2dcf..281440e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pyjectify" -version = "0.4" +version = "0.5" authors = [ { name="Petitoto" }, ]