Update offsets

This commit is contained in:
Bugisoft 2023-10-12 19:48:27 +02:00
parent 3be878c841
commit c59829b7a0
No known key found for this signature in database
GPG Key ID: 247FD1149C131852
3 changed files with 36 additions and 38 deletions

View File

@ -1,7 +1,5 @@
include(FetchContent)
set(JSON_MultipleHeaders OFF)
FetchContent_Declare(
json
GIT_REPOSITORY https://github.com/ArthurSonzogni/nlohmann_json_cmake_fetchcontent.git

View File

@ -71,7 +71,7 @@ class CopyJob : command
return bytes;
}
vector<unsigned char> get_data_len(size_t data_len, bool image) // should be 107684
vector<unsigned char> get_data_len(size_t data_len, bool image)
{
stringstream ss;
ss << hex << data_len;
@ -82,7 +82,7 @@ class CopyJob : command
data_len_hex = "0" + data_len_hex;
}
vector<unsigned char> data_len_bytes = HexToBytes(data_len_hex); // should be \x01\xa4\xa4
vector<unsigned char> data_len_bytes = HexToBytes(data_len_hex);
switch (data_len_bytes.size()) {
case 1:

View File

@ -11,36 +11,36 @@
#include <botan_all.h>
#ifdef _WIN32
#include <Windows.h>
#include <tlhelp32.h>
#include <Windows.h>
#include <tlhelp32.h>
#endif
using namespace std;
#ifdef _WIN32
uintptr_t GetModuleBaseAddress(DWORD procId, const char* modName)
uintptr_t GetModuleBaseAddress(DWORD procId, const char* modName)
{
uintptr_t modBaseAddr = 0;
HANDLE hSnap = CreateToolhelp32Snapshot(TH32CS_SNAPMODULE | TH32CS_SNAPMODULE32, procId);
if (hSnap != INVALID_HANDLE_VALUE)
{
uintptr_t modBaseAddr = 0;
HANDLE hSnap = CreateToolhelp32Snapshot(TH32CS_SNAPMODULE | TH32CS_SNAPMODULE32, procId);
if (hSnap != INVALID_HANDLE_VALUE)
MODULEENTRY32 modEntry;
modEntry.dwSize = sizeof(modEntry);
if (Module32First(hSnap, &modEntry))
{
MODULEENTRY32 modEntry;
modEntry.dwSize = sizeof(modEntry);
if (Module32First(hSnap, &modEntry))
do
{
do
if (!strcmp(modEntry.szModule, modName))
{
if (!strcmp(modEntry.szModule, modName))
{
modBaseAddr = (uintptr_t)modEntry.modBaseAddr;
break;
}
} while (Module32Next(hSnap, &modEntry));
}
modBaseAddr = (uintptr_t)modEntry.modBaseAddr;
break;
}
} while (Module32Next(hSnap, &modEntry));
}
CloseHandle(hSnap);
return modBaseAddr;
}
CloseHandle(hSnap);
return modBaseAddr;
}
#endif
AccountInfo GetAccountInfo()
@ -71,18 +71,18 @@ AccountInfo GetAccountInfo()
/*
* <Services Count="12">
<S ep="/Accounts.svc/" h="accounts-prod.ros.rockstargames.com" />
<S ep="/Feed.asmx/" h="feed-gta5-prod.ros.rockstargames.com" />
<S ep="/Telemetry.asmx/SubmitCompressed" h="prod.telemetry.ros.rockstargames.com" />
<S ep="/Telemetry.asmx/SubmitRealTime" h="prod.telemetry.ros.rockstargames.com" />
<S ep="conductor" h="conductor-prod.ros.rockstargames.com" />
<S ep="/ProfileStats.asmx/" h="ps-gta5-prod.ros.rockstargames.com" />
<S ep="/matchmaking.asmx/" h="mm-gta5-prod.ros.rockstargames.com" />
<S ep="/ugc.asmx/" h="ugc-gta5-prod.ros.rockstargames.com" />
<S ep="/Presence.asmx/" h="prs-gta5-prod.ros.rockstargames.com" />
<S ep="/Inbox.asmx/" h="inbox-gta5-prod.ros.rockstargames.com" />
<S ep="/Clans.asmx/" h="crews-gta5-prod.ros.rockstargames.com" />
<S ep="/cloudservices/members//GTA5/saves/mpstats" h="cs-gta5-prod.ros.rockstargames.com" />
<S ep="/Accounts.svc/" h="accounts-prod.ros.rockstargames.com" />
<S ep="/Feed.asmx/" h="feed-gta5-prod.ros.rockstargames.com" />
<S ep="/Telemetry.asmx/SubmitCompressed" h="prod.telemetry.ros.rockstargames.com" />
<S ep="/Telemetry.asmx/SubmitRealTime" h="prod.telemetry.ros.rockstargames.com" />
<S ep="conductor" h="conductor-prod.ros.rockstargames.com" />
<S ep="/ProfileStats.asmx/" h="ps-gta5-prod.ros.rockstargames.com" />
<S ep="/matchmaking.asmx/" h="mm-gta5-prod.ros.rockstargames.com" />
<S ep="/ugc.asmx/" h="ugc-gta5-prod.ros.rockstargames.com" />
<S ep="/Presence.asmx/" h="prs-gta5-prod.ros.rockstargames.com" />
<S ep="/Inbox.asmx/" h="inbox-gta5-prod.ros.rockstargames.com" />
<S ep="/Clans.asmx/" h="crews-gta5-prod.ros.rockstargames.com" />
<S ep="/cloudservices/members//GTA5/saves/mpstats" h="cs-gta5-prod.ros.rockstargames.com" />
</Services>
*/
@ -102,13 +102,13 @@ int main()
uintptr_t base_address = GetModuleBaseAddress(pid, "GTA5.exe");
char ticket[208]{};
ReadProcessMemory(phandle, (void*)(base_address + 0x2E7B300), &ticket, 208, 0);
ReadProcessMemory(phandle, (void*)(base_address + 0x2E7E380), &ticket, 208, 0);
char session_ticket[88]{};
ReadProcessMemory(phandle, (void*)(base_address + 0x2E7B300 + 0x200), &session_ticket, 88, 0);
ReadProcessMemory(phandle, (void*)(base_address + 0x2E7E380 + 0x200), &session_ticket, 88, 0);
unsigned char session_key[16]{};
ReadProcessMemory(phandle, (void*)(base_address + 0x2E7B300 + 0x608), &session_key, 16, 0);
ReadProcessMemory(phandle, (void*)(base_address + 0x2E7E380 + 0x608), &session_key, 16, 0);
TICKET = ticket;
SESSION_TICKET = string(session_ticket, 88);