1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
<xml>
<format>
<name>Portable Network Graphics</name>
<extension>.png</extension>
<mimetype>image/png</mimetype>
<support>Full</support>
<metadata>Textual metadata and date</metadata>
<method>Removal of harmful fields with hachoir.</method>
<remaining>None</remaining>
</format>
<format>
<name>Jpeg</name>
<extension>.jpeg, .jpg</extension>
<mimetype>image/jpeg</mimetype>
<support>Partial</support>
<metadata>Comments and exif/photoshop/adobe</metadata>
<method>Removal of harmful fields with hachoir.</method>
<remaining>Canon Raw tags</remaining>
</format>
<format>
<name>Open Document</name>
<extension>.odt, .odx, .ods, ...</extension>
<mimetype>application/opendocument</mimetype>
<support>Full</support>
<metadata>A meta.xml file</metadata>
<method>Removal of the meta.xml file.</method>
<remaining>None</remaining>
</format>
<format>
<name>Office Openxml</name>
<extension>.docx, .pptx, .xlsx, ...</extension>
<mimetype>application/officeopenxml</mimetype>
<support>Full</support>
<metadata>A docProps folder containings xml metadata files.</metadata>
<method>Removal of the docProps folder</method>
<remaining>None</remaining>
</format>
<format>
<name>Portable Document Fileformat</name>
<extension>.pdf</extension>
<mimetype>application/pdf</mimetype>
<support>Full</support>
<metadata>A lot</metadata>
<method>Rendering of the PDF file on a cairo surface with the help of poppler.</method>
<remaining>None</remaining>
</format>
<format>
<name>Tape ARchive</name>
<extension>.tar, .tar.bz2, .tar.gz</extension>
<mimetype>application/x-tar, application/x-gzip, application/x-bzip2</mimetype>
<support>Full</support>
<metadata>Metadata from compressed files, metadata added to them by tar and metadata from the tar itself.</metadata>
<method>Extraction and processing of each file, creation of a new archive, processing of this archive.</method>
<remaining>None</remaining>
</format>
<format>
<name>Zip</name>
<extension>.zip</extension>
<mimetype>application/zip</mimetype>
<support>Partial</support>
<metadata>Metadata from compressed files, metadata added to them by zip and metadata from the zip itself.</metadata>
<method>Extraction and processing of each file, creation of a new archive, processing of this archive.</method>
<remaining>Metadata added by zip itself to internal files</remaining>
</format>
<format>
<name>MPEG Audio</name>
<extension>.mp3, .mp2, .mp1, .mpa</extension>
<mimetype>audio/mpeg</mimetype>
<support>Full</support>
<metadata>Id3</metadata>
<method>Removal of harmful fields with hachoir</method>
<remaining>None</remaining>
</format>
<format>
<name>Ogg Vorbis</name>
<extension>.ogg</extension>
<mimetype>audio/vorbis</mimetype>
<support>Full</support>
<metadata>Vorbis</metadata>
<method>Removal of harmful fields with mutagen</method>
<remaining>None</remaining>
</format>
<format>
<name>Free Lossless Audio Codec</name>
<extension>.flac</extension>
<mimetype>audio/x-flac</mimetype>
<support>Full</support>
<metadata>Flac, Vorbis</metadata>
<method>Removal of harmful fields with mutagen</method>
<remaining>None</remaining>
</format>
<format>
<name>Torrent</name>
<extension>.torrent</extension>
<mimetype>application/torrent</mimetype>
<support>Full</support>
<metadata>Torrent specific metadata</metadata>
<method>Remove all the compromizing metadata with a heavily tuned version of the bencode lib by Petru Paled</method>
<remaining>None</remaining>
</format>
</xml>
|