LunaHook-mirror/LunaHook/engine32/WillPlus.h
恍兮惚兮 5e6bc37051 will
2024-03-21 01:09:59 +08:00

31 lines
820 B
C++

#include"engine.h"
class WillPlus:public ENGINE{
public:
WillPlus(){
check_by=CHECK_BY::FILE_ALL;
check_by_target=check_by_list{L"Rio.arc",L"Chip*.arc"};
};
bool attach_function();
};
class Willold:public ENGINE{
public:
Willold(){
//https://vndb.org/v17755
//凌辱鬼
check_by=CHECK_BY::CUSTOM;
check_by_target=[](){
auto _={L"*.BIN",L"DATA\\*.ENV",L"DATA\\*.WBP"};
auto checkfile= std::all_of(_.begin(),_.end(),Util::CheckFile);
if(checkfile){
auto __=R"(Software\WILL\)";
checkfile&=!!MemDbg::findBytes(__,strlen(__),processStartAddress,processStopAddress);
}
return checkfile;
};
}
bool attach_function();
};