|
|
|
@ -3,13 +3,22 @@
|
|
|
|
|
namespace vm::handler::profile
|
|
|
|
|
{
|
|
|
|
|
vm::handler::profile_t addq = {
|
|
|
|
|
// MOV RAX, [RBP]
|
|
|
|
|
// ADD [RBP+8], RAX
|
|
|
|
|
// PUSHFQ
|
|
|
|
|
// POP [RBP]
|
|
|
|
|
"ADDQ",
|
|
|
|
|
ADDQ,
|
|
|
|
|
NULL,
|
|
|
|
|
{ { // ADD [RBP+8], RAX
|
|
|
|
|
{ { // 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+8], RAX
|
|
|
|
|
[]( const zydis_decoded_instr_t &instr ) -> bool {
|
|
|
|
|
return instr.mnemonic == ZYDIS_MNEMONIC_ADD && instr.operands[ 0 ].type == ZYDIS_OPERAND_TYPE_MEMORY &&
|
|
|
|
|
instr.operands[ 0 ].mem.base == ZYDIS_REGISTER_RBP &&
|
|
|
|
@ -26,13 +35,31 @@ namespace vm::handler::profile
|
|
|
|
|
} } } };
|
|
|
|
|
|
|
|
|
|
vm::handler::profile_t adddw = {
|
|
|
|
|
// MOV EAX, [RBP]
|
|
|
|
|
// SUB RBP, 0x4
|
|
|
|
|
// ADD [RBP+8], EAX
|
|
|
|
|
// PUSHFQ
|
|
|
|
|
// POP [RBP]
|
|
|
|
|
"ADDDW",
|
|
|
|
|
ADDDW,
|
|
|
|
|
NULL,
|
|
|
|
|
{ { // ADD [RBP+8], EAX
|
|
|
|
|
{ { // MOV EAX, [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_EAX &&
|
|
|
|
|
instr.operands[ 1 ].type == ZYDIS_OPERAND_TYPE_MEMORY &&
|
|
|
|
|
instr.operands[ 1 ].mem.base == ZYDIS_REGISTER_RBP;
|
|
|
|
|
},
|
|
|
|
|
// 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;
|
|
|
|
|
},
|
|
|
|
|
// ADD [RBP+8], EAX
|
|
|
|
|
[]( const zydis_decoded_instr_t &instr ) -> bool {
|
|
|
|
|
return instr.mnemonic == ZYDIS_MNEMONIC_ADD && instr.operands[ 0 ].type == ZYDIS_OPERAND_TYPE_MEMORY &&
|
|
|
|
|
instr.operands[ 0 ].mem.base == ZYDIS_REGISTER_RBP &&
|
|
|
|
@ -49,13 +76,31 @@ namespace vm::handler::profile
|
|
|
|
|
} } } };
|
|
|
|
|
|
|
|
|
|
vm::handler::profile_t addw = {
|
|
|
|
|
// MOV AX, [RBP]
|
|
|
|
|
// SUB RBP, 0x6
|
|
|
|
|
// ADD [RBP+8], AX
|
|
|
|
|
// PUSHFQ
|
|
|
|
|
// POP [RBP]
|
|
|
|
|
"ADDW",
|
|
|
|
|
ADDW,
|
|
|
|
|
NULL,
|
|
|
|
|
{ { // ADD [RBP+8], AX
|
|
|
|
|
{ { // MOV AX, [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_AX &&
|
|
|
|
|
instr.operands[ 1 ].type == ZYDIS_OPERAND_TYPE_MEMORY &&
|
|
|
|
|
instr.operands[ 1 ].mem.base == ZYDIS_REGISTER_RBP;
|
|
|
|
|
},
|
|
|
|
|
// SUB RBP, 0x6
|
|
|
|
|
[]( 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 == 0x6;
|
|
|
|
|
},
|
|
|
|
|
// ADD [RBP+8], AX
|
|
|
|
|
[]( const zydis_decoded_instr_t &instr ) -> bool {
|
|
|
|
|
return instr.mnemonic == ZYDIS_MNEMONIC_ADD && instr.operands[ 0 ].type == ZYDIS_OPERAND_TYPE_MEMORY &&
|
|
|
|
|
instr.operands[ 0 ].mem.base == ZYDIS_REGISTER_RBP &&
|
|
|
|
|