mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
22 lines
472 B
Text
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);
|
|
}
|