mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
Rename multiple database entries to include explicit category prefixes for clarity. Files in db/Amiga were renamed to use compiler_, cruncher_, font_, and sfx_ prefixes; files in db_extra/PE were renamed to use installer_, protector_, and sfx_ prefixes. All changes are pure renames (100% similarity) with no content modifications.
16 lines
No EOL
516 B
JavaScript
16 lines
No EOL
516 B
JavaScript
// Detect It Easy: detection rule file
|
|
// Author: hypn0 <hypn0@mail.ru>
|
|
|
|
meta("protector", "Visual Protect");
|
|
|
|
function detect() {
|
|
if (PE.compareEP("558bec51535657c705................68........ff15........a3........68")) {
|
|
bDetected = true;
|
|
} else if (PE.compareEP("558bec515356578325..........68........ff15........a3........68")) {
|
|
bDetected = true;
|
|
} else if (PE.compareEP("8b4424..83f8..75..a3........8b4424..50a3........e8")) {
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |