mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
22 lines
No EOL
817 B
JavaScript
Executable file
22 lines
No EOL
817 B
JavaScript
Executable file
// Detect It Easy: detection rule file
|
|
// Author: hypn0 <hypn0@mail.ru>
|
|
|
|
init("self-displayer", "TXT2COM");
|
|
|
|
function detect() {
|
|
if (Binary.compare("e8$$$$c706........803e......75..8d36....e8....e8....e8....e8....e8....ffa7")) {
|
|
sVersion = "1.1";
|
|
sOptions = "1987 by Keith P. Graham";
|
|
bDetected = true;
|
|
} else if (Binary.compare("e9$$$$c706........803e......75..8d36....e8....e8....e8....e8....e8....ffa7")) {
|
|
sVersion = "1.1";
|
|
sOptions = "1987 by Keith P. Graham";
|
|
bDetected = true;
|
|
} else if (Binary.compare("8d26....e8$$$$b4..cd103c..74..c706........c706........3c..74..3c..74..8d16....b409cd21cd20c706")) {
|
|
sVersion = "2.06";
|
|
sOptions = "1989 by Keith P. Graham";
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |