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