mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
16 lines
No EOL
352 B
JavaScript
16 lines
No EOL
352 B
JavaScript
// Detect It Easy: detection rule file
|
|
// Author: hypn0 <hypn0@mail.ru>
|
|
|
|
// https://en.wikipedia.org/wiki/Virtual_Pascal
|
|
meta("compiler", "Virtual Pascal");
|
|
|
|
function detect() {
|
|
if (PE.compareEP("b9........b8........e8$$$$$$$$83ec..fc51e8")) {
|
|
sVersion = "2.1";
|
|
bDetected = true;
|
|
}
|
|
|
|
sLang = "Pascal";
|
|
|
|
return result();
|
|
} |