Detect-It-Easy/db/MSDOS/protector_Copylock_PC.2.sg
DosX 3eef47d918 Organize MSDOS db files into categorized names
Rename several MSDOS database files to add category prefixes and reorganize one entry into db_extra. No content changes (100% similarity); this is a file-structure cleanup to make types explicit:
- db/MSDOS/Power_C.4.sg -> db/MSDOS/compiler_Power_C.4.sg
- db/MSDOS/CauseWay_DOS_Extender.0a.sg -> db/MSDOS/extender_CauseWay_DOS_Extender.6.sg
- db/MSDOS/Copy_Protector.2.sg -> db/MSDOS/protector_Copy_Protector.2.sg
- db/MSDOS/Copylock_PC.1.sg -> db/MSDOS/protector_Copylock_PC.2.sg
- db/MSDOS/FCP_IV.2.sg -> db_extra/MSDOS/packer_FCP_IV.2.sg
2026-03-12 22:37:06 +03:00

25 lines
No EOL
892 B
JavaScript

// Detect It Easy: detection rule file
// Author: hypn0 <hypn0@mail.ru>
meta("protector", "Copylock PC");
function detect() {
if (MSDOS.compareEP("0e1fb9....bf....8135....83c7..e2")) {
sOptions = "1990 by Rob Northen Computing";
bDetected = true;
} else if (MSDOS.compareEP("0e1f8c1e....8c06....1e07bf....33f6")) {
sOptions = "1990 by Rob Northen Computing";
bDetected = true;
} else if (MSDOS.compareEP("0e1fb9....bf........83c7..e2")) {
sOptions = "1990 by Rob Northen Computing";
bDetected = true;
} else if (MSDOS.compareEP("0e1fb9....bf............83c7..e2")) {
sOptions = "1990 by Rob Northen Computing";
bDetected = true;
} else if (MSDOS.compareEP("0e1f8cc0a3....90909090909090909090a1")) {
sOptions = "1990 by Rob Northen Computing";
bDetected = true;
}
return result();
}