mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
Rename multiple files in db/COM to include category prefixes for clearer organization. Examples: Microsoft_C.4.sg -> compiler_Microsoft_C.4.sg, SPHINX_C--.4.sg -> compiler_SPHINX_C--.4.sg, Microsoft_RTL.3.sg -> library_Microsoft_RTL.3.sg, several Crypt_/Inbuild_/Maveriks_/MrHDKiller_* -> protector_*, and LHarc_SFX.1.sg -> sfx_LHarc_SFX.1.sg. These are pure path renames (no content changes).
14 lines
No EOL
316 B
JavaScript
14 lines
No EOL
316 B
JavaScript
// Detect It Easy: detection rule file
|
|
// Author: hypn0 <hypn0@mail.ru>
|
|
|
|
meta("protector", "Inbuild Encryption");
|
|
|
|
function detect() {
|
|
if (Binary.compare("b9....bb....2ed2072e281f43e2")) {
|
|
sVersion = "1.0";
|
|
sOptions = "by Christoph Gabler";
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |