Skip to content

Commit 6fd00e2

Browse files
committed
Merge branch 'master' of github.com:gchq/CyberChef
2 parents 862cfdf + 674c8c7 commit 6fd00e2

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

src/core/lib/FileSignatures.mjs

+21
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,27 @@ export const FILE_SIGNATURES = {
7272
},
7373
extractor: extractWEBP
7474
},
75+
{
76+
name: "High Efficiency Image File Format",
77+
extension: "heic,heif",
78+
mime: "image/heif",
79+
description: "",
80+
signature: {
81+
0: 0x00,
82+
1: 0x00,
83+
2: 0x00,
84+
// 3 could be 0x24 or 0x18, so skip it
85+
4: 0x66, // ftypheic
86+
5: 0x74,
87+
6: 0x79,
88+
7: 0x70,
89+
8: 0x68,
90+
9: 0x65,
91+
10: 0x69,
92+
11: 0x63
93+
},
94+
extractor: null
95+
},
7596
{
7697
name: "Camera Image File Format",
7798
extension: "crw",

0 commit comments

Comments
 (0)