You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
2.1 KiB
50 lines
2.1 KiB
#pragma once
|
|
#include <obf/transform/transform.hpp>
|
|
#include <recomp/reloc.hpp>
|
|
|
|
namespace theo::obf::transform {
|
|
inline std::vector<std::uint8_t> generate(xed_decoded_inst_t* inst,
|
|
recomp::reloc_t* reloc,
|
|
std::uint8_t low,
|
|
std::uint8_t high) {
|
|
auto num_transforms = transform::operation_t::random(low, high);
|
|
auto num_ops = transform::operations.size();
|
|
std::vector<std::uint8_t> new_inst_bytes;
|
|
|
|
std::uint32_t inst_len = {};
|
|
std::uint8_t inst_buff[XED_MAX_INSTRUCTION_BYTES];
|
|
xed_encoder_request_t req;
|
|
|
|
xed_state_t istate{XED_MACHINE_MODE_LONG_64, XED_ADDRESS_WIDTH_64b};
|
|
xed_encoder_request_zero_set_mode(&req, &istate);
|
|
xed_encoder_request_set_effective_operand_width(&req, 64);
|
|
xed_encoder_request_set_iclass(&req, XED_ICLASS_PUSHFQ);
|
|
xed_encode(&req, inst_buff, sizeof(inst_buff), &inst_len);
|
|
new_inst_bytes.insert(new_inst_bytes.end(), inst_buff, inst_buff + inst_len);
|
|
|
|
for (auto cnt = 0u; cnt < num_transforms; ++cnt) {
|
|
std::uint32_t imm = transform::operation_t::random(
|
|
0, std::numeric_limits<std::int32_t>::max());
|
|
|
|
auto itr = transform::operations.begin();
|
|
std::advance(itr, transform::operation_t::random(0, num_ops - 1));
|
|
auto transform_bytes = itr->second->native(inst, imm);
|
|
new_inst_bytes.insert(new_inst_bytes.end(), transform_bytes.begin(),
|
|
transform_bytes.end());
|
|
|
|
reloc->add_transform(
|
|
{transform::operations[itr->second->inverse()]->get_transform(), imm});
|
|
}
|
|
|
|
xed_encoder_request_zero_set_mode(&req, &istate);
|
|
xed_encoder_request_set_effective_operand_width(&req, 64);
|
|
xed_encoder_request_set_iclass(&req, XED_ICLASS_POPFQ);
|
|
xed_encode(&req, inst_buff, sizeof(inst_buff), &inst_len);
|
|
new_inst_bytes.insert(new_inst_bytes.end(), inst_buff, inst_buff + inst_len);
|
|
|
|
// inverse the order in which the transformations are executed...
|
|
//
|
|
std::reverse(reloc->get_transforms().begin(), reloc->get_transforms().end());
|
|
return new_inst_bytes;
|
|
}
|
|
} // namespace theo::obf::transform
|