-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (65 loc) · 3.21 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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="icon.png">
<!-- Place favicon.ico in the root directory -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<!--[if gte IE 6]> Internet Explorer 6 or greater <![endif]-->
<!--[if gte IE 7]> Internet Explorer 7 or greater <![endif]-->
<!--[if gte IE 8]> Internet Explorer 8 or greater <![endif]-->
<!--[if gte IE 9]> Internet Explorer 9 or greater <![endif]-->
<!-- Add your site or application content here -->
<div id="heading_title" class="inner"><h1>Browser Fingerprinting Website</h1></div>
<!--<script src="js/vendor/modernizr-3.5.0.min.js"></script>-->
<!--<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>-->
<!--<script>window.jQuery || document.write('<script src="js/vendor/jquery-3.2.1.min.js"><\/script>')</script>-->
<script src="js/browserAttributes.js"></script>
<script src="js/browserDetection.js"></script>
<script src="js/fontDetection.js"></script>
<script src="js/paperFinger.js"></script>
<script src="js/plugins.js"></script>
<script src="js/sha256.js"></script>
<script src="js/main.js"></script>
<div id="content">
<div class="inner">
<h4><a href="wumbo.png">Download File</a></h4>
<h2><span>Detected Browser: </span> <span id="browser_value"></span></h2>
<h2><span>Fingerpring Hash: </span> <span id="hash_value"></span></h2>
<!-- Fingerprint hash value goes here -->
</div>
</div>
<div id="footer">
<div id="implementation" class="inner">
<div id="description">
<p>This website uses Browser & Version specific properties of browsers:</p>
<p>Collected fingerprint values are collected and hashed using sha256.</p>
</div>
<table id="how">
<tr>
<td>Differences of browser populated vs "classic" objects (e.g. object mutability)</td>
</tr>
<tr>
<td>navigator object properties and methods (e.g. navigator.oscpu)</td></tr>
<tr>
<td>Browser Specific properties & methods (e.g. window.chrome)</td>
</tr>
<tr>
<td>screen object properties and methods (e.g. screen.width)</td>
</tr>
<tr>
<td>Font Detection (e.g. Apple Symbols VS Droid Sans)</td>
</tr>
</table>
</div>
</div>
</body>
</html>