Detect-It-Easy/db/PE/Babel .NET.2.sg
2014-06-01 23:42:39 +02:00

22 lines
472 B
Text

// DIE's signature file
init("protector","Babel .NET");
function detect(bShowType,bShowVersion,bShowOptions)
{
if(PE.isNET())
{
if(PE.isNETStringPresent("BabelAttribute"))
{
sVersion="3.X";
bDetected=1;
}
else if(PE.isNETStringPresent("BabelObfuscatorAttribute"))
{
sVersion="1.0-2.X";
bDetected=1;
}
}
return result(bShowType,bShowVersion,bShowOptions);
}