Detect-It-Easy/db/COM/protector_Entropy_Coder.2.sg
DosX 88cd1eb352 Prefix db/COM filenames by category
Rename multiple files in db/COM to include explicit category prefixes (e.g. compiler_, converter_, cryptor_, immunizer_, other_, packer_, protector_) for clearer organization. Example changes: 8086_Forth_83.4.sg -> compiler_8086_Forth_83.4.sg, EXETools_EXE2COM.1.sg -> converter_EXETools_EXE2COM.1.sg, Anti-Lamer_Cryptor.2.sg -> cryptor_Anti-Lamer_Cryptor.2.sg, ARF_AV_Inject.1.sg -> immunizer_ARF_AV_Inject.1.sg, integrity_checker.1.sg -> other_integrity_checker.1.sg, CyberWare_Packer.2.sg -> packer_CyberWare_Packer.2.sg, and several protector_ renames. Also a tiny whitespace/newline adjustment was made in the Borland C++ detector file during the rename.
2026-02-14 19:58:00 +03:00

13 lines
No EOL
288 B
JavaScript

// Detect It Easy: detection rule file
// Author: hypn0 <hypn0@mail.ru>
meta("protector", "Entropy Coder");
function detect() {
if (Binary.compare("be....bf....b9....fdf3a447fcffe7")) {
sOptions = "by Sergey Lukashev";
bDetected = true;
}
return result();
}