Detect-It-Easy/db/MSDOS/com2exe.2.sg
2024-11-12 20:11:38 +03:00

21 lines
No EOL
583 B
JavaScript
Executable file

// Detect It Easy: detection rule file
// Author: hypn0 <hypn0@mail.ru>
init("converter", "com2exe");
function detect() {
if (MSDOS.compareEP("b8....50c3")) {
sVersion = "9.50";
bDetected = true;
} else if (MSDOS.compareEP("16179c58f6c4..74..faeb")) {
sName = "COM -> EXE";
sOptions = "1993 by R.Roth";
bDetected = true;
} else if (MSDOS.compareEP("fcbe....bf....b9....f3a568....c3")) {
sVersion = "2.1";
sOptions = "1997 by X-HACKS Group";
bDetected = true;
}
return result();
}