parent
1f748ab668
commit
c932e71cdd
@ -0,0 +1,34 @@
|
|||||||
|
#include "../../include/vmprofiler.hpp"
|
||||||
|
|
||||||
|
namespace vm
|
||||||
|
{
|
||||||
|
namespace handler
|
||||||
|
{
|
||||||
|
namespace profile
|
||||||
|
{
|
||||||
|
vm::handler::profile_t lrflags = {
|
||||||
|
// PUSH [RBP]
|
||||||
|
// ADD RBP, 0x8
|
||||||
|
// POPFQ
|
||||||
|
"LRFLAGS",
|
||||||
|
LRFLAGS,
|
||||||
|
NULL,
|
||||||
|
{ { // PUSH [RBP]
|
||||||
|
[]( const zydis_decoded_instr_t &instr ) -> bool {
|
||||||
|
return instr.mnemonic == ZYDIS_MNEMONIC_PUSH &&
|
||||||
|
instr.operands[ 0 ].type == ZYDIS_OPERAND_TYPE_MEMORY &&
|
||||||
|
instr.operands[ 0 ].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;
|
||||||
|
},
|
||||||
|
// POPFQ
|
||||||
|
[]( const zydis_decoded_instr_t &instr ) -> bool {
|
||||||
|
return instr.mnemonic == ZYDIS_MNEMONIC_POPFQ;
|
||||||
|
} } } };
|
||||||
|
}
|
||||||
|
} // namespace handler
|
||||||
|
} // namespace vm
|
Loading…
Reference in new issue