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
411 B
JavaScript
15 lines
No EOL
411 B
JavaScript
// Detect It Easy: detection rule file
|
|
|
|
meta("protector", "EP"); // ?????????????
|
|
|
|
function detect() {
|
|
if (PE.compareEP("5083C0178BF09733C033C9B124AC86C4ACAA86C4AAE2F600B8400003003C40D2338B661450708B8D3402448B1810487003BA")) {
|
|
sVersion = "1.0";
|
|
bDetected = true;
|
|
} else if (PE.compareEP("6A..60E90101")) {
|
|
sVersion = "2.0";
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |