freebsd_amp_hwpstate/contrib/file/magic/Magdir/msooxml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

69 lines
2.7 KiB
Plaintext
Raw Normal View History

2014-06-24 21:24:48 +00:00
#------------------------------------------------------------------------------
2023-09-10 04:50:07 +00:00
# $File: msooxml,v 1.19 2023/03/14 19:46:15 christos Exp $
2014-06-24 21:24:48 +00:00
# msooxml: file(1) magic for Microsoft Office XML
# From: Ralf Brown <ralf.brown@gmail.com>
# .docx, .pptx, and .xlsx are XML plus other files inside a ZIP
# archive. The first member file is normally "[Content_Types].xml".
# but some libreoffice generated files put this later. Perhaps skip
# the "[Content_Types].xml" test?
# Since MSOOXML doesn't have anything like the uncompressed "mimetype"
# file of ePub or OpenDocument, we'll have to scan for a filename
# which can distinguish between the three types
2018-05-20 04:56:46 +00:00
0 name msooxml
>0 string word/ Microsoft Word 2007+
!:mime application/vnd.openxmlformats-officedocument.wordprocessingml.document
2022-09-24 04:20:34 +00:00
!:ext docx
2018-05-20 04:56:46 +00:00
>0 string ppt/ Microsoft PowerPoint 2007+
!:mime application/vnd.openxmlformats-officedocument.presentationml.presentation
2022-09-24 04:20:34 +00:00
!:ext pptx
2018-05-20 04:56:46 +00:00
>0 string xl/ Microsoft Excel 2007+
!:mime application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
2022-09-24 04:20:34 +00:00
!:ext xlsx
2022-01-03 01:44:41 +00:00
>0 string visio/ Microsoft Visio 2013+
2020-02-10 01:33:52 +00:00
!:mime application/vnd.ms-visio.drawing.main+xml
2022-01-03 01:44:41 +00:00
>0 string AppManifest.xaml Microsoft Silverlight Application
!:mime application/x-silverlight-app
2018-05-20 04:56:46 +00:00
2014-06-24 21:24:48 +00:00
# start by checking for ZIP local file header signature
0 string PK\003\004
!:strength +10
# make sure the first file is correct
>0x1E use msooxml
2022-01-03 01:44:41 +00:00
>0x1E default x
2022-07-04 00:05:11 +00:00
>>0x1E regex \\[Content_Types\\]\\.xml|_rels/\\.rels|docProps|customXml
2014-06-24 21:24:48 +00:00
# skip to the second local file header
# since some documents include a 520-byte extra field following the file
# header, we need to scan for the next header
2022-01-03 01:44:41 +00:00
>>>(18.l+49) search/6000 PK\003\004
2014-06-24 21:24:48 +00:00
# now skip to the *third* local file header; again, we need to scan due to a
# 520-byte extra field following the file header
2022-01-03 01:44:41 +00:00
>>>>&26 search/6000 PK\003\004
2014-06-24 21:24:48 +00:00
# and check the subdirectory name to determine which type of OOXML
# file we have. Correct the mimetype with the registered ones:
2019-11-10 03:44:32 +00:00
# https://technet.microsoft.com/en-us/library/cc179224.aspx
2022-01-03 01:44:41 +00:00
>>>>>&26 use msooxml
>>>>>&26 default x
2018-05-20 04:56:46 +00:00
# OpenOffice/Libreoffice orders ZIP entry differently, so check the 4th file
2022-01-03 01:44:41 +00:00
>>>>>>&26 search/6000 PK\003\004
>>>>>>>&26 use msooxml
2022-07-04 00:05:11 +00:00
# Some OOXML generators add an extra customXml directory. Check another file.
>>>>>>>&26 default x
>>>>>>>>&26 search/6000 PK\003\004
>>>>>>>>>&26 use msooxml
>>>>>>>>>&26 default x Microsoft OOXML
2022-01-03 01:44:41 +00:00
>>>>>>>&26 default x Microsoft OOXML
2019-11-10 03:44:32 +00:00
>>>>>&26 default x Microsoft OOXML
2023-09-10 04:50:07 +00:00
>>0x1E regex \\[trash\\]
>>>&26 search/6000 PK\003\004
>>>>&26 search/6000 PK\003\004
>>>>>&26 use msooxml
>>>>>&26 default x
>>>>>>&26 search/6000 PK\003\004
>>>>>>>&26 use msooxml
>>>>>>>&26 default x Microsoft OOXML
>>>>>>&26 default x Microsoft OOXML
>>>>>&26 default x Microsoft OOXML