mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
Renamed and moved numerous .sg files in the db directory to follow a more consistent naming convention and directory structure, grouping by type (e.g., compiler, cruncher, packer, protector, etc.). This improves maintainability and clarity of the signature database organization.
18 lines
No EOL
573 B
JavaScript
18 lines
No EOL
573 B
JavaScript
// Detect It Easy: detection rule file
|
|
// Author: hypn0 <hypn0@mail.ru>
|
|
|
|
meta("protector", "ComProtector");
|
|
|
|
function detect() {
|
|
if (Binary.compare("e9$$$$b9....bb....bf....2e8a0734..fec8c0c0..2e88052e000d2e002d4743e2")) {
|
|
sVersion = "1.0";
|
|
sOptions = "1998 by Marco Ruhmann";
|
|
bDetected = true;
|
|
} else if (Binary.compare("e9$$$$b9....e800005b83c3..90fa8bd48be133c02e030e....2ec007..0f23f82e2b0e....2e300f0f23d8")) {
|
|
sVersion = "1.1";
|
|
sOptions = "1998 by Marco Ruhmann";
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |