DosX-dev / Zeus-File-Identifier

A signature engine that makes it possible to recognize a file type based on a template. Can be used by antiviruses

Home Page:https://dosx.su

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

๐Ÿ”ฎ Zeus File Identifier (ZFI)

This program is designed to determine the file type using signatures according to certain rules. Can be used by antiviruses.

๐Ÿ“‘ About

This console program takes an argument --file which specifies the path to the file that needs to be examined. The output will contain the resulting format, description and some technical data (for example, the presence of compressed entropy data)

๐Ÿ’ผ Database rules format

{STRING_NAME}|{STRING_FILE_TYPE}|{STRING_DESCRIPTION}|{MASK_SIGNATURE}
  • Use ".."/"??" to indicate an unknown byte (like "0000..29..11...00")
  • Use the ' character to wrap an ASCII string (like "000000'String in the file!'000029")

The signature is read only from the beginning of the file.

Example of rule:

Lua Bytecode|Script|Lua machine code|1B'Lua'..00

๐Ÿง Run on Linux

Use the mono-complete package to use the program on Linux:

mono Zeus_File_Identifier.app --file "application.exe"

โœจ What about...

Detect It Easy will soon support Zeus File Identifier formats

About

A signature engine that makes it possible to recognize a file type based on a template. Can be used by antiviruses

https://dosx.su

License:MIT License


Languages

Language:Visual Basic .NET 100.0%