Skip to content

Commit 8180781

Browse files
authored
Merge pull request #263 from BJNFNE/signature
add new signatures
2 parents 02ba4c0 + 8a6a3bc commit 8180781

File tree

3 files changed

+36
-0
lines changed

3 files changed

+36
-0
lines changed

db/Binary/__MiniExtensionsHeuristic_By_DosX.7.sg

+6
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,7 @@ function main() {
216216
{ ext: ["gam"], type: "format", name: "Savegame File", bin: true },
217217
{ ext: ["lvl"], type: "format", name: "Level File", bin: true },
218218
{ ext: ["stb"], type: "format", name: "STB (OGG)", bin: true },
219+
{ ext: ["adbx"], type: "format", name: "AdibouX", bin: true },
219220
// XPAT formats:
220221
{ ext: ["xcs"], type: "format", name: "XPAT Compiled Script", bin: true },
221222
// Generic formats:
@@ -229,11 +230,16 @@ function main() {
229230
{ ext: ["inf"], type: "format", name: "INF file (setup Information file)", bin: true },
230231
{ ext: ["bin"], type: "format", name: "Binary File", bin: true },
231232
{ ext: ["icns"], type: "format", name: "Apple Icon Image format", bin: true },
233+
{ ext: ["mdx"], type: "format", name: "Multidimensional Expressions", bin: true },
234+
{ ext: ["qdat"], type: "format", name: "QuickTime data", bin: true },
235+
{ ext: ["pup"], type: "format", name: "Playstation Update Package", bin: true },
232236
// ScummVM formats:
233237
{ ext: ["gob"], type: "format", name: "Config file (extract_gob_stk)", bin: false },
234238
// Director formats:
235239
{ ext: ["dxr"], type: "format", name: "Protected Director Movie", bin: true },
236240
{ ext: ["cxt"], type: "format", name: "Adobe Director Protected Cast file", bin: true },
241+
{ ext: ["dcr"], type: "format", name: "Published Shockwave Movie", bin: true },
242+
{ ext: ["cct"], type: "format", name: "Published Shockwave Cast", bin: true },
237243
];
238244

239245
for (var i = 0; i < extensionsDb.length; i++) {

db/Binary/archive.CKP.sg

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// Detect It Easy: detection rule file
2+
// Author: BJNFNE <[email protected]>
3+
// This Script supports following formats: CKP
4+
// Used by Adiboo & Paziral's Secret
5+
6+
init("archive", "CKP");
7+
8+
function detect() {
9+
if (Binary.compare("'.CKP'")) { // Use contains instead of compare
10+
sVersion = "CKP"; // Set version if detected
11+
bDetected = true; // Mark as detected
12+
}
13+
14+
return result(); // Return the result of the detection
15+
}

db/Binary/archive.EDP.sg

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// Detect It Easy: detection rule file
2+
// Author: BJNFNE <[email protected]>
3+
// This Script supports following formats: EDP
4+
// Used by Adiboo & The Energy Thieves
5+
6+
init("archive", "EDP");
7+
8+
function detect() {
9+
if (Binary.compare("'.EDP'")) { // Use contains instead of compare
10+
sVersion = "EdgeDataPak"; // Set version if detected
11+
bDetected = true; // Mark as detected
12+
}
13+
14+
return result(); // Return the result of the detection
15+
}

0 commit comments

Comments
 (0)