-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (27 loc) · 1.18 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Bot Detector</title>
<meta name="description" content="We Detect Bots">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap" rel="stylesheet">
<script src="js/logic.js"></script>
<script src="naivebrowserdetect/detect.js"></script>
<script src="js/fingerprintjs2/dist/fingerprint2.min.js"></script>
</head>
<body>
<div id="container">
<p id="top">BOT DETECTOR</p>
<h2>Super Basic Stuff:</h2>
<p>Mouse Movement Detected: <span id="mouseEvent">NOT YET</span></p>
<p>Keyboard Event Detected: <span id="keyboardEvent">NOT YET</span></p>
<h2>This is the information I found out about your setup (naive):</h2>
<p id="browserInfo">I rely on Javascript! And haven't been loaded yet!</p>
<p id="deviceInfo">I rely on Javascript! And haven't been loaded yet!</p>
<h2>These are behaviour tests:</h2>
<p id="debugOpenTest">You haven't opened the debugger tool (inspect element) yet,
but I got my eye on you.</p>
</div>
</body>
</html>