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.

31 lines
710 B

//#include "Obfuscator.h"
//
//#include "xed/xed-interface.h"
//
//int main()
//{
// xed_decoded_inst_t instruction;
//
// return 1;
//}
//#pragma comment(lib, "xed.lib")
#include "Obfuscator.h"
int main(int argc, char** argv)
{
unsigned char buffer[] = { 0x48, 0x33, 0xC0, 0x48, 0x33, 0xC0, 0xEB, 0x08, 0x48, 0x33, 0xC0, 0x7E, 0x03, 0x48, 0x33, 0xC0, 0x48, 0x33, 0xC0 };//{ 0x48, 0x33, 0xC0, 0x48, 0x33, 0xC0, 0xEB, 0xFB, 0x48, 0x33, 0xC0, 0x7E, 0xF6, 0xC3 };
unsigned int buffer_size = sizeof(buffer);
obfuscator_t obf;
obf_one_time_please();
obf_init_from_buffer(&obf, buffer, buffer_size);
obf_gen_all_labels(&obf);
obf_replace_rel_jmps(&obf);
obf_dbg_print_code(&obf);
system("pause");
}