mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
16 lines
No EOL
404 B
JavaScript
Executable file
16 lines
No EOL
404 B
JavaScript
Executable file
// Detect It Easy: detection rule file
|
|
// Author: horsicq <horsicq@gmail.com>
|
|
|
|
// https://en.wikipedia.org/wiki/Visual_Objects
|
|
meta("compiler", "Visual Objects");
|
|
|
|
function detect() {
|
|
if (PE.compare("'This Visual Objects application cannot be run in DOS mode'", 0x312)) {
|
|
sVersion = "2.XX";
|
|
bDetected = true;
|
|
}
|
|
|
|
sLang = "Visual Objects";
|
|
|
|
return result();
|
|
} |