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.
17 lines
No EOL
418 B
JavaScript
17 lines
No EOL
418 B
JavaScript
// Detect It Easy: detection rule file
|
|
|
|
meta("protector", "ARM Protector");
|
|
|
|
function detect() {
|
|
if (PE.compareEP("E8040000008360EB0C5DEB05")) {
|
|
switch (PE.readDword(PE.nEP + 42)) {
|
|
case 0xAB3: sVersion = "0.5"; break;
|
|
case 0xBA1: sVersion = "0.6"; break;
|
|
default:
|
|
sVersion = "0.1b-0.3b";
|
|
}
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |