This commit is contained in:
DavidXanatos 2022-05-12 23:04:07 +02:00
parent 443bdff628
commit aca0bd2754
2 changed files with 11 additions and 2 deletions

View File

@ -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

View File

@ -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");