summaryrefslogtreecommitdiff
path: root/csgo-loader/csgo-client/RemoteCode/RemoteCodeClient.hpp
diff options
context:
space:
mode:
authorboris <wzn@moneybot.cc>2019-01-09 20:51:16 +1300
committerboris <wzn@moneybot.cc>2019-01-09 20:51:16 +1300
commit4db29589a61f2e7cb663c5734f911c02206c7997 (patch)
tree38ec6f25fe1b807ba76e28720badf4a70a87601c /csgo-loader/csgo-client/RemoteCode/RemoteCodeClient.hpp
parent1fbe9543b16fc6edacfc1e1dca75f5938ebb08a3 (diff)
whole buncha shit
FIXME: loader currently corrupts heap on injection because i am retarded
Diffstat (limited to 'csgo-loader/csgo-client/RemoteCode/RemoteCodeClient.hpp')
-rw-r--r--csgo-loader/csgo-client/RemoteCode/RemoteCodeClient.hpp33
1 files changed, 0 insertions, 33 deletions
diff --git a/csgo-loader/csgo-client/RemoteCode/RemoteCodeClient.hpp b/csgo-loader/csgo-client/RemoteCode/RemoteCodeClient.hpp
deleted file mode 100644
index 84021c6..0000000
--- a/csgo-loader/csgo-client/RemoteCode/RemoteCodeClient.hpp
+++ /dev/null
@@ -1,33 +0,0 @@
-#pragma once
-
-#include <RemoteCode/RemoteProcess.hpp>
-
-namespace RemoteCode
-{
- class RemoteCodeClient
- {
- using MemProtect = bool(__stdcall *)(void *, size_t, uint32_t, uint32_t *);
-
- struct ShellcodeParameters
- {
- // Specifies whether or not the thread hijacking
- // exploit will be used for code execution.
- uint8_t m_ThreadExploit;
-
- // Address of the module allocation base
- uintptr_t m_AllocationBase;
-
- // Specifies the entry-point / optional TLS directory
- // to invoke.
- uintptr_t m_EntryPoint;
- uintptr_t m_TlsDirectory;
-
- // Thread hijacking (original address & VMT)
- uintptr_t m_ThreadOriginal;
- uintptr_t m_ThreadVirtual;
-
- // Function parameters that will be passed
- MemProtect m_ProtectMemory;
- };
- };
-} \ No newline at end of file