mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
23 lines
No EOL
734 B
JavaScript
Executable file
23 lines
No EOL
734 B
JavaScript
Executable file
// Detect It Easy: detection rule file
|
|
// Author: hypn0 <hypn0@mail.ru>
|
|
|
|
init("compiler", "ForthCMP");
|
|
|
|
function detect() {
|
|
if (Binary.compare("90e9$$$$8cc88ed08ec08ed8bc....b430cd2180f8..73..ba....b409cd2131c0cd218cc881c0....8b1e....81eb....39d8")) {
|
|
sOptions = "1995 by Thomas Almy";
|
|
bDetected = true;
|
|
}
|
|
if (Binary.compare("e9$$$$bc....c706........bd....892e....fce8....b8....cd21")) {
|
|
sVersion = "2.1";
|
|
sOptions = "by Thomas Almy";
|
|
bDetected = true;
|
|
}
|
|
if (Binary.compare("e9$$$$bc....c706........bd....892e....b4..bb....cd21fce8")) {
|
|
sVersion = "2.1";
|
|
sOptions = "by Thomas Almy";
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |