Detect-It-Easy/db_extra/PE/protector_ARM_Protector.2.sg
DosX 4eebb1c386 Standardize and clarify PE rule file naming
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.
2026-01-12 16:01:58 +03:00

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();
}