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.
19 lines
No EOL
727 B
JavaScript
19 lines
No EOL
727 B
JavaScript
// Detect It Easy: detection rule file
|
|
// Author: hypn0 <hypn0@mail.ru>
|
|
|
|
meta("protector", "SelfCrypt");
|
|
|
|
function detect() {
|
|
if (Binary.compare("8cc88ed833ffbe....bb....8a048a1132c288043c..74..4683ff..7d..47eb")) {
|
|
sOptions = "1999 by MCS";
|
|
bDetected = true;
|
|
} else if (Binary.compare("e8$$$$eb$$8cca8eda8ec2be....bf....b9....2ec706........31c0ada3....3136....8bc18bdef7e33106....3116....a1....abe2")) {
|
|
sVersion = "1994 by PHOENiX";
|
|
bDetected = true;
|
|
} else if (Binary.compare("e8$$$$eb$$8cca8eda8ec2be....bf....b9....ad2ea3....2e3136....8bc18bdef7e32e3106....2e3116....2ea1....abe2")) {
|
|
sVersion = "1994 by PHOENiX";
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |