mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
add new heuristic signatures
This commit is contained in:
parent
8bab1db464
commit
96d173494e
1 changed files with 13 additions and 0 deletions
|
|
@ -109,6 +109,7 @@ function main() {
|
|||
{ ext: ["vrml", "wrl"], type: "format", name: "VRML Model", bin: true },
|
||||
{ ext: ["x3d"], type: "format", name: "X3D Model", bin: true },
|
||||
{ ext: ["mp4"], type: "format", name: "MPEG-4 Video", bin: true },
|
||||
{ ext: ["bik"], type: "format", name: "Bink Video", bin: true },
|
||||
{ ext: ["mkv"], type: "format", name: "Matroska Video", bin: true },
|
||||
{ ext: ["avi"], type: "format", name: "AVI Video", bin: true },
|
||||
{ ext: ["mov"], type: "format", name: "QuickTime Movie", bin: true },
|
||||
|
|
@ -170,6 +171,12 @@ function main() {
|
|||
{ ext: ["slddrw"], type: "format", name: "SolidWorks Drawing", bin: true },
|
||||
{ ext: ["prt"], type: "format", name: "Creo Parametric Part", bin: true },
|
||||
{ ext: ["asm"], type: "format", name: "Creo Parametric Assembly", bin: true },
|
||||
{ ext: ["nds"], type: "format", name: "Nintendo DS ROM", bin: true },
|
||||
{ ext: ["z64"], type: "format", name: "Nintendo 64 ROM", bin: true },
|
||||
{ ext: ["pcx"], type: "format", name: "PiCture eXchange", bin: true },
|
||||
{ ext: ["wbfs"], type: "format", name: "Wii Backup File System", bin: true },
|
||||
{ ext: ["si"], type: "format", name: "Interleaf File", bin: true },
|
||||
{ ext: ["wdb"], type: "format", name: "World DataBase", bin: true },
|
||||
// Coktel Vision formats:
|
||||
{ ext: ["vmd"], type: "format", name: "Video and Media Data", bin: true },
|
||||
{ ext: ["mesh"], type: "format", name: "3D Collide Data", bin: true },
|
||||
|
|
@ -205,6 +212,10 @@ function main() {
|
|||
{ ext: ["dag"], type: "format", name: "Dialog Text", bin: true },
|
||||
{ ext: ["seq"], type: "format", name: "Animation Sequence", bin: true },
|
||||
{ ext: ["scn"], type: "format", name: "Scene File", bin: false },
|
||||
{ ext: ["rec"], type: "format", name: "Record File", bin: true },
|
||||
{ ext: ["gam"], type: "format", name: "Savegame File", bin: true },
|
||||
{ ext: ["lvl"], type: "format", name: "Level File", bin: true },
|
||||
{ ext: ["stb"], type: "format", name: "STB (OGG)", bin: true },
|
||||
// XPAT formats:
|
||||
{ ext: ["xcs"], type: "format", name: "XPAT Compiled Script", bin: true },
|
||||
// Generic formats:
|
||||
|
|
@ -217,10 +228,12 @@ function main() {
|
|||
{ ext: ["cfg"], type: "format", name: "Config File", bin: true },
|
||||
{ ext: ["inf"], type: "format", name: "INF file (setup Information file)", bin: true },
|
||||
{ ext: ["bin"], type: "format", name: "Binary File", bin: true },
|
||||
{ ext: ["icns"], type: "format", name: "Apple Icon Image format", bin: true },
|
||||
// ScummVM formats:
|
||||
{ ext: ["gob"], type: "format", name: "Config file (extract_gob_stk)", bin: false },
|
||||
// Director formats:
|
||||
{ ext: ["dxr"], type: "format", name: "Protected Director Movie", bin: true },
|
||||
{ ext: ["cxt"], type: "format", name: "Adobe Director Protected Cast file", bin: true },
|
||||
];
|
||||
|
||||
for (var i = 0; i < extensionsDb.length; i++) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue