mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
Rename 13 files in db/COM to include role/type prefixes (compiler_, cryptor_, packer_, protector_, self-displayer_) to better categorize entries. Examples: PC_FORTH -> compiler_PC_FORTH, Deep_Crypter -> cryptor_Deep_Crypter, simple_ansi_viewer -> self-displayer_simple_ansi_viewer.
13 lines
No EOL
272 B
JavaScript
13 lines
No EOL
272 B
JavaScript
// Detect It Easy: detection rule file
|
|
// Author: hypn0 <hypn0@mail.ru>
|
|
|
|
meta("packer", "RTD_compressor");
|
|
|
|
function detect() {
|
|
if (Binary.compare("bf....be....b5..57f3a5c3")) {
|
|
sOptions = "by Mr.Wicked";
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |