mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
Renamed PE rule files to use a consistent naming convention with prefixes indicating their type (e.g., compiler_, packer_, installer_, etc.). Also updated file permissions to 100644 where needed and made minor whitespace-only changes to some files for consistency. This improves maintainability and clarity of the signature database.
12 lines
No EOL
317 B
JavaScript
12 lines
No EOL
317 B
JavaScript
// Detect It Easy: detection rule file
|
|
// Author: hypn0 <hypn0@mail.ru>
|
|
|
|
meta("protector", "Inquartos Obfuscator");
|
|
|
|
function detect() {
|
|
if (PE.compareEP("e8$$$$$$$$bb........e8$$$$$$$$e8$$$$$$$$33c064ff306489204bccc3") && PE.isSectionNamePresent(".inq")) {
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |