|
|
|
@ -13,8 +13,14 @@ namespace vm
|
|
|
|
|
const auto update_key = &transforms[transform::type::update_key];
|
|
|
|
|
|
|
|
|
|
if (generic_decrypt_0->mnemonic != ZYDIS_MNEMONIC_INVALID)
|
|
|
|
|
operand = transform::apply(generic_decrypt_0->operands[0].size,
|
|
|
|
|
generic_decrypt_0->mnemonic, operand, rolling_key);
|
|
|
|
|
{
|
|
|
|
|
operand = transform::apply(
|
|
|
|
|
generic_decrypt_0->operands[0].size,
|
|
|
|
|
generic_decrypt_0->mnemonic, operand,
|
|
|
|
|
// check to see if this instruction has an IMM...
|
|
|
|
|
transform::has_imm(generic_decrypt_0) ?
|
|
|
|
|
generic_decrypt_0->operands[1].imm.value.u : 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// apply transformation with rolling decrypt key...
|
|
|
|
|
operand = transform::apply(key_decrypt->operands[0].size,
|
|
|
|
@ -149,8 +155,14 @@ namespace vm
|
|
|
|
|
key_decrypt->mnemonic, operand, rolling_key);
|
|
|
|
|
|
|
|
|
|
if (generic_decrypt_0->mnemonic != ZYDIS_MNEMONIC_INVALID)
|
|
|
|
|
operand = transform::apply(generic_decrypt_0->operands[0].size,
|
|
|
|
|
generic_decrypt_0->mnemonic, operand, rolling_key);
|
|
|
|
|
{
|
|
|
|
|
operand = transform::apply(
|
|
|
|
|
generic_decrypt_0->operands[0].size,
|
|
|
|
|
generic_decrypt_0->mnemonic, operand,
|
|
|
|
|
// check to see if this instruction has an IMM...
|
|
|
|
|
transform::has_imm(generic_decrypt_0) ?
|
|
|
|
|
generic_decrypt_0->operands[1].imm.value.u : 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return { operand, rolling_key };
|
|
|
|
|
}
|
|
|
|
@ -415,21 +427,6 @@ namespace vm
|
|
|
|
|
if (imm_fetch == vm_handler.end())
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
// look for a primer/instruction that alters RAX prior to the 5 transformations...
|
|
|
|
|
auto generic0 = std::find_if(imm_fetch + 1, vm_handler.end(),
|
|
|
|
|
[](const zydis_instr_t& instr_data) -> bool
|
|
|
|
|
{
|
|
|
|
|
return util::reg::compare(
|
|
|
|
|
instr_data.instr.operands[0].reg.value, ZYDIS_REGISTER_RAX);
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
ZydisDecodedInstruction nogeneric0;
|
|
|
|
|
nogeneric0.mnemonic = ZYDIS_MNEMONIC_INVALID;
|
|
|
|
|
|
|
|
|
|
transforms[transform::type::generic0] =
|
|
|
|
|
generic0 != vm_handler.end() ? generic0->instr : nogeneric0;
|
|
|
|
|
|
|
|
|
|
// this finds the first transformation which looks like:
|
|
|
|
|
// transform rax, rbx <--- note these registers can be smaller so we to64 them...
|
|
|
|
|
auto key_transform = std::find_if(imm_fetch, vm_handler.end(),
|
|
|
|
@ -442,6 +439,25 @@ namespace vm
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
if (key_transform == vm_handler.end())
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
// look for a primer/instruction that alters RAX prior to the 5 transformations...
|
|
|
|
|
auto generic0 = std::find_if(imm_fetch + 1, key_transform,
|
|
|
|
|
[](const zydis_instr_t& instr_data) -> bool
|
|
|
|
|
{
|
|
|
|
|
return util::reg::compare(
|
|
|
|
|
instr_data.instr.operands[0].reg.value, ZYDIS_REGISTER_RAX) &&
|
|
|
|
|
!util::reg::compare(instr_data.instr.operands[1].reg.value, ZYDIS_REGISTER_RBX);
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
ZydisDecodedInstruction nogeneric0;
|
|
|
|
|
nogeneric0.mnemonic = ZYDIS_MNEMONIC_INVALID;
|
|
|
|
|
|
|
|
|
|
transforms[transform::type::generic0] =
|
|
|
|
|
generic0 != key_transform ? generic0->instr : nogeneric0;
|
|
|
|
|
|
|
|
|
|
// last transformation is the same as the first except src and dest are swwapped...
|
|
|
|
|
transforms[transform::type::rolling_key] = key_transform->instr;
|
|
|
|
|
auto instr_copy = key_transform->instr;
|
|
|
|
@ -449,13 +465,10 @@ namespace vm
|
|
|
|
|
instr_copy.operands[1].reg.value = key_transform->instr.operands[0].reg.value;
|
|
|
|
|
transforms[transform::type::update_key] = instr_copy;
|
|
|
|
|
|
|
|
|
|
if (key_transform == vm_handler.end())
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
// three generic transformations...
|
|
|
|
|
auto generic_transform = key_transform;
|
|
|
|
|
|
|
|
|
|
for (auto idx = 0u; idx < 3; ++idx)
|
|
|
|
|
for (auto idx = 2u; idx < 5; ++idx)
|
|
|
|
|
{
|
|
|
|
|
generic_transform = std::find_if(++generic_transform, vm_handler.end(),
|
|
|
|
|
[](const zydis_instr_t& instr_data) -> bool
|
|
|
|
@ -470,7 +483,7 @@ namespace vm
|
|
|
|
|
if (generic_transform == vm_handler.end())
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
transforms[(transform::type)(idx + 1)] = generic_transform->instr;
|
|
|
|
|
transforms[(transform::type)(idx)] = generic_transform->instr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|