mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
Additionally: ELF/UPX - test "UPX!" signature at the end of the file; MSDOS/PKLITE - fixed compare arguments; MSDOS/WWPACK - use MSDOS, not PE; PE/EXE joiner - removed, same signature as "Borland C".
15 lines
366 B
Text
15 lines
366 B
Text
// DIE's signature file
|
|
// Author: hypn0
|
|
|
|
init("compiler","Turbo Basic");
|
|
|
|
function detect(bShowType,bShowVersion,bShowOptions)
|
|
{
|
|
if(MSDOS.compareEP("2E8C......2EC706........E8....E8....25....2EA3....E8....B8....2EF706........75..32E450E8"))
|
|
{
|
|
sVersion="1.0";
|
|
bDetected=1;
|
|
}
|
|
|
|
return result(bShowType,bShowVersion,bShowOptions);
|
|
}
|