mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
21 lines
No EOL
583 B
JavaScript
Executable file
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();
|
|
} |