Detect-It-Easy/db/MSDOS/protector_PC-Guard.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

30 lines
No EOL
1.1 KiB
JavaScript

// Detect It Easy: detection rule file
// Author: hypn0 <hypn0@mail.ru>
meta("protector", "PC-Guard");
function detect() {
if (MSDOS.compareEP("b8....fcfdb9....be....f82e180cf5fcfc74..fccc")) {
sVersion = "3.05 PRO";
sOptions = "1994/97 by Ceklic Blagoje //COMSEC";
bDetected = true;
} else if (MSDOS.compareEP("2bdb81cb....f8fdbf....2bd281ca....f52e291dfcf7d3fdfccc")) {
sVersion = "3.05";
sOptions = "1994/97 by Ceklic Blagoje //COMSEC";
bDetected = true;
} else if (MSDOS.compareEP("bb....f5b9....fcfdbe....fdfc2e190cfcfdf8f7d9d1d9f8f8")) {
sVersion = "3.XX";
sOptions = "by Ceklic Blagoje //COMSEC";
bDetected = true;
} else if (MSDOS.compareEP("be....fcb9....fdf5f5ba....fc2e102cf8d1d1d1c9f7d9")) {
sVersion = "3.XX";
sOptions = "by Ceklic Blagoje //COMSEC";
bDetected = true;
} else if (MSDOS.compareEP("33db81c3....f8fdbe....f8f5fcba....f52e111cfcfd72")) {
sVersion = "3.XX";
sOptions = "by Ceklic Blagoje //COMSEC";
bDetected = true;
}
return result();
}