mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
Renamed numerous db_extra/PE and db/Binary rule files to use consistent prefixes (e.g., cryptor_, protector_, installer_, etc.) for improved organization and clarity. Minor metadata and whitespace adjustments were made in a few files to match naming conventions.
19 lines
No EOL
438 B
JavaScript
19 lines
No EOL
438 B
JavaScript
// Detect It Easy: detection rule file
|
|
|
|
meta("protector", "Soft Defender");
|
|
|
|
function detect() {
|
|
if (PE.compareEP("74$$74$$78$$68A2AF470159E8")) { // 07 1F 0F
|
|
bDetected = true;
|
|
|
|
if (PE.compareEP("BA010000", 72)) {
|
|
sVersion = "1.0-1.1";
|
|
} else if (PE.compareEP("BE010000", 73)) {
|
|
sVersion = "1.12";
|
|
} else {
|
|
sVersion = "1.X";
|
|
}
|
|
}
|
|
|
|
return result();
|
|
} |