mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
24 lines
596 B
Text
24 lines
596 B
Text
// DIE's signature file
|
|
|
|
init("protector","DeepSea");
|
|
|
|
function detect(bShowType,bShowVersion,bShowOptions)
|
|
{
|
|
if(PE.isNET())
|
|
{
|
|
var nOffset=PE.findString(PE.section[0].FileOffset,
|
|
PE.section[0].FileSize,
|
|
"DeepSeaObfuscator");
|
|
if(nOffset!=-1)
|
|
{
|
|
if(PE.compare("'Evaluation'",nOffset+18))
|
|
{
|
|
sVersion="4.X";
|
|
sOptions="Evaluation";
|
|
}
|
|
bDetected=1;
|
|
}
|
|
}
|
|
|
|
return result(bShowType,bShowVersion,bShowOptions);
|
|
}
|