Detect-It-Easy/db_extra/PE/protector_BitShape_PE_Crypt.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

15 lines
No EOL
394 B
JavaScript

// Detect It Easy: detection rule file
meta("protector", "BitShape PE Crypt");
function detect() {
if (PE.compareEP("60E8000000005D81ED........B97B0900008DBD........8BF7AC")) {
sVersion = "1.5";
bDetected = true;
} else if (PE.compareEP("E8000000005B83EB05EB04'RND!'EB02CD20EB")) {
sVersion = "1.0-1.02";
bDetected = true;
}
return result();
}