mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
21 lines
492 B
Text
21 lines
492 B
Text
// DIE's signature file
|
|
|
|
init("protector","Obfuscator.NET 2009");
|
|
|
|
function detect(bShowType,bShowVersion,bShowOptions)
|
|
{
|
|
if(PE.isNET())
|
|
{
|
|
if(PE.isNETStringPresent("Macrobject.Obfuscator"))
|
|
{
|
|
bDetected=1;
|
|
}
|
|
else if(PE.isNETStringPresent("Obfuscated by Macrobject Obfuscator.NET UNREGISTRED"))
|
|
{
|
|
sOptions="Unregistered";
|
|
bDetected=1;
|
|
}
|
|
}
|
|
|
|
return result(bShowType,bShowVersion,bShowOptions);
|
|
}
|