From df294a23d03437b42a5d462903c99ad24d4a23c8 Mon Sep 17 00:00:00 2001 From: xerox Date: Sun, 19 Apr 2020 21:47:42 +0000 Subject: [PATCH] Update README.md --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index cd301eb..907d5ec 100644 --- a/README.md +++ b/README.md @@ -28,8 +28,7 @@ If you are in any sort of doubt about the abundance of these drivers simply go t ### How does this exploit work? -Since we are able to read/write to any physical memory on the system the goal is to find the physical page of a syscall and map it into our system. This can be done by -calculating the offset into the page in which the syscall resides. Doing so is trival and only requires the modulus operation. +Since we are able to read/write to any physical memory on the system the goal is to find the physical page of a syscall and map it into our system. This can be done by calculating the offset into the page in which the syscall resides. Doing so is trivial and only requires the modulus operation. ```cpp auto syscall_page_offet = rva % 0x1000;