|
KNSoft.SlimDetours/Source/KNSoft.SlimDetours/Memory.c Lines 126 to 130 in 6745f6d |
Replies: 1 comment
|
As the artical in technique wiki "Avoid Occupying System Reserved Region When Allocating Trampoline" said:
In 64-bit NT6+, system reserved range for ASLR is
Similar to microsoft#307. |
As the artical in technique wiki "Avoid Occupying System Reserved Region When Allocating Trampoline" said:
In 64-bit NT6+, system reserved range for ASLR is
[0x00007FF7FFFF0000 (SYSTEM_RESERVED_REGION_LOWEST) .. 0x00007FFFFFFF0000), 32GB, we reserved 1GB after ntdll.dll.[s_ulSystemRegionLowUpperBound (end of ntdll.dll) .. s_ulSystemRegionLowLowerBound (1GB after ntdll)].ifcondition will beFALSE.SYSTEM_RESERVED_REGION_LOWEST, the range (1GB after ntdll) will be split into two blocks:[s_ulSystemRegionLowUpperBound (…