1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
|
#include "pch.h"
#include "KMemDriver.h"
#include "KInterface.h"
#include "DLLHelper.h"
#include "PatternScanner.h"
#include <array>
#include <iostream>
#include <iomanip>
#include <windows.h>
#include <Shlwapi.h>
#define WHEXOUT std::setfill(L'0') << std::setw(16) << std::hex
static BOOL running = false;
static const wchar_t *wName = L"HUNT";
static bool consoleHandler(int signal) {
if (signal == CTRL_C_EVENT) {
if (!running)
exit(EXIT_FAILURE);
running = false;
std::wcout << L"Waiting for graceful shutdown .." << std::endl;
}
return true;
}
static void printBuf(UCHAR *buf, SIZE_T siz, SIZE_T bytesBeforeNewline) {
unsigned int i, j;
const unsigned char colors[] = { 10,11,12,13,14,15 };
HANDLE hConsole = GetStdHandle(STD_OUTPUT_HANDLE);
for (i = 0, j = 0; i < siz; ++i) {
if (i % bytesBeforeNewline == 0) {
SetConsoleTextAttribute(hConsole, colors[j++ % (sizeof colors)]);
wprintf(L"\n0x%04X: ", i);
}
wprintf(L"%02X ", buf[i]);
}
wprintf(L"\n");
SetConsoleTextAttribute(hConsole, 15);
}
static BOOL CALLBACK enumWindowsProc(HWND hWnd, LPARAM lParam)
{
int length = GetWindowTextLength(hWnd);
TCHAR* buffer;
buffer = new TCHAR[length + 1];
memset(buffer, 0, (length + 1) * sizeof(TCHAR));
GetWindowText(hWnd, buffer, length + 1);
if (!wcscmp(buffer, wName))
*(HWND *)lParam = hWnd;
delete[] buffer;
return TRUE;
}
int wmain(int argc, wchar_t **argv)
{
HANDLE targetPID = 0;
PVOID buf;
HANDLE kevent;
HANDLE uevent;
KInterface &ki = KInterface::getInstance();
std::vector<MEMORY_BASIC_INFORMATION> pages;
std::vector<MODULE_DATA> modules;
std::wcout << L"Waiting for window title: '" << wName << L"'" << std::endl;
HWND targetHWND = NULL;
while (1) {
if (!EnumWindows(enumWindowsProc, (LPARAM)&targetHWND)) {
return 1;
}
if (targetHWND) {
std::wcout << L"Found window '" << wName << L"' with Handle 0x"
<< std::hex << targetHWND << std::endl;
break;
}
Sleep(1000);
}
GetWindowThreadProcessId(targetHWND, (LPDWORD)&targetPID);
SetConsoleCtrlHandler((PHANDLER_ROUTINE)consoleHandler, TRUE);
if (!ki.Init()) {
std::wcout << L"Kernel Interface Init() failed" << std::endl;
return 1;
}
try {
buf = ki.getBuffer();
kevent = ki.getKHandle();
uevent = ki.getUHandle();
}
catch (std::runtime_error& err) {
std::wcout << err.what() << std::endl;
return 1;
}
std::wcout << L"Buffer.: " << buf << std::endl;
std::wcout << L"KHandle: " << kevent << std::endl;
std::wcout << L"UHandle: " << uevent << std::endl;
if (!ki.Handshake()) {
std::wcout << L"Kernel Interface Handshake() failed" << std::endl;
return 1;
}
if (targetPID) {
if (!ki.Modules(targetPID, modules))
std::wcout << L"Kernel Interface Modules() failed with 0x"
<< std::hex << ki.getLastNtStatus() << std::endl;
else std::wcout << L"Got " << std::dec << modules.size() << L" modules for pid 0x"
<< std::hex << targetPID << std::endl;
if (!ki.Pages(targetPID, pages))
std::wcout << L"Kernel Interface Pages() failed with 0x"
<< std::hex << ki.getLastNtStatus() << std::endl;
else std::wcout << L"Got " << std::dec << pages.size() << L" mapped pages for pid 0x"
<< std::hex << targetPID << std::endl;
}
running = TRUE;
do {
if (ki.RecvWait() == SRR_TIMEOUT) {
std::wcout << L"Ping -> ";
if (!ki.Ping()) {
std::wcout << L"Got no valid PONG, abort!" << std::endl;
running = FALSE;
}
else std::wcout << L"PONG!" << std::endl;
}
if (!running)
break;
try {
if (targetPID) {
for (MODULE_DATA& md : modules) {
if (!strncmp(md.BaseDllName, "CrySystem.dll",
sizeof md.BaseDllName))
{
#if 0
std::wcout << L"CrySystem.dll.......: 0x" << WHEXOUT << md.DllBase << std::endl;
UINT32 tmp = 0xDEADBEEF;
KMemory::Wpm<UINT32>(targetPID, (PVOID)((UINT64)md.DllBase + 0x566800), &tmp);
std::wcout << L"RDATA...............: 0x" << WHEXOUT << KMemory::Rpm<UINT32>(targetPID, (PVOID)((UINT64)md.DllBase + 0x566800)) << std::endl;
KMemory::Wpm<UINT32>(targetPID, (PVOID)((UINT64)md.DllBase + 0x1800), &tmp);
std::wcout << L"TEXT................: 0x" << WHEXOUT << KMemory::Rpm<UINT32>(targetPID, (PVOID)((UINT64)md.DllBase + 0x1800)) << std::endl;
#endif
}
else
if (!strncmp(md.BaseDllName, "CryEntitySystem.dll",
sizeof md.BaseDllName))
{
/* "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.16.27023\bin\Hostx64\x64\cl.exe" /Zp2 /c /d1reportSingleClassLayoutCEntitySystem C:\Users\segfault\Source\Repos\CRYENGINE\Code\CryEngine\CryEntitySystem\EntitySystem.cpp /I C:\Users\segfault\Source\Repos\CRYENGINE\Code\CryEngine\CryCommon /I "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.16.27023\include" /I "C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt" /I "C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\shared" /I "C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\um" */
/*
class CEntitySystem size(788880):
+---
0 | +--- (base class IEntitySystem)
0 | | {vfptr}
| +---
8 | ?$array@V?$vector@PEAUIEntitySystemSink@@V?$allocator@PEAUIEntitySystemSink@@@std@@@std@@$03 m_sinks
104 | m_pISystem
112 | SEntityArray m_entityArray
786524 | ?$vector@IV?$allocator@I@std@@ m_staticEntityIds
786548 | ?$vector@PEAVCEntity@@V?$allocator@PEAVCEntity@@@std@@ m_deletedEntities
786572 | ?$vector@PEAVCEntity@@V?$allocator@PEAVCEntity@@@std@@ m_deferredUsedEntities
786596 | ?$multimap@PEBDIU?$less_stricmp@PEBD@stl@@V?$allocator@U?$pair@QEBDI@std@@@std@@ m_mapEntityNames
786612 | ?$CEntityComponentsVector@USMinimalEntityComponentRecord@@ m_updatedEntityComponents
786654 | ?$CEntityComponentsVector@USMinimalEntityComponentRecord@@ m_prePhysicsUpdatedEntityComponents
786696 | ?$multimap@VCTimeValue@@USEntityTimerEvent@@U?$less@VCTimeValue@@@std@@V?$STLPoolAllocator@U?$pair@$$CBVCTimeValue@@USEntityTimerEvent@@@std@@UPSyncNone@stl@@$0A@$0A@@stl@@ m_timersMap
786712 | ?$vector@USEntityTimerEvent@@V?$allocator@USEntityTimerEvent@@@std@@ m_currentTimers
786736 | m_bTimersPause
| <alignment member> (size=1)
786738 | CTimeValue m_nStartPause
786746 | m_pEntityScriptBinding
786754 | m_pClassRegistry
786762 | m_pPhysicsEventListener
786770 | m_pReflectionRegistry
786778 | m_pAreaManager
786786 | m_pEntityLoadManager
786794 | ?$unordered_map@UCryGUID@@IU?$hash@UCryGUID@@@std@@U?$equal_to@UCryGUID@@@3@V?$allocator@U?$pair@$$CBUCryGUID@@I@std@@@3@ m_guidMap
786858 | ?$unordered_map@UCryGUID@@IU?$hash@UCryGUID@@@std@@U?$equal_to@UCryGUID@@@3@V?$allocator@U?$pair@$$CBUCryGUID@@I@std@@@3@ m_genIdMap
786922 | m_pBreakableManager
786930 | m_pEntityArchetypeManager
786938 | m_pGeomCacheAttachmentManager
786946 | m_pCharacterBoneAttachmentManager
786954 | m_pPartitionGrid
786962 | m_pProximityTriggerSystem
786970 | m_idForced
786974 | m_bLocked
786975 | m_bSupportLegacy64bitGuids
786976 | ?$map@V?$CryStringT@D@@PEAVCEntityLayer@@U?$less@V?$CryStringT@D@@@std@@V?$allocator@U?$pair@$$CBV?$CryStringT@D@@PEAVCEntityLayer@@@std@@@4@ m_layers
786992 | ?$vector@USEntityLayerGarbage@@V?$allocator@USEntityLayerGarbage@@@std@@ m_garbageLayerHeaps
787016 | ?$unique_ptr@VCEntityComponentsCache@@U?$default_delete@VCEntityComponentsCache@@@std@@ m_entityComponentsCache
787024 | ?$unique_ptr@VCEntityObjectDebugger@@U?$default_delete@VCEntityObjectDebugger@@@std@@ m_pEntityObjectDebugger
787032 | ?$vector@USLayerProfile@CEntitySystem@@V?$allocator@USLayerProfile@CEntitySystem@@@std@@ m_layerProfiles
787056 | ?$array@USProfiledEntityEvent@CEntitySystem@@$0DJ@ m_profiledEvents
class CEntitySystem::SEntityArray size(786412):
+---
0 | +--- (base class SSaltBufferArray)
0 | | ?$array@USSaltBufferElement@SSaltBufferArray@@$0PPPO@ m_buffer
262136. | | m_freeListStartIndex (bitstart=0,nbits=16)
262138. | | m_maxUsedEntityIndex (bitstart=0,nbits=16)
| +---
262140 | ?$array@PEAVCEntity@@$0PPPO@ m_array
class SSaltBufferArray::SSaltBufferElement size(4):
+---
0. | m_salt (bitstart=0,nbits=16)
2. | m_nextIndex (bitstart=0,nbits=16)
+---
class CEntity size(412):
+---
0 | +--- (base class IEntity)
0 | | {vfptr}
| +---
8 | ?$CEnumFlags@W4EInternalFlag@CEntity@@ m_internalFlags
12 | m_sendEventRecursionCount
| <alignment member> (size=1)
14 | m_componentChangeState
16 | ?$CryStringT@D m_name
24 | m_pClass
32 | m_pArchetype
40 | STransformHierarchy m_hierarchy
82 | ?$_smart_ptr@UIMaterial@@ m_pMaterial
90 | m_pEntityLinks
98 | m_pGridLocation
106 | m_pProximityEntity
114 | ?$unique_ptr@USLegacySchematycData@CEntity@@U?$default_delete@USLegacySchematycData@CEntity@@@std@@ m_pLegacySchematycData
122 | ?$DynArray@V?$unique_ptr@USExternalEventListener@CEntity@@U?$default_delete@USExternalEventListener@CEntity@@@std@@@std@@HU?$SmallDynStorage@U?$AllocCompatible@UModuleAlloc@NAlloc@@@NAlloc@@@NArray@@ m_externalEventListeners
130 | ?$CEnumFlags@W4EEvent@Entity@Cry@@ m_eventListenerMask
138 | ?$DynArray@V?$unique_ptr@USEventListenerSet@CEntity@@U?$default_delete@USEventListenerSet@CEntity@@@std@@@std@@HU?$SmallDynStorage@U?$AllocCompatible@UModuleAlloc@NAlloc@@@NAlloc@@@NArray@@ m_simpleEventListeners
146 | ?$unique_ptr@UINetEntity@@U?$default_delete@UINetEntity@@@std@@ m_pNetEntity
154 | CEntityRender m_render
228 | CEntityPhysics m_physics
244 | CryGUID m_guid
260 | m_id
264 | m_aiObjectID
268 | m_flags
272 | m_flagsExtended
273 | EEntitySimulationMode m_simulationMode
274 | ?$Vec3_tpl@M m_position
286 | ?$Quat_tpl@M m_rotation
302 | ?$Vec3_tpl@M m_scale
| <alignment member> (size=6)
320 | ?$Matrix34H@M m_worldTM
368 | m_keepAliveCounter
370 | ?$CEntityComponentsVector@USEntityComponentRecord@@ m_components
+---
class Vec3_tpl<double> size(24):
+---
0 | +--- (base class INumberVector<double,3,struct Vec3_tpl<double> >)
0 | | +--- (base class INumberArray<double,3>)
| | +---
| +---
0 | x
8 | y
16 | z
+---
class Vec3_tpl<float> size(12):
+---
0 | +--- (base class INumberVector<float,3,struct Vec3_tpl<float> >)
0 | | +--- (base class INumberArray<float,3>)
| | +---
| +---
0 | x
4 | y
8 | z
+---
*/
#if 1
/* Found: void CEntitySystem::LoadInternalState(IDataReadStream& reader) */
UINT64 g_pEnv = KMemory::Rpm<UINT64>(targetPID,
(PVOID)((UINT64)md.DllBase + 0x28C3F8));
std::wcout << L"g_pEnv..............: 0x" << WHEXOUT << g_pEnv << std::endl;
#if 0
// ?? ?? ?? ?? ?? ?? 85 C0 0F 84 5E 02 00 00
BYTE aa[] = { 0x90, 0x90, 0x90, 0x90, 0x31, 0xC0 };
KMemoryBuf::Wpm<sizeof aa>(targetPID, (PVOID)((UINT64)md.DllBase + 0x70619), &aa[0]);
BYTE bb[sizeof aa] = {};
KMemoryBuf::Rpm<sizeof aa>(targetPID, (PVOID)((UINT64)md.DllBase + 0x70619), &bb[0]);
printBuf(bb, sizeof bb, 32);
#else
static bool first = true;
if (first) {
first = false;
#if 0
PVOID targetAddr = (PVOID)((UINT64)NULL);
SIZE_T targetSize = 4096;
if (!ki.VAlloc(targetPID, &targetAddr, &targetSize, PAGE_EXECUTE_READWRITE)) {
std::wcout << L"VAlloc failed" << std::endl;
}
if (!ki.VUnlink(targetPID, targetAddr)) {
std::wcout << L"VUnlink failed" << std::endl;
}
#endif
DLLHelper dll;
if (!dll.Init(targetPID, "./TestDLL.dll")) {
std::wcout << L"DLL Init failed" << std::endl;
}
if (!dll.VerifyHeader()) {
std::wcout << L"DLL VerifyHeader failed" << std::endl;
}
if (!dll.InitTargetMemory()) {
std::wcout << L"DLL InitTargetMemory failed" << std::endl;
}
if (!dll.HasImports())
{
std::wcout << L"DLL has no ImportTable" << std::endl;
}
else if (!dll.FixImports()) {
std::wcout << L"DLL FixImports failed" << std::endl;
}
if (!dll.HasRelocs()) {
std::wcout << L"DLL has no RelocTable" << std::endl;
}
else if (!dll.FixRelocs()) {
std::wcout << L"DLL FixRelocs failed" << std::endl;
}
if (!dll.CopyHeaderAndSections()) {
std::wcout << L"DLL CopyHeaderAndSections failed" << std::endl;
}
std::wcout << L"DLL mapping succesful, "
<< "BaseAddress: " << WHEXOUT << dll.GetBaseAddress()
<< ", EntryPoint: " << WHEXOUT << dll.GetEntryPoint() << std::endl;
PVOID targetAddr = (PVOID)(dll.GetBaseAddress());
std::wcout << "ADDRESS -> " << WHEXOUT << targetAddr << std::endl;
if (!ki.VUnlink(targetPID, targetAddr)) {
std::wcout << L"VUnlink failed" << std::endl;
}
struct loadlib_user_data llua;
char * cryDllDir = new char[sizeof md.FullDllPath];
std::memcpy(cryDllDir, md.FullDllPath, sizeof md.FullDllPath);
PathRemoveFileSpecA(cryDllDir);
llua.additionalDllSearchDirectories.push_back(std::string(cryDllDir));
delete cryDllDir;
for (auto& dir : llua.additionalDllSearchDirectories) {
std::wcout << L"AdditionalDLLDir: "
<< std::wstring(dir.begin(), dir.end()) << std::endl;
}
PatternScanner pscan(&loadlib_data, &llua);
pscan.Scan(md, "01 23 45 67 89 ?? ab cd ef ?? AB CD EF FF");
// TODO: get gEnv with 0F B7 00 48 83 C4 28 C3
UINT64 globalEnvAddr = 0;
for (MODULE_DATA& md : modules) {
if (!strncmp(md.BaseDllName, "CryAction.dll",
sizeof md.BaseDllName)) {
//48 8B 48 20 48 8B 01 FF 90 20 01 00 00
globalEnvAddr = (UINT64)md.DllBase + 0x70E848;
break;
}
}
BYTE cc[] = { /* push rax; push rbx; push rcx; push rdx; push rsi;
push rdi; push rsp; push rbp; push r8; push r9;
push r10; push r11; push r12; push r13; push r14;
push r15 */
0x50, 0x53, 0x51, 0x52, 0x56, 0x57,
0x54, 0x55, 0x41, 0x50, 0x41, 0x51,
0x41, 0x52, 0x41, 0x53, 0x41, 0x54,
0x41, 0x55, 0x41, 0x56, 0x41, 0x57,
/* nops */
0x90, 0x90, 0x90, 0x90, 0x90,
/* mov rcx, 0x0000000000000000 */
0x48, 0xB9,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
/* mov rax, 0x0000000000000000 */
0x48, 0xB8,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
/* call rax */
0xFF, 0xD0,
/* nops */
0x90, 0x90,
/* pop r15; pop r14; pop r13; pop r12; pop r11;
pop r10; pop r9; pop r8; pop rbp; pop rsp;
pop rdi; pop rsi; pop rdx; pop rcx; pop rbx;
pop rax */
0x41, 0x5F, 0x41, 0x5E, 0x41, 0x5D,
0x41, 0x5C, 0x41, 0x5B, 0x41, 0x5A,
0x41, 0x59, 0x41, 0x58, 0x5D, 0x5C,
0x5F, 0x5E, 0x5A, 0x59, 0x5B, 0x58,
/* nops */
0x90, 0x90,
/* mov rax, 0x0000000000000000 */
0x48, 0xB8,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
/* jmp rax */
0xFF, 0xE0 };
*(UINT64 *)((BYTE *)cc + 31) = globalEnvAddr;
*(UINT64 *)((BYTE *)cc + 41) = dll.GetEntryPoint();
/* PATTERN: 48 89 4C 24 08 48 83 EC 48 +275 */
UINT64 jumpBackAddr = (UINT64)md.DllBase + 0x70885;
*(UINT64 *)((BYTE *)cc + 81) = jumpBackAddr;
printBuf(cc, sizeof cc, 32);
KMemoryBuf::Wpm<sizeof cc>(targetPID, (PVOID)targetAddr, &cc[0]);
#if 1
BYTE dd[] = { 0x48, 0xB8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE0 };
*(UINT64 *)((BYTE *)dd + 2) = (UINT64)targetAddr;
printBuf(dd, sizeof dd, 32);
/* PATTERN: 48 89 4C 24 08 48 83 EC 48 +9 */
KMemoryBuf::Wpm<sizeof dd>(targetPID, (PVOID)((UINT64)md.DllBase + 0x70619), &dd[0]);
#endif
}
#endif
#if 0
UINT64 m_idForced = KMemory::Rpm<UINT64>(targetPID,
(PVOID)((UINT64)g_pEnv + 786970));
std::wcout << L"m_pidForced.........: 0x" << WHEXOUT << m_idForced << std::endl;
UINT64 m_pISystem = KMemory::Rpm<UINT64>(targetPID,
(PVOID)((UINT64)g_pEnv + 104));
std::wcout << L"m_pISystem..........: 0x" << WHEXOUT << m_pISystem << std::endl;
UINT16 m_freeListStartIndex = KMemory::Rpm<UINT16>(targetPID,
(PVOID)((UINT64)g_pEnv + 112 + 262136));
std::wcout << L"m_freeListStartIndex: 0x" << WHEXOUT << m_freeListStartIndex << std::endl;
UINT16 m_maxUsedEntityIndex = KMemory::Rpm<UINT16>(targetPID,
(PVOID)((UINT64)g_pEnv + 112 + 262138));
std::wcout << L"m_maxUsedEntityIndex: 0x" << WHEXOUT << m_maxUsedEntityIndex << std::endl;
#endif
#if 0
//UINT64 startOffsetMaxUsedEntities = (m_maxUsedEntityIndex < m_freeListStartIndex ? m_maxUsedEntityIndex : m_freeListStartIndex) * sizeof(PVOID);
UINT64 startOffsetMaxUsedEntities = m_freeListStartIndex * sizeof(PVOID);
//startOffsetMaxUsedEntities -= 50 * sizeof(PVOID);
std::array<PVOID, 1024> entities;
if (KInterface::getInstance().RPM(targetPID, (PVOID)((UINT64)g_pEnv + 112 + 262140 + 12 + startOffsetMaxUsedEntities), (BYTE*)&entities, sizeof entities, NULL)) {
for (PVOID ent : entities) {
if (ent == NULL) {
continue;
}
const UINT64 additional_offset = 14;
BYTE entity[412];
//std::cout << "Got Entity: " << std::hex << ent << ", ";
if (KInterface::getInstance().RPM(targetPID, ent, (BYTE*)&entity[0], sizeof entity, NULL)) {
PVOID name_str = &entity[16 + additional_offset];
UINT32 id = *(UINT32 *)&entity[260 + additional_offset];
UINT32 flags = *(UINT32 *)&entity[268 + additional_offset];
UINT8 extended = *(UINT8 *)&entity[272 + additional_offset];
UINT16 keepAlive = *(UINT16 *)&entity[368 + additional_offset];
float pos_x = *(float *)&entity[274 + additional_offset];
float pos_y = *(float *)&entity[278 + additional_offset];
float pos_z = *(float *)&entity[282 + additional_offset];
if (keepAlive == 0 || id == 0) {
continue;
}
//if ((flags & 0x2000 /* ENTITY_FLAG_HAS_AI */) == 0 && (flags & 0x8000 /* ENTITY_FLAG_CAMERA_SOURCE */) == 0) {
#if 1
std::cout << "Name Ptr: " << std::hex << name_str
<< ", id: " << std::setw(8) << std::hex << (UINT32)id
<< ", flags: " << std::setw(8) << std::hex << (UINT32)flags
<< ", extended: " << std::setw(8) << std::hex << (UINT32)extended
<< ", keepAlive: " << std::setw(8) << std::hex << (UINT16)keepAlive
<< ", pos_x: " << std::setw(8) << (float)pos_x
<< ", pos_y: " << std::setw(8) << (float)pos_y
<< ", pos_z: " << std::setw(8) << (float)pos_z
<< std::endl;
#endif
//}
printBuf(entity, sizeof entity, 32);
//break;
}
else std::wcerr << "Get Entity failed" << std::endl;
}
}
else std::wcerr << "Get EntityArray failed" << std::endl;
#endif
#if 0
BYTE tmp[sizeof SSystemGlobalEnvironment * 2] = { 0 };
SSIZE_T siz = KMemoryBuf::Rpm<sizeof tmp>(targetPID, (PVOID)(g_pEnv), tmp);
SSystemGlobalEnvironment *gEnv = (SSystemGlobalEnvironment *)&tmp[0];
std::wcout << std::hex
<< gEnv->p3DEngine << ", "
<< gEnv->pEntitySystem << ", "
<< gEnv->bMultiplayer << ", "
<< gEnv->mMainThreadId << ", "
<< gEnv->nMainFrameID << ", "
<< gEnv->szDebugStatus << ", "
<< gEnv->pMonoRuntime << ", "
<< gEnv->callbackStartSection << ", "
<< gEnv->callbackEndSection << ", "
<< gEnv->bUnattendedMode << ", "
<< gEnv->bTesting << ", "
<< gEnv->bNoRandomSeed << ", "
<< gEnv->bDeepProfiling << ", "
<< std::endl;
/* Found: void CEntitySystem::LoadInternalState(IDataReadStream& reader)
* search for String "ExistingEntity: '%s' '%s'"
*/
UINT64 m_EntityArray = KMemory::Rpm<UINT64>(targetPID,
(PVOID)((UINT64)gEnv->pEntitySystem + 0x40078));
//m_EntityArray += 0x40078;
std::wcout << WHEXOUT
<< m_EntityArray
<< std::endl;
USHORT nops;
nops = KMemory::Rpm<USHORT>(targetPID,
(PVOID)((UINT64)md.DllBase + 0x12C3C7));
std::wcout << std::hex << "+++ " << nops << std::endl;
nops = 0x9090;
KMemory::Wpm<USHORT>(targetPID,
(PVOID)((UINT64)md.DllBase + 0x12C3C7), &nops);
#if 0
UINT64 tmp2[1024];
SSIZE_T siz2 = KMemoryBuf::Rpm<sizeof tmp2>(targetPID, (PVOID)(m_EntityArray), (PBYTE)tmp2);
SIZE_T i = 0;
for (UINT64 val : tmp2) {
if (val)
std::wcout << WHEXOUT << val << ", ";
if (++i % 16 == 0)
std::wcout << std::endl;
}
/*
if (siz2 > 0)
printBuf(tmp2, sizeof tmp2, 64);
*/
#endif
#endif
#if 0
SSIZE_T siz3;
static Diff<65535> diff = { 0 };
siz3 = KScan::BinDiffSimple(targetPID, (PVOID)(m_EntityArray), &diff);
if (siz3 > 0) {
std::wcout << L"Got " << std::dec << diff.diffs.size() << L" diffs" << std::endl;
for (auto& e : diff.diffs) {
std::wcout << std::dec << L"0x"
<< std::hex << (PVOID)(/*(ULONG_PTR)(m_EntityArray)+*/e.first)
<< " - " << std::hex << e.second
<< L": ";
printBuf((UCHAR *)((ULONG_PTR)(diff.current_buffer) + e.first), e.second, e.second);
}
}
#endif
#if 0
#if 1
//UCHAR scan[1024] = { 0 };
UCHAR scan[] = "anti_alles";
SSIZE_T found = KScan::ScanSimple<UCHAR, sizeof scan>(targetPID,
(PVOID)(m_EntityArray), 65535, scan);
#else
SSIZE_T found = (SSIZE_T)(pIEntitySystem)+8192;
#endif
if (found >= 0) {
std::wcout << "FOUND: 0x" << std::hex << (PVOID)found << std::endl;
UCHAR tmp[4096] = { 0 };
SSIZE_T siz = KMemoryBuf::Rpm<UCHAR, sizeof tmp>(targetPID, (PVOID)found, tmp);
if (siz > 0) {
printBuf(tmp, sizeof tmp, 64);
#if 0
UINT64 i;
for (i = 0; i < sizeof tmp; i += 8) {
UINT64 value = *(UINT64 *)&tmp[i];
if (value)
printf("0x%p ", (PVOID)value);
}
printf("\nGot %llu entities ..\n", i);
#endif
}
}
#endif
#endif
}
#if 0
else if (!strncmp(md.BaseDllName, "CryRenderD3D11.dll",
sizeof md.BaseDllName))
{
UINT32 displayWidth = KMemory::Rpm<UINT32>(targetPID,
(PVOID)((ULONGLONG)md.DllBase + /* 0x19F0FE */ 0x5EA870));
UINT32 displayHeight = KMemory::Rpm<UINT32>(targetPID,
(PVOID)((ULONGLONG)md.DllBase + /* 0x19F0F0 */ 0x5EA9DC));
std::wcout << L"Display.........: " << std::dec << displayWidth
<< " x " << displayHeight << std::endl;
}
#endif
#if 0
else if (!strncmp(md.BaseDllName, "ntdll.dll",
sizeof md.BaseDllName))
{
UCHAR tmp[8192] = { 0 };
SSIZE_T siz = KMemoryBuf::Rpm<UCHAR, sizeof tmp>(targetPID, (PVOID)((ULONGLONG)md.DllBase), tmp);
/*
if (siz > 0)
printBuf(tmp, sizeof tmp, 64);
UCHAR scan[] = { 0xCC, 0xCC, 0xCC, 0xCC, 0xCC, 0xCC, 0xCC, 0xCC, 0xCC, 0xCC, 0xCC, 0xCC, 0xCC, 0xCC, 0xCC, 0xCC };
SSIZE_T found = KScan::ScanSimple<UCHAR, sizeof scan>(targetPID,
(PVOID)((ULONGLONG)md.DllBase), sizeof tmp, scan);
std::wcout << "FOUND: 0x" << std::hex << (found - (ULONGLONG)md.DllBase) << std::endl;
*/
static Diff<10> diff = { 0 };
siz = KScan::BinDiffSimple(targetPID, (PVOID)((ULONGLONG)md.DllBase), &diff);
if (siz > 0) {
std::wcout << L"Got " << std::dec << diff.diffs.size() << L" diffs" << std::endl;
for (auto& e : diff.diffs) {
printBuf((UCHAR *)((ULONGLONG)md.DllBase + e.first), e.second, e.second);
/*
std::wcout << std::dec << L" addr: " << e.first
<< std::endl << L" size: " << e.second
<< std::endl;
*/
}
}
}
#endif
}
}
}
catch (std::runtime_error& err) {
std::wcout << err.what() << std::endl;
}
} while (running);
std::wcout << L"Driver shutdown .." << std::endl;
ki.Exit();
return 0;
}
|