aboutsummaryrefslogtreecommitdiff
path: root/Hunted/Hunted.cpp
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2019-09-18 23:32:59 +0200
committerToni Uhlig <matzeton@googlemail.com>2019-09-18 23:32:59 +0200
commit10c5adbb944d65a06dd91697e12fd0ead90f8a30 (patch)
tree3d2d9dcdc0093aa4dbe29dd77a81c11b7d8fdfd4 /Hunted/Hunted.cpp
parentadf6f1176e4358e42a43fb884abbd429b69f1f28 (diff)
jump to RWX page and back
Diffstat (limited to 'Hunted/Hunted.cpp')
-rw-r--r--Hunted/Hunted.cpp21
1 files changed, 14 insertions, 7 deletions
diff --git a/Hunted/Hunted.cpp b/Hunted/Hunted.cpp
index c020244..ba0a0ed 100644
--- a/Hunted/Hunted.cpp
+++ b/Hunted/Hunted.cpp
@@ -302,9 +302,16 @@ class Vec3_tpl<float> size(12):
std::wcout << L"VUnlink failed" << std::endl;
}
std::wcout << "ADDRESS -> " << WHEXOUT << targetAddr << std::endl;
- BYTE cc[] = { 0x90, 0x90, 0x90, 0x90, 0x90, 0xeb, 0xfd };
+ //BYTE cc[] = { 0x90, 0x90, 0x90, 0x90, 0x90, 0xeb, 0xfd };
+ BYTE cc[] = { 0x90, 0x90, 0x90, 0x90, 0x90,
+ 0x48, 0xB8,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0xFF, 0xE0 };
+ UINT64 jumpBackAddr = (UINT64)md.DllBase + 0x70885;
+ *(UINT64 *)((BYTE *)cc + 7) = jumpBackAddr;
printBuf(cc, sizeof cc, 32);
KMemoryBuf::Wpm<sizeof cc>(targetPID, (PVOID)targetAddr, &cc[0]);
+
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);
@@ -445,7 +452,7 @@ class Vec3_tpl<float> size(12):
<< L": ";
printBuf((UCHAR *)((ULONG_PTR)(diff.current_buffer) + e.first), e.second, e.second);
}
- }
+ }
#endif
#if 0
#if 1
@@ -472,7 +479,7 @@ class Vec3_tpl<float> size(12):
printf("\nGot %llu entities ..\n", i);
#endif
}
- }
+ }
#endif
#endif
}
@@ -486,7 +493,7 @@ class Vec3_tpl<float> size(12):
(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",
@@ -516,10 +523,10 @@ class Vec3_tpl<float> size(12):
*/
}
}
- }
+ }
#endif
- }
- }
+ }
+}
}
catch (std::runtime_error& err) {
std::wcout << err.what() << std::endl;