[NTOS:KE] Fix stack memory disclosure in KiInitializeUserApc (#2988)

This commit is contained in:
Nguyen Trung Khanh 2020-07-27 07:39:48 +07:00 committed by GitHub
parent 517e6dc8ab
commit 9d2ecd3a13
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -207,7 +207,7 @@ KiInitializeUserApc(IN PKEXCEPTION_FRAME ExceptionFrame,
IN PVOID SystemArgument1,
IN PVOID SystemArgument2)
{
CONTEXT Context;
CONTEXT Context = { 0 };
ULONG64 AlignedRsp, Stack;
EXCEPTION_RECORD SehExceptRecord;

View file

@ -270,7 +270,7 @@ KiInitializeUserApc(IN PKEXCEPTION_FRAME ExceptionFrame,
IN PVOID SystemArgument1,
IN PVOID SystemArgument2)
{
CONTEXT Context;
CONTEXT Context = { 0 };
ULONG_PTR Stack;
ULONG ContextLength;
DPRINT1("User APC: %p %p %p\n", NormalContext, SystemArgument1, SystemArgument2);

View file

@ -51,7 +51,7 @@ KiInitializeUserApc(IN PKEXCEPTION_FRAME ExceptionFrame,
IN PVOID SystemArgument1,
IN PVOID SystemArgument2)
{
CONTEXT Context;
CONTEXT Context = { 0 };
ULONG_PTR Stack, AlignedEsp;
ULONG ContextLength;
EXCEPTION_RECORD SehExceptRecord;