2024-05-06 23:30:27 +08:00
|
|
|
|
2024-02-07 20:59:24 +08:00
|
|
|
|
|
|
|
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();
|
2024-03-21 01:09:59 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
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();
|
2024-02-07 20:59:24 +08:00
|
|
|
};
|