|
|
|
@ -3,11 +3,8 @@
|
|
|
|
|
#include <iostream>
|
|
|
|
|
#include <thread>
|
|
|
|
|
#include <vmlocate.hpp>
|
|
|
|
|
|
|
|
|
|
#include "vmemu_t.hpp"
|
|
|
|
|
|
|
|
|
|
#define NUM_THREADS 20
|
|
|
|
|
|
|
|
|
|
int __cdecl main(int argc, const char* argv[]) {
|
|
|
|
|
argparse::argument_parser_t parser("VMEmu",
|
|
|
|
|
"VMProtect 3 VM Handler Emulator");
|
|
|
|
@ -116,8 +113,9 @@ int __cdecl main(int argc, const char* argv[]) {
|
|
|
|
|
const auto vm_entries = vm::locate::get_vm_entries(module_base, image_size);
|
|
|
|
|
std::printf("> number of vm entries = %d\n", vm_entries.size());
|
|
|
|
|
|
|
|
|
|
// TODO: rewrite this, just testing get_vm_entries...
|
|
|
|
|
for (const auto& [vm_entry_rva, encrypted_rva] : vm_entries) {
|
|
|
|
|
const auto vm_entry_rva =
|
|
|
|
|
std::strtoull(parser.get<std::string>("vmentry").c_str(), nullptr, 16);
|
|
|
|
|
|
|
|
|
|
vm::vmctx_t vmctx(module_base, image_base, image_size, vm_entry_rva);
|
|
|
|
|
if (!vmctx.init()) {
|
|
|
|
|
std::printf(
|
|
|
|
@ -140,4 +138,3 @@ int __cdecl main(int argc, const char* argv[]) {
|
|
|
|
|
emu.emulate();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|