mirror of
https://github.com/67-6f-64/AntiOreans-CodeDevirtualizer
synced 2026-06-08 10:18:33 +00:00
27 lines
626 B
C++
27 lines
626 B
C++
#include "dolphin.hpp"
|
|
|
|
#include <idp.hpp>
|
|
|
|
dolphin::dolphin()
|
|
: wild(this->context)
|
|
{
|
|
|
|
}
|
|
|
|
bool dolphin::is_signature(instruction_container& vm_entrance)
|
|
{
|
|
msg("[CodeDevirtualizer] DOLPHIN machine identified.\n");
|
|
return true;
|
|
}
|
|
|
|
bool dolphin::devirtualize(uint32_t vm_function, uint32_t vm_entry, instruction_container& vm_instructions)
|
|
{
|
|
msg("[CodeDevirtualizer] DOLPHIN machines are currently not supported.\n");
|
|
return false;
|
|
}
|
|
|
|
bool dolphin::parse_initial_handler(instruction_container& instructions)
|
|
{
|
|
msg("[CodeDevirtualizer] DOLPHIN attempted to parse key handler.\n");
|
|
return false;
|
|
} |