mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
15 lines
340 B
Text
15 lines
340 B
Text
// DIE's signature file
|
|
// Author: hypn0 <hypn0@mail.ru>
|
|
|
|
init("compiler","Virtual Pascal");
|
|
|
|
function detect(bShowType,bShowVersion,bShowOptions)
|
|
{
|
|
if(PE.compareEP("b9........b8........e8$$$$$$$$83ec..fc51e8"))
|
|
{
|
|
sVersion="2.1";
|
|
bDetected=1;
|
|
}
|
|
|
|
return result(bShowType,bShowVersion,bShowOptions);
|
|
}
|