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.
15 lines
No EOL
397 B
JavaScript
15 lines
No EOL
397 B
JavaScript
// Detect It Easy: detection rule file
|
|
|
|
meta("protector", "Alex Protector");
|
|
|
|
function detect() {
|
|
if (PE.compareEP("60E8000000005D81ED06104000E824000000")) {
|
|
sVersion = "1.0";
|
|
bDetected = true;
|
|
} else if (PE.compareEP("60E801000000C783C40433C9E8010000006883C404E8010000006883C404")) {
|
|
sVersion = "0.4 beta 1";
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |