From 7caedef9a8c343b63cef6e971f4f87660520bb82 Mon Sep 17 00:00:00 2001 From: auth12 <67507608+auth12@users.noreply.github.com> Date: Wed, 22 Jul 2020 08:37:58 -0700 Subject: Client injection. Process class implementation. --- client/src/util/syscalls.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'client/src/util/syscalls.cpp') diff --git a/client/src/util/syscalls.cpp b/client/src/util/syscalls.cpp index 279a936..f1d9261 100644 --- a/client/src/util/syscalls.cpp +++ b/client/src/util/syscalls.cpp @@ -6,8 +6,7 @@ syscalls g_syscalls; syscalls::syscalls() { - m_call_table = VirtualAlloc(0, 0x100000, MEM_COMMIT | MEM_RESERVE, - PAGE_EXECUTE_READWRITE); + m_call_table = VirtualAlloc(0, 0x100000, MEM_COMMIT | MEM_RESERVE, PAGE_EXECUTE_READWRITE); std::memset(m_call_table, 0x90, 0x100000); } -- cgit v1.2.3