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

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