mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
Fix: 2023-01-09
This commit is contained in:
parent
ebfad505be
commit
6ea112d3a9
2 changed files with 29 additions and 3 deletions
|
|
@ -16,5 +16,31 @@ function detect(bShowType,bShowVersion,bShowOptions)
|
|||
}
|
||||
}
|
||||
|
||||
if(!bDetected)
|
||||
{
|
||||
if (Binary.getSize()>=0x4C0)
|
||||
{
|
||||
if(Binary.compare("....................'ETracker (C) BY ESI.'", 0x4B3))
|
||||
{
|
||||
bDetected = 1;
|
||||
sVersion = "1.x";
|
||||
sName = "E-Tracker";
|
||||
sOptions = "Embedded player"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if(!bDetected)
|
||||
{
|
||||
if(Binary.getSize()>=0x24)
|
||||
{
|
||||
if(Binary.compare("01FF..3EFF32018079FEFF2846320280"))
|
||||
{
|
||||
bDetected = 1;
|
||||
sName = "SNG-COP";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return result(bShowType,bShowVersion,bShowOptions);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,9 +6,9 @@
|
|||
How to run portable version on Linux
|
||||
=======
|
||||
|
||||
* download an appImage file https://github.com/horsicq/DIE-engine/releases/download/3.07/Detect_It_Easy-3.07-x86_64.AppImage
|
||||
* make the file executable (chmod +x Detect_It_Easy-3.07-x86_64.AppImage)
|
||||
* run it (./Detect_It_Easy-3.07-x86_64.AppImage)
|
||||
* download an appImage file https://github.com/horsicq/DIE-engine/releases/download/3.08/Detect_It_Easy-3.08-x86_64.AppImage
|
||||
* make the file executable (chmod +x Detect_It_Easy-3.08-x86_64.AppImage)
|
||||
* run it (./Detect_It_Easy-3.08-x86_64.AppImage)
|
||||
|
||||
Run with Docker
|
||||
=======
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue