Detect-It-Easy/db/COM/protector_CodeLock.2.sg
DosX 9e621e1954 Rename and reorganize rule files
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.
2026-01-25 11:20:39 +03:00

18 lines
No EOL
511 B
JavaScript

// Detect It Easy: detection rule file
// Author: hypn0 <hypn0@mail.ru>
meta("protector", "CodeLock");
function detect() {
if (Binary.compare("e9$$$$bb....535856535981e9....31ff575a5dbe....e9")) {
sVersion = "4.0";
sOptions = "1993 by Dr. Detergent";
bDetected = true;
} else if (Binary.compare("e9$$$$b430cd213c037d$$068e06....061f31c0505e565fae")) {
sVersion = "3.0";
sOptions = "1993 by Dr. Detergent";
bDetected = true;
}
return result();
}