mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
Detection rule files were renamed and reorganized to use more descriptive prefixes (e.g., compiler_, packer_, sfx_, etc.) for improved clarity and maintainability. Minor code formatting changes were made to some files, and a new detection rule for IBM VisualAge PL/I was added.
13 lines
No EOL
326 B
JavaScript
13 lines
No EOL
326 B
JavaScript
// Detect It Easy: detection rule file
|
|
// Author: hypn0 <hypn0@mail.ru>
|
|
|
|
meta("protector", "REVProt");
|
|
|
|
function detect() {
|
|
if (PE.compareEP("e8$$$$$$$$31c064ff30648920648f05........83c4..60e8$$$$$$$$83c4..e8$$$$$$$$5d81ed........60b9")) {
|
|
sVersion = "0.1a";
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |