parent
d96f065dd3
commit
1b35119de4
@ -0,0 +1,69 @@
|
|||||||
|
#include <vmprofiler.hpp>
|
||||||
|
|
||||||
|
namespace vm::handler::profile
|
||||||
|
{
|
||||||
|
vm::handler::profile_t idivdw = {
|
||||||
|
// MOV EDX, [RBP]
|
||||||
|
// MOV EAX, [RBP+0x4]
|
||||||
|
// SUB RBP, 0x4
|
||||||
|
// IDIV [RBP+0xC]
|
||||||
|
// MOV [RBP+0x8], EDX
|
||||||
|
// MOV [RBP+0xC], EAX
|
||||||
|
// PUSHFQ
|
||||||
|
// POP [RBP]
|
||||||
|
"IDIVDW",
|
||||||
|
IDIVDW,
|
||||||
|
NULL,
|
||||||
|
{ { // MOV EDX, [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_EDX &&
|
||||||
|
instr.operands[ 1 ].type == ZYDIS_OPERAND_TYPE_MEMORY &&
|
||||||
|
instr.operands[ 1 ].mem.base == ZYDIS_REGISTER_RBP;
|
||||||
|
},
|
||||||
|
// MOV EAX, [RBP+0x4]
|
||||||
|
[]( 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_EAX &&
|
||||||
|
instr.operands[ 1 ].type == ZYDIS_OPERAND_TYPE_MEMORY &&
|
||||||
|
instr.operands[ 1 ].mem.base == ZYDIS_REGISTER_RBP && instr.operands[ 1 ].mem.disp.value == 0x4;
|
||||||
|
},
|
||||||
|
// SUB RBP, 0x4
|
||||||
|
[]( 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 == 0x4;
|
||||||
|
},
|
||||||
|
// IDIV [RBP+0xC]
|
||||||
|
[]( const zydis_decoded_instr_t &instr ) -> bool {
|
||||||
|
return instr.mnemonic == ZYDIS_MNEMONIC_IDIV && instr.operands[ 0 ].type == ZYDIS_OPERAND_TYPE_MEMORY &&
|
||||||
|
instr.operands[ 0 ].mem.base == ZYDIS_REGISTER_RBP && instr.operands[ 0 ].mem.disp.value == 0xC;
|
||||||
|
},
|
||||||
|
// MOV [RBP+0x8], 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[ 0 ].mem.disp.value == 0x8 &&
|
||||||
|
instr.operands[ 1 ].type == ZYDIS_OPERAND_TYPE_REGISTER &&
|
||||||
|
instr.operands[ 1 ].reg.value == ZYDIS_REGISTER_EDX;
|
||||||
|
},
|
||||||
|
// MOV [RBP+0xC], 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 == 0xC &&
|
||||||
|
instr.operands[ 1 ].type == ZYDIS_OPERAND_TYPE_REGISTER &&
|
||||||
|
instr.operands[ 1 ].reg.value == ZYDIS_REGISTER_EAX;
|
||||||
|
},
|
||||||
|
// PUSHFQ
|
||||||
|
[]( const zydis_decoded_instr_t &instr ) -> bool { return instr.mnemonic == ZYDIS_MNEMONIC_PUSHFQ; },
|
||||||
|
// POP [RBP]
|
||||||
|
[]( const zydis_decoded_instr_t &instr ) -> bool {
|
||||||
|
return instr.mnemonic == ZYDIS_MNEMONIC_POP && instr.operands[ 0 ].type == ZYDIS_OPERAND_TYPE_MEMORY &&
|
||||||
|
instr.operands[ 0 ].mem.base == ZYDIS_REGISTER_RBP;
|
||||||
|
} } } };
|
||||||
|
} // namespace vm::handler::profile
|
@ -0,0 +1,136 @@
|
|||||||
|
#include <vmprofiler.hpp>
|
||||||
|
|
||||||
|
namespace vm::handler::profile
|
||||||
|
{
|
||||||
|
vm::handler::profile_t imulq = {
|
||||||
|
// MOV RDX, [RBP]
|
||||||
|
// MOV RAX, [RBP+0x8]
|
||||||
|
// SUB RBP, 0x8
|
||||||
|
// IMUL RDX
|
||||||
|
// MOV [RBP+0x8], RDX
|
||||||
|
// MOV [RBP+0x10], RAX
|
||||||
|
// PUSHFQ
|
||||||
|
// POP [RBP]
|
||||||
|
"IMULQ",
|
||||||
|
IMULQ,
|
||||||
|
NULL,
|
||||||
|
{ { // MOV RDX, [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_RDX &&
|
||||||
|
instr.operands[ 1 ].type == ZYDIS_OPERAND_TYPE_MEMORY &&
|
||||||
|
instr.operands[ 1 ].mem.base == ZYDIS_REGISTER_RBP;
|
||||||
|
},
|
||||||
|
// MOV RAX, [RBP+0x8]
|
||||||
|
[]( 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 && instr.operands[ 1 ].mem.disp.value == 0x8;
|
||||||
|
},
|
||||||
|
// 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;
|
||||||
|
},
|
||||||
|
// IMUL RDX
|
||||||
|
[]( const zydis_decoded_instr_t &instr ) -> bool {
|
||||||
|
return instr.mnemonic == ZYDIS_MNEMONIC_IMUL &&
|
||||||
|
instr.operands[ 0 ].type == ZYDIS_OPERAND_TYPE_REGISTER &&
|
||||||
|
instr.operands[ 0 ].reg.value == ZYDIS_REGISTER_RDX;
|
||||||
|
},
|
||||||
|
// MOV [RBP+0x8], RDX
|
||||||
|
[]( 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 == 0x8 &&
|
||||||
|
instr.operands[ 1 ].type == ZYDIS_OPERAND_TYPE_REGISTER &&
|
||||||
|
instr.operands[ 1 ].reg.value == ZYDIS_REGISTER_RDX;
|
||||||
|
},
|
||||||
|
// MOV [RBP+0x10], 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[ 0 ].mem.disp.value == 0x10 &&
|
||||||
|
instr.operands[ 1 ].type == ZYDIS_OPERAND_TYPE_REGISTER &&
|
||||||
|
instr.operands[ 1 ].reg.value == ZYDIS_REGISTER_RAX;
|
||||||
|
},
|
||||||
|
// PUSHFQ
|
||||||
|
[]( const zydis_decoded_instr_t &instr ) -> bool { return instr.mnemonic == ZYDIS_MNEMONIC_PUSHFQ; },
|
||||||
|
// POP [RBP]
|
||||||
|
[]( const zydis_decoded_instr_t &instr ) -> bool {
|
||||||
|
return instr.mnemonic == ZYDIS_MNEMONIC_POP && instr.operands[ 0 ].type == ZYDIS_OPERAND_TYPE_MEMORY &&
|
||||||
|
instr.operands[ 0 ].mem.base == ZYDIS_REGISTER_RBP;
|
||||||
|
} } } };
|
||||||
|
|
||||||
|
vm::handler::profile_t imuldw = {
|
||||||
|
// MOV EDX, [RBP]
|
||||||
|
// MOV EAX, [RBP+0x4]
|
||||||
|
// SUB RBP, 0x8
|
||||||
|
// IMUL EDX
|
||||||
|
// MOV [RBP+0x8], EDX
|
||||||
|
// MOV [RBP+0xC], EAX
|
||||||
|
// PUSHFQ
|
||||||
|
// POP [RBP]
|
||||||
|
"IMULDW",
|
||||||
|
IMULDW,
|
||||||
|
NULL,
|
||||||
|
{ { // MOV RDX, [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_EDX &&
|
||||||
|
instr.operands[ 1 ].type == ZYDIS_OPERAND_TYPE_MEMORY &&
|
||||||
|
instr.operands[ 1 ].mem.base == ZYDIS_REGISTER_RBP;
|
||||||
|
},
|
||||||
|
// MOV RAX, [RBP+0x4]
|
||||||
|
[]( 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_EAX &&
|
||||||
|
instr.operands[ 1 ].type == ZYDIS_OPERAND_TYPE_MEMORY &&
|
||||||
|
instr.operands[ 1 ].mem.base == ZYDIS_REGISTER_RBP && instr.operands[ 1 ].mem.disp.value == 0x4;
|
||||||
|
},
|
||||||
|
// 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;
|
||||||
|
},
|
||||||
|
// IMUL EDX
|
||||||
|
[]( const zydis_decoded_instr_t &instr ) -> bool {
|
||||||
|
return instr.mnemonic == ZYDIS_MNEMONIC_IMUL &&
|
||||||
|
instr.operands[ 0 ].type == ZYDIS_OPERAND_TYPE_REGISTER &&
|
||||||
|
instr.operands[ 0 ].reg.value == ZYDIS_REGISTER_EDX;
|
||||||
|
},
|
||||||
|
// MOV [RBP+0x8], 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[ 0 ].mem.disp.value == 0x8 &&
|
||||||
|
instr.operands[ 1 ].type == ZYDIS_OPERAND_TYPE_REGISTER &&
|
||||||
|
instr.operands[ 1 ].reg.value == ZYDIS_REGISTER_EDX;
|
||||||
|
},
|
||||||
|
// MOV [RBP+0xC], 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 == 0xC &&
|
||||||
|
instr.operands[ 1 ].type == ZYDIS_OPERAND_TYPE_REGISTER &&
|
||||||
|
instr.operands[ 1 ].reg.value == ZYDIS_REGISTER_EAX;
|
||||||
|
},
|
||||||
|
// PUSHFQ
|
||||||
|
[]( const zydis_decoded_instr_t &instr ) -> bool { return instr.mnemonic == ZYDIS_MNEMONIC_PUSHFQ; },
|
||||||
|
// POP [RBP]
|
||||||
|
[]( const zydis_decoded_instr_t &instr ) -> bool {
|
||||||
|
return instr.mnemonic == ZYDIS_MNEMONIC_POP && instr.operands[ 0 ].type == ZYDIS_OPERAND_TYPE_MEMORY &&
|
||||||
|
instr.operands[ 0 ].mem.base == ZYDIS_REGISTER_RBP;
|
||||||
|
} } } };
|
||||||
|
} // namespace vm::handler::profile
|
@ -0,0 +1,35 @@
|
|||||||
|
#include <vmprofiler.hpp>
|
||||||
|
|
||||||
|
namespace vm::handler::profile
|
||||||
|
{
|
||||||
|
vm::handler::profile_t readcr8 = {
|
||||||
|
// MOV RAX, CR8
|
||||||
|
// SUB RBP, 0x8
|
||||||
|
// MOV [RBP], RAX
|
||||||
|
"READCR8",
|
||||||
|
READCR8,
|
||||||
|
NULL,
|
||||||
|
{ { // MOV RAX, CR8
|
||||||
|
[]( 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_CR8;
|
||||||
|
},
|
||||||
|
// 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;
|
||||||
|
} } } };
|
||||||
|
}
|
Loading…
Reference in new issue