parent
1b35119de4
commit
051140175d
@ -0,0 +1,38 @@
|
||||
#include <vmprofiler.hpp>
|
||||
|
||||
namespace vm::handler::profile
|
||||
{
|
||||
vm::handler::profile_t rdtsc = {
|
||||
// RDTSC
|
||||
// SUB RBP, 0x8
|
||||
// MOV [RBP], EDX
|
||||
// MOV [RBP+0x4], EAX
|
||||
"RDTSC",
|
||||
RDTSC,
|
||||
NULL,
|
||||
{ { // RDTSC
|
||||
[]( const zydis_decoded_instr_t &instr ) -> bool { return instr.mnemonic == ZYDIS_MNEMONIC_RDTSC; },
|
||||
// SUB RBP, 0x8
|
||||
[]( const zydis_decoded_instr_t &instr ) -> bool {
|
||||
return instr.mnemonic == ZYDIS_MNEMONIC_SUB &&
|
||||
instr.operands[ 0 ].type == ZYDIS_OPERAND_TYPE_REGISTER &&
|
||||
instr.operands[ 0 ].reg.value == ZYDIS_REGISTER_RBP &&
|
||||
instr.operands[ 1 ].type == ZYDIS_OPERAND_TYPE_IMMEDIATE &&
|
||||
instr.operands[ 1 ].imm.value.u == 0x8;
|
||||
},
|
||||
// MOV [RBP], EDX
|
||||
[]( const zydis_decoded_instr_t &instr ) -> bool {
|
||||
return instr.mnemonic == ZYDIS_MNEMONIC_MOV && instr.operands[ 0 ].type == ZYDIS_OPERAND_TYPE_MEMORY &&
|
||||
instr.operands[ 0 ].mem.base == ZYDIS_REGISTER_RBP &&
|
||||
instr.operands[ 1 ].type == ZYDIS_OPERAND_TYPE_REGISTER &&
|
||||
instr.operands[ 1 ].reg.value == ZYDIS_REGISTER_EDX;
|
||||
},
|
||||
// MOV [RBP+0x4], EAX
|
||||
[]( const zydis_decoded_instr_t &instr ) -> bool {
|
||||
return instr.mnemonic == ZYDIS_MNEMONIC_MOV && instr.operands[ 0 ].type == ZYDIS_OPERAND_TYPE_MEMORY &&
|
||||
instr.operands[ 0 ].mem.base == ZYDIS_REGISTER_RBP &&
|
||||
instr.operands[ 0 ].mem.disp.value == 0x4 &&
|
||||
instr.operands[ 1 ].type == ZYDIS_OPERAND_TYPE_REGISTER &&
|
||||
instr.operands[ 1 ].reg.value == ZYDIS_REGISTER_EAX;
|
||||
} } } };
|
||||
}
|
@ -0,0 +1,35 @@
|
||||
#include <vmprofiler.hpp>
|
||||
|
||||
namespace vm::handler::profile
|
||||
{
|
||||
vm::handler::profile_t readcr3 = {
|
||||
// MOV RAX, CR3
|
||||
// SUB RBP, 0x8
|
||||
// MOV [RBP], RAX
|
||||
"READCR3",
|
||||
READCR3,
|
||||
NULL,
|
||||
{ { // MOV RAX, CR3
|
||||
[]( const zydis_decoded_instr_t &instr ) -> bool {
|
||||
return instr.mnemonic == ZYDIS_MNEMONIC_MOV &&
|
||||
instr.operands[ 0 ].type == ZYDIS_OPERAND_TYPE_REGISTER &&
|
||||
instr.operands[ 0 ].reg.value == ZYDIS_REGISTER_RAX &&
|
||||
instr.operands[ 1 ].type == ZYDIS_OPERAND_TYPE_REGISTER &&
|
||||
instr.operands[ 1 ].reg.value == ZYDIS_REGISTER_CR3;
|
||||
},
|
||||
// SUB RBP, 0x8
|
||||
[]( const zydis_decoded_instr_t &instr ) -> bool {
|
||||
return instr.mnemonic == ZYDIS_MNEMONIC_SUB &&
|
||||
instr.operands[ 0 ].type == ZYDIS_OPERAND_TYPE_REGISTER &&
|
||||
instr.operands[ 0 ].reg.value == ZYDIS_REGISTER_RBP &&
|
||||
instr.operands[ 1 ].type == ZYDIS_OPERAND_TYPE_IMMEDIATE &&
|
||||
instr.operands[ 1 ].imm.value.u == 0x8;
|
||||
},
|
||||
// MOV [RBP], RAX
|
||||
[]( const zydis_decoded_instr_t &instr ) -> bool {
|
||||
return instr.mnemonic == ZYDIS_MNEMONIC_MOV && instr.operands[ 0 ].type == ZYDIS_OPERAND_TYPE_MEMORY &&
|
||||
instr.operands[ 0 ].mem.base == ZYDIS_REGISTER_RBP &&
|
||||
instr.operands[ 1 ].type == ZYDIS_OPERAND_TYPE_REGISTER &&
|
||||
instr.operands[ 1 ].reg.value == ZYDIS_REGISTER_RAX;
|
||||
} } } };
|
||||
} // namespace vm::handler::profile
|
@ -0,0 +1,36 @@
|
||||
#include <vmprofiler.hpp>
|
||||
|
||||
namespace vm::handler::profile
|
||||
{
|
||||
vm::handler::profile_t writecr3 = {
|
||||
// MOV RAX, [RBP]
|
||||
// ADD RBP, 0x8
|
||||
// MOV CR3, RAX
|
||||
"WRITECR3",
|
||||
WRITECR3,
|
||||
NULL,
|
||||
{ { // MOV RAX, [RBP]
|
||||
[]( const zydis_decoded_instr_t &instr ) -> bool {
|
||||
return instr.mnemonic == ZYDIS_MNEMONIC_MOV &&
|
||||
instr.operands[ 0 ].type == ZYDIS_OPERAND_TYPE_REGISTER &&
|
||||
instr.operands[ 0 ].reg.value == ZYDIS_REGISTER_RAX &&
|
||||
instr.operands[ 1 ].type == ZYDIS_OPERAND_TYPE_MEMORY &&
|
||||
instr.operands[ 1 ].mem.base == ZYDIS_REGISTER_RBP;
|
||||
},
|
||||
// ADD RBP, 0x8
|
||||
[]( const zydis_decoded_instr_t &instr ) -> bool {
|
||||
return instr.mnemonic == ZYDIS_MNEMONIC_ADD &&
|
||||
instr.operands[ 0 ].type == ZYDIS_OPERAND_TYPE_REGISTER &&
|
||||
instr.operands[ 0 ].reg.value == ZYDIS_REGISTER_RBP &&
|
||||
instr.operands[ 1 ].type == ZYDIS_OPERAND_TYPE_IMMEDIATE &&
|
||||
instr.operands[ 1 ].imm.value.u == 0x8;
|
||||
},
|
||||
// MOV CR3, RAX
|
||||
[]( const zydis_decoded_instr_t &instr ) -> bool {
|
||||
return instr.mnemonic == ZYDIS_MNEMONIC_MOV &&
|
||||
instr.operands[ 0 ].type == ZYDIS_OPERAND_TYPE_REGISTER &&
|
||||
instr.operands[ 0 ].reg.value == ZYDIS_REGISTER_CR3 &&
|
||||
instr.operands[ 1 ].type == ZYDIS_OPERAND_TYPE_REGISTER &&
|
||||
instr.operands[ 1 ].reg.value == ZYDIS_REGISTER_RAX;
|
||||
} } } };
|
||||
} // namespace vm::handler::profile
|
Loading…
Reference in new issue