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.
20 lines
No EOL
667 B
JavaScript
20 lines
No EOL
667 B
JavaScript
// Detect It Easy: detection rule file
|
|
// Author: hypn0 <hypn0@mail.ru>
|
|
|
|
// Note: GRaphic Animation System for Professionals
|
|
|
|
meta("compiler", "GRASP Interpreter");
|
|
|
|
function detect() {
|
|
if (MSDOS.compareEP("8cd88ec0b8....8ed88c06....8c16....8926....26a1....3b06....77..e9....2b06....8cdf81c7....3bf873..8bc7")) {
|
|
sVersion = "4.00e - 5.0";
|
|
sOptions = "1993 by John Bridges";
|
|
bDetected = true;
|
|
} else if (MSDOS.compareEP("8cd88ec0b8....8ed88c06....26a1....3b06....77..e9....2b06....8cdf81c7....3bf873..8bc7")) {
|
|
sVersion = "4.0b";
|
|
sOptions = "1991 by John Bridges";
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |