From 0734d56fe2f1bb57b87c745d77d651f2b7184f3f Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Sun, 12 Feb 2023 02:15:58 +0100 Subject: [PATCH] Add reversed 'CNetKey' class Confirmed size, mostly unknown still. But some of this seems to be data related to OpenSSL. --- r5dev/engine/net.cpp | 2 +- r5dev/engine/net.h | 10 +++++----- r5dev/engine/net_chan.h | 1 + r5dev/tier1/NetKey.cpp | 15 +++++++++++++++ r5dev/tier1/NetKey.h | 25 +++++++++++++++++++++++++ r5dev/vproj/clientsdk.vcxproj | 2 ++ r5dev/vproj/clientsdk.vcxproj.filters | 6 ++++++ r5dev/vproj/dedicated.vcxproj | 2 ++ r5dev/vproj/dedicated.vcxproj.filters | 6 ++++++ r5dev/vproj/gamesdk.vcxproj | 2 ++ r5dev/vproj/gamesdk.vcxproj.filters | 6 ++++++ 11 files changed, 71 insertions(+), 6 deletions(-) create mode 100644 r5dev/tier1/NetKey.cpp create mode 100644 r5dev/tier1/NetKey.h diff --git a/r5dev/engine/net.cpp b/r5dev/engine/net.cpp index be040ae3..e0040ad5 100644 --- a/r5dev/engine/net.cpp +++ b/r5dev/engine/net.cpp @@ -302,5 +302,5 @@ void VNet::Detach() const /////////////////////////////////////////////////////////////////////////////// string g_svNetKey = DEFAULT_NET_ENCRYPTION_KEY; -uintptr_t g_pNetKey = NULL; +netkey_t* g_pNetKey = nullptr; #endif // !NETCONSOLE diff --git a/r5dev/engine/net.h b/r5dev/engine/net.h index 2dce686e..45c4a144 100644 --- a/r5dev/engine/net.h +++ b/r5dev/engine/net.h @@ -25,7 +25,7 @@ inline CMemory p_NET_Shutdown; inline auto v_NET_Shutdown = p_NET_Shutdown.RCast(); inline CMemory p_NET_SetKey; -inline auto v_NET_SetKey = p_NET_SetKey.RCast(); +inline auto v_NET_SetKey = p_NET_SetKey.RCast(); inline CMemory p_NET_ReceiveDatagram; inline auto v_NET_ReceiveDatagram = p_NET_ReceiveDatagram.RCast(); @@ -47,7 +47,7 @@ void NET_RemoveChannel(CClient* pClient, int nIndex, const char* szReason, uint8 /////////////////////////////////////////////////////////////////////////////// extern string g_svNetKey; -extern uintptr_t g_pNetKey; +extern netkey_t* g_pNetKey; inline std::mutex g_NetKeyMutex; /////////////////////////////////////////////////////////////////////////////// @@ -61,7 +61,7 @@ class VNet : public IDetour LogFunAdr("NET_ReceiveDatagram", p_NET_ReceiveDatagram.GetPtr()); LogFunAdr("NET_SendDatagram", p_NET_SendDatagram.GetPtr()); LogFunAdr("NET_PrintFunc", p_NET_PrintFunc.GetPtr()); - LogVarAdr("g_NetKey", g_pNetKey); + LogVarAdr("g_NetKey", reinterpret_cast(g_pNetKey)); } virtual void GetFun(void) const { @@ -79,7 +79,7 @@ class VNet : public IDetour v_NET_Init = p_NET_Init.RCast(); /*48 89 5C 24 08 48 89 6C 24 10 48 89 74 24 18 48 89 7C 24 20 41 54 41 56 41 57 48 81 EC F0 01 00*/ v_NET_Shutdown = p_NET_Shutdown.RCast(); /*48 89 6C 24 18 56 57 41 56 48 83 EC 30 83 B9 D0*/ - v_NET_SetKey = p_NET_SetKey.RCast(); /*48 89 5C 24 08 48 89 6C 24 10 48 89 74 24 18 57 48 83 EC 20 48 8B F9 41 B8*/ + v_NET_SetKey = p_NET_SetKey.RCast(); /*48 89 5C 24 08 48 89 6C 24 10 48 89 74 24 18 57 48 83 EC 20 48 8B F9 41 B8*/ v_NET_ReceiveDatagram = p_NET_ReceiveDatagram.RCast(); /*E8 ?? ?? ?? ?? 84 C0 75 35 48 8B D3*/ v_NET_SendDatagram = p_NET_SendDatagram.RCast(); /*48 89 5C 24 08 48 89 6C 24 10 48 89 74 24 18 57 41 56 41 57 48 81 EC ?? 05 00 00*/ v_NET_PrintFunc = p_NET_PrintFunc.RCast(); /*48 89 54 24 10 4C 89 44 24 18 4C 89 4C 24 20 C3 48*/ @@ -87,7 +87,7 @@ class VNet : public IDetour } virtual void GetVar(void) const { - g_pNetKey = g_GameDll.FindString("client:NetEncryption_NewKey").FindPatternSelf("48 8D ?? ?? ?? ?? ?? 48 3B", CMemory::Direction::UP, 300).ResolveRelativeAddressSelf(0x3, 0x7).GetPtr(); + g_pNetKey = g_GameDll.FindString("client:NetEncryption_NewKey").FindPatternSelf("48 8D ?? ?? ?? ?? ?? 48 3B", CMemory::Direction::UP, 300).ResolveRelativeAddressSelf(0x3, 0x7).RCast(); } virtual void GetCon(void) const { } virtual void Attach(void) const; diff --git a/r5dev/engine/net_chan.h b/r5dev/engine/net_chan.h index 17eda27a..5c3154fc 100644 --- a/r5dev/engine/net_chan.h +++ b/r5dev/engine/net_chan.h @@ -9,6 +9,7 @@ #include "tier1/bitbuf.h" #include "tier1/NetAdr.h" +#include "tier1/NetKey.h" #include "tier1/utlmemory.h" #include "tier1/utlvector.h" #include "common/netmessages.h" diff --git a/r5dev/tier1/NetKey.cpp b/r5dev/tier1/NetKey.cpp new file mode 100644 index 00000000..917cae99 --- /dev/null +++ b/r5dev/tier1/NetKey.cpp @@ -0,0 +1,15 @@ +//===========================================================================// +// +// Purpose: implementation of the CNetKey class. +// -------------------------------------------------------------------------- +//===========================================================================// +#include "core/stdafx.h" +#include "NetKey.h" + +////////////////////////////////////////////////////////////////////// +// Get key as Base64. +////////////////////////////////////////////////////////////////////// +const char* CNetKey::GetBase64NetKey(void) const +{ + return m_szBase64; +} diff --git a/r5dev/tier1/NetKey.h b/r5dev/tier1/NetKey.h new file mode 100644 index 00000000..3bc7df45 --- /dev/null +++ b/r5dev/tier1/NetKey.h @@ -0,0 +1,25 @@ +#pragma once +#include "NetAdr.h" + +class CNetKey +{ +public: + const char* GetBase64NetKey(void) const; + +private: + netadr_t m_Adr; + char m_Pad0[0x18]; + char m_UnkData0[0xFF0]; + char m_Pad1[0x40]; + char m_UnkData1[0xC0]; + char m_Pad2[0x160]; + LPCRITICAL_SECTION m_Mutex; + char m_Pad3[0x20]; + bool m_bUnknown; + char m_RandomUnknown[0x23]; + int m_nSize; + char m_szBase64[0x2D]; +}; +static_assert(sizeof(CNetKey) == 0x1300); + +typedef class CNetKey netkey_t; \ No newline at end of file diff --git a/r5dev/vproj/clientsdk.vcxproj b/r5dev/vproj/clientsdk.vcxproj index 1a6b4f7d..d1c93d68 100644 --- a/r5dev/vproj/clientsdk.vcxproj +++ b/r5dev/vproj/clientsdk.vcxproj @@ -142,6 +142,7 @@ + @@ -578,6 +579,7 @@ + diff --git a/r5dev/vproj/clientsdk.vcxproj.filters b/r5dev/vproj/clientsdk.vcxproj.filters index 68612e37..4e57a100 100644 --- a/r5dev/vproj/clientsdk.vcxproj.filters +++ b/r5dev/vproj/clientsdk.vcxproj.filters @@ -684,6 +684,9 @@ sdk\vstdlib + + sdk\tier1 + @@ -2012,6 +2015,9 @@ thirdparty\nlohmann\detail\meta + + sdk\tier1 + diff --git a/r5dev/vproj/dedicated.vcxproj b/r5dev/vproj/dedicated.vcxproj index 87b30bf0..efc0687c 100644 --- a/r5dev/vproj/dedicated.vcxproj +++ b/r5dev/vproj/dedicated.vcxproj @@ -501,6 +501,7 @@ + @@ -650,6 +651,7 @@ + diff --git a/r5dev/vproj/dedicated.vcxproj.filters b/r5dev/vproj/dedicated.vcxproj.filters index 770f43e9..565ac431 100644 --- a/r5dev/vproj/dedicated.vcxproj.filters +++ b/r5dev/vproj/dedicated.vcxproj.filters @@ -1395,6 +1395,9 @@ thirdparty\nlohmann\detail\meta + + sdk\tier1 + @@ -1781,6 +1784,9 @@ sdk\vstdlib + + sdk\tier1 + diff --git a/r5dev/vproj/gamesdk.vcxproj b/r5dev/vproj/gamesdk.vcxproj index 5f860157..755c90f7 100644 --- a/r5dev/vproj/gamesdk.vcxproj +++ b/r5dev/vproj/gamesdk.vcxproj @@ -161,6 +161,7 @@ + @@ -632,6 +633,7 @@ + diff --git a/r5dev/vproj/gamesdk.vcxproj.filters b/r5dev/vproj/gamesdk.vcxproj.filters index fa7647df..d25b1745 100644 --- a/r5dev/vproj/gamesdk.vcxproj.filters +++ b/r5dev/vproj/gamesdk.vcxproj.filters @@ -750,6 +750,9 @@ sdk\vstdlib + + sdk\tier1 + @@ -2183,6 +2186,9 @@ thirdparty\nlohmann\detail + + sdk\tier1 +