mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
17 lines
No EOL
411 B
JavaScript
17 lines
No EOL
411 B
JavaScript
// Detect It Easy: detection rule file
|
|
|
|
init("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();
|
|
} |