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
583 B
JavaScript
18 lines
No EOL
583 B
JavaScript
// Detect It Easy: detection rule file
|
|
// Author: hypn0 <hypn0@mail.ru>
|
|
|
|
meta("protector", "CC");
|
|
|
|
function detect() {
|
|
if (MSDOS.compareEP("b8....ba....3be073..b409ba....cd21b8....cd218bdc81eb....83e3..fcbe....8bfbb9....f3a48bc3b1..d3e88cc903c15033c050cb")) {
|
|
sVersion = "1.0";
|
|
sOptions = "1991 by B.Vorontsov";
|
|
bDetected = true;
|
|
} else if (MSDOS.compareEP("ba....b430cd213c..73..33c00650cbb9....b8....eb$$05....fc80c4..eb")) {
|
|
sVersion = "2.61 Beta";
|
|
sOptions = "by UniHackers";
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |