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.
21 lines
No EOL
799 B
JavaScript
21 lines
No EOL
799 B
JavaScript
// Detect It Easy: detection rule file
|
|
// Author: hypn0 <hypn0@mail.ru>
|
|
|
|
meta("compiler", "ASIC-Basic");
|
|
|
|
function detect() {
|
|
if (Binary.compare("e9$$$$33dbb4..cd108916....cc90b0..ba....33c9b7..b4..cd1031d28916....b4..30ffcd1090")) {
|
|
sVersion = "5.0";
|
|
sOptions = "1994 by David Visti of 80/20 Software";
|
|
bDetected = true;
|
|
} else if (Binary.compare("e9$$$$33dbb4..cd108916....cc90b0..a2....ba....a0....3c..75..b4..b0..cd2172..a3")) {
|
|
sOptions = "by David Visti of 80/20 Software";
|
|
bDetected = true;
|
|
} else if (Binary.compare("e9$$$$33dbb4..cd108916....cc90fcb9....be....bf....f3a490fcb9....be....bf....f3a4")) {
|
|
sVersion = "3.0";
|
|
sOptions = "by David Visti of 80/20 Software";
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |