-
Notifications
You must be signed in to change notification settings - Fork 20
/
metadata.html
134 lines (86 loc) · 6.14 KB
/
metadata.html
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!--
=============================
_ ______ ____ ______
/ | / / __ \/ __ \/ ____/
/ |/ / / / / / / / __/
/ /| / /_/ / /_/ / /___
/_/ |_/\____/_____/_____/
=============================
-->
<!DOCTYPE html>
<html>
<head>
<title>N O D E</title>
<meta name="google-site-verification" content="KAh0wcTC2Anz5ea6Kq26RuhsiUKx5FD3D4HZAJdfaf4" />
<link rel="shortcut icon" href="images/avatar.png">
<link rel="alternate" href="https://n-o-d-e.net/rss/rss.xml" type="application/rss+xml" title="N O D E"/>
<link href='https://fonts.googleapis.com/css?family=Share+Tech+Mono' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="css/style.css" media="screen">
</head>
<body>
<div id="page">
<div id="content">
<!--HEADER SECTION -->
<div id="header"><pre>
<a class="node" href="http://n-o-d-e.net">
×× ×× ××××× ×××××× ××××××
××× ×× ×× ×× ×× ×× ××
×× × ×× ×× ×× ×× ×× ×××××
×× ××× ×× ×× ×× ×× ××
×× ×× ××××× ×××××× ××××××</a>
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------</pre>
</div>
<!--CONTENT -->
<div id="list">
<div class="title">
HOW TO CLEAN METADATA FROM FILES IN LINUX<br>
--
</div>
<div id="post">
<p>This guide will show you how to clean meta data from your files using any Debian based Linux distro (like Raspbian or Ubuntu).</p>
<p>Metadata in files can reveal a lot about you. For example, most cameras automatically include time, date, location, author information and more in every photo you take. When you upload those files to a site like Facebook, all this data is automatically logged. The same is true for all sorts of other file types too.</p>
<div class="videowrapper">
<iframe src="https://www.youtube.com/embed/5J_tA65cNbI?rel=0&showinfo=0" frameborder="0"></iframe>
</div>
<p class="description">
- <a href="https://www.youtube.com/watch?v=5J_tA65cNbI" target="_blank">Youtube link</a><br>
- <a href="https://archive.org/download/metadata_201612/metadata.mp4" target="_blank">Archive.org mirror</a><br>
- <a href="https://archive.org/download/metadata_201612/metadata_201612_archive.torrent" target="_blank">Torrent</a><br>
- <a href="https://keybase.pub/nodefiles/metadata.mp4" target="_blank">Keybase mirror</a>
</p>
<p class="subtitle">INSTALLING MAT</p>
<p>We’ll be using an app called Mat, which stands for Metadata Anonymisation Toolkit. Install Mat using this command, press enter, and follow the instructions.</p>
<p><span class="code">sudo apt-get install mat</span></p>
<p class="subtitle">DISPLAYING METADATA FOR A SINGLE FILE</p>
<p>If you want to check the metadata on a single file, simply type the following and press enter, with Example_File.jpg being the file you want to look at.</p>
<p><span class="code">mat -d Example_File.jpg</span></p>
<p class="subtitle">CHECK THE CONTENTS OF A FOLDER</p>
<p>The -c command will tell you whether each file in a folder is clean or not. Simply change the path to whichever folder you want to check.</p>
<p><span class="code">mat -c Example_Folder</span></p>
<p class="subtitle">CLEAN A SINGLE FILE</p>
<p>To clean a single file, simply type the following and press enter. You’ll get a confirmation if all goes well.</p>
<p><span class="code">mat Example_File.jpg</span></p>
<p class="subtitle">CLEAN THE CONTENTS OF A FOLDER</p>
<p>To clean the contents of an entire folder, you simply specify a folder name instead of a file, then press enter. Again, you will see confirmation if successful.</p>
<p><span class="code">mat Example_Folder</span></p>
<p class="subtitle">FINISHED</p>
<p>This simple method is a good way to protect your privacy, especially when uploading your files to third party services, however, it isn’t a silver bullet. There may be other unknown ways that your files are fingerprinted, so keep that in mind.</p>
<p>--<br>
BY NODE</p>
</div>
</div>
<!--FOOTER SECTION -->
<div id="footer">
<pre>------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------</pre>
<div class="filter">
<a href="http://n-o-d-e.net">HOME</a>
<span class="footdogs"> × </span>
<a href="http://N-O-D-E.net/shop/">SHOP</a>
<span class="footdogs"> × </span>
<a target="_blank" href="http://patreon.com/N_O_D_E_">PATREON</a>
<span class="footdogs"> × </span>
<a target="_blank" href="https://github.com/N-O-D-E/N-O-D-E.net">GITHUB</a>
</div>
</div>
</body>
</html>