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
637 B
JavaScript
18 lines
No EOL
637 B
JavaScript
// Detect It Easy: detection rule file
|
|
// Author: hypn0 <hypn0@mail.ru>
|
|
|
|
meta("protector", "ExeCode");
|
|
|
|
function detect() {
|
|
if (MSDOS.compareEP("E9$$$$FA8CC302DF5033C02E8C16....2E8926....8ED0BC....BE....B9....33FF2EC706........32DBB0..E664AC")) {
|
|
sVersion = "1.0";
|
|
sOptions = "1995 by Balazs Scheidler";
|
|
bDetected = true;
|
|
} else if (MSDOS.compareEP("E9$$$$8be8ba....b409cd212ea1....8cc303c3b1..2e8b1e....f7c3....74..83c3..d3eb2e891e....be....bf....b9....f3a5")) {
|
|
sVersion = "1.0 unregistered";
|
|
sOptions = "1995 by Balazs Scheidler";
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |