mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
23 lines
578 B
Text
23 lines
578 B
Text
// DIE's signature file
|
|
|
|
init("protector","CodeWall");
|
|
|
|
function detect(bShowType,bShowVersion,bShowOptions)
|
|
{
|
|
if(PE.isNET())
|
|
{
|
|
if(PE.isNETStringPresent("CodeWallTrialVersion"))
|
|
{
|
|
sVersion="4.X";
|
|
sOptions="Evaluation";
|
|
bDetected=1;
|
|
}
|
|
else if(PE.isSignatureInSectionPresent(0,"9161d281........11..175813..11..11..32..28........11..6f........13..7e........2d..73"))
|
|
{
|
|
sVersion="4.X";
|
|
bDetected=1;
|
|
}
|
|
}
|
|
|
|
return result(bShowType,bShowVersion,bShowOptions);
|
|
}
|