1.0.22
This commit is contained in:
parent
443bdff628
commit
aca0bd2754
|
@ -12,6 +12,15 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||
|
||||
|
||||
|
||||
## [1.0.22 / 5.55.22] - 2022-05-xx
|
||||
|
||||
|
||||
### Fixed
|
||||
- fixed sandman crash issue [#1846](https://github.com/sandboxie-plus/Sandboxie/issues/1846)
|
||||
- fixed issue with windows server 2022 build 20348
|
||||
|
||||
|
||||
|
||||
## [1.0.21 / 5.55.21] - 2022-05-10
|
||||
|
||||
### Added
|
||||
|
|
|
@ -111,8 +111,8 @@ _FX void *Syscall_GetMasterServiceTable(void)
|
|||
|
||||
ExFreePoolWithTag(ptr, tzuk);
|
||||
|
||||
//MasterTable lookup for windows 11
|
||||
if (Driver_OsBuild >= 22563) {
|
||||
//MasterTable lookup for windows 11 insider 22563 or server 2022 20348
|
||||
if (Driver_OsBuild >= 20348) {
|
||||
|
||||
ULONG_PTR kernel_base = nt;
|
||||
RtlInitUnicodeString(&uni, L"KeAddSystemServiceTable");
|
||||
|
|
Loading…
Reference in New Issue