-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
86 lines (79 loc) · 3.22 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#061a32" />
<!-- Page seo tags -->
<title>Digital Fingerprint</title>
<meta
name="description"
content="To create awareness and educate people about the browser fingerprint, I have created this website, which provides a visual representation of the data that can be collected by websites."
/>
<meta
name="keywords"
content="privacy, Browser Fingerprint, Javascript Project, Digital Fingerprint, Browser Hash, Browser Fingerprinting, Browser Identification, Web Tracking Techniques, Unique Browser Signature, Browser Profiling, Fingerprinting Techniques, Browser Privacy, Device Fingerprinting, Browser Security, Tracking Prevention, Anti-Fingerprinting Measures, Web Privacy, User Agent String, Canvas Fingerprinting, Audio Fingerprinting, WebGL Fingerprinting, Font Fingerprinting, JavaScript Fingerprinting, HTML5 Fingerprinting"
/>
<link
rel="canonical"
href="https://rakeshid03.github.io/digital-fingerprint/"
/>
<meta name="author" content="Rakeshid03" />
<!-- Meta Tags For Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Digital Fingerprint" />
<meta
property="og:description"
content="To create awareness and educate people about the browser fingerprint, I have created this website, which provides a visual representation of the data that can be collected by websites."
/>
<meta
property="og:url"
content="https://rakeshid03.github.io/digital-fingerprint/"
/>
<meta property="og:image" content="./assets/banner.jpg" />
<!-- Favicon -->
<link
rel="shortcut icon"
type="image/jpg"
href="./assets/digital-fingerprint.png"
/>
<!-- Custom stylesheet & font family -->
<link rel="stylesheet" href="./src/css/style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Fira+Mono:wght@300&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Fira+Code&display=swap"
rel="stylesheet"
/>
<!-- Add leaflet map links-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.7.1/leaflet.css"/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.7.1/leaflet.js"></script>
</head>
<body ontouchstart="countTouches(event)" ontouchend="countTouches(event)">
<!-- Full terminal -->
<div class="terminal">
<div class="header">
<div class="buttons">
<div class="button red"></div>
<div class="button yellow"></div>
<div class="button green"></div>
</div>
<p id="df">root@df:~</p>
</div>
<div class="screen">
<div class="output"></div>
</div>
</div>
<!-- Js file
1. Collecting data
2. Return in output
3. Default commands for users help
-->
<script src="./src/js/collect-data.js"></script>
<script src="./src/js/print-data.js"></script>
<script src="./src/js/default-command.js"></script>
</body>
</html>