|
|
@ -31,4 +31,35 @@ namespace vm::handler::profile
|
|
|
|
instr.operands[ 1 ].type == ZYDIS_OPERAND_TYPE_REGISTER &&
|
|
|
|
instr.operands[ 1 ].type == ZYDIS_OPERAND_TYPE_REGISTER &&
|
|
|
|
instr.operands[ 1 ].reg.value == ZYDIS_REGISTER_RAX;
|
|
|
|
instr.operands[ 1 ].reg.value == ZYDIS_REGISTER_RAX;
|
|
|
|
} } } };
|
|
|
|
} } } };
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
vm::handler::profile_t pushvspdw = {
|
|
|
|
|
|
|
|
// MOV EAX, EBP
|
|
|
|
|
|
|
|
// SUB RBP, 0x4
|
|
|
|
|
|
|
|
// MOV [RBP], EAX
|
|
|
|
|
|
|
|
"PUSHVSPDW",
|
|
|
|
|
|
|
|
PUSHVSPDW,
|
|
|
|
|
|
|
|
NULL,
|
|
|
|
|
|
|
|
{ { // MOV EAX, EBP
|
|
|
|
|
|
|
|
[]( 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_REGISTER &&
|
|
|
|
|
|
|
|
instr.operands[ 1 ].reg.value == ZYDIS_REGISTER_EBP;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
// 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;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
// MOV [RBP], 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[ 1 ].type == ZYDIS_OPERAND_TYPE_REGISTER &&
|
|
|
|
|
|
|
|
instr.operands[ 1 ].reg.value == ZYDIS_REGISTER_EAX;
|
|
|
|
|
|
|
|
} } } };
|
|
|
|
} // namespace vm::handler::profile
|
|
|
|
} // namespace vm::handler::profile
|