mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
22 lines
475 B
Text
22 lines
475 B
Text
// DIE's signature file
|
|
|
|
init("protector","FISH .NET");
|
|
|
|
function detect(bShowType,bShowVersion,bShowOptions)
|
|
{
|
|
if(PE.isNET())
|
|
{
|
|
if(PE.isSignatureInSectionPresent(0,"0800'FISH_NET'"))
|
|
{
|
|
sVersion="1.X";
|
|
bDetected=1;
|
|
}
|
|
else if(PE.isSignatureInSectionPresent(0,"'FISH.NET'"))
|
|
{
|
|
sVersion="1.X";
|
|
bDetected=1;
|
|
}
|
|
}
|
|
|
|
return result(bShowType,bShowVersion,bShowOptions);
|
|
}
|