Detect-It-Easy/db/PE/protector_FISH_.NET.2.sg
2026-05-25 21:03:46 +03:00

18 lines
No EOL
467 B
JavaScript
Executable file

// Detect It Easy: detection rule file
// Author: horsicq <horsicq@gmail.com>
meta("protector", "FISH .NET");
function detect() {
if (PE.isNet()) {
if (PE.isSignatureInSectionPresent(0, "0800'FISH_NET'")) {
sVersion = "1.X";
bDetected = true;
} else if (PE.isSignatureInSectionPresent(0, "'FISH.NET'")) {
sVersion = "1.X";
bDetected = true;
}
}
return result();
}