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.
14 lines
No EOL
352 B
JavaScript
14 lines
No EOL
352 B
JavaScript
// Detect It Easy: detection rule file
|
|
// Author: hypn0 <hypn0@mail.ru>
|
|
|
|
meta("protector", "mCrypt");
|
|
|
|
function detect() {
|
|
if (Binary.compare("e9$$$$1e06be....bf....b9....0e1f0e07e8$$$$33c0fa5083c4..83ec..58fb0bc075..c3")) {
|
|
sVersion = "0.1a";
|
|
sOptions = "1998 by //UFO CREW";
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |