mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
25 lines
737 B
Text
25 lines
737 B
Text
// DIE's signature file
|
|
// Author: Jason Hood <jadoxa@yahoo.com.au>
|
|
|
|
init("extender","DOS/4G");
|
|
|
|
function detect(bShowType,bShowVersion,bShowOptions)
|
|
{
|
|
if(MSDOS.isSignaturePresent(0,Math.min(1024,MSDOS.getSize()),"'DOS/4G'"))
|
|
{
|
|
bDetected=1;
|
|
}
|
|
else if(MSDOS.isSignaturePresent(0,Math.min(1024,MSDOS.getSize()),"'DOS4GW'")
|
|
||MSDOS.isSignaturePresent(MSDOS.getNEOffset()-1024,1024,"'dos4gw'"))
|
|
{
|
|
sName+='W';
|
|
bDetected=1;
|
|
}
|
|
else if(MSDOS.compareEP("BF....8ED781C4....BE....2BF78BC6B1..D3E04836A3....368926....BE....468936....8CC32BDEF7DBB4..CD21368C"))
|
|
{
|
|
sOptions="1987-1993";
|
|
bDetected=1;
|
|
}
|
|
|
|
return result(bShowType,bShowVersion,bShowOptions);
|
|
}
|