-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (63 loc) · 2.39 KB
/
Copy pathindex.html
File metadata and controls
69 lines (63 loc) · 2.39 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/site.css">
<link
rel="apple-touch-icon" sizes="180x180" href="icon/apple-touch-icon.png">
<link
rel="icon" type="image/png" sizes="32x32" href="icon/favicon-32x32.png">
<link
rel="icon" type="image/png" sizes="16x16" href="icon/favicon-16x16.png">
<link rel="manifest" href="icon/site.webmanifest">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Keylogging Demo"
/>
<title>Keylogging Demo</title>
</head>
<body>
<div id="conteneur">
<div id="tete">
<div id="liens">
<a
href="https://github.com/statsmaths/keylog.js"
target="_blank"
rel="noopener noreferrer">[source + info]</a>
</div>
<div id="titre">keylog.js</div>
</div>
<div id="boitedetexte">
<p class="en">
This webpage performs keylogging of input typed into a textbox.
In other words, when focused on the textbox below, the page will
record each time you hit a key or select text with your mouse.
All of the data is stored locally on your machine in the DOM
and is downloadable as a CSV file. More information about the
motivation of this project and the format of the produced data
are available
<a href="https://github.com/statsmaths/keylog.js/blob/main/README.md"
target="_blank" rel="noopener noreferrer">here</a>.
</p>
<p class="fr"><b>To use:</b> Click inside the
textbox and type some text. Then, select the Download Data
button below to save a CSV file of your keylogs. You can clear
the form box and restart the data collection by hitting the Reset
button.
</p>
</div>
<textarea
cols="72" rows="10" id="lname" name="lname" spellcheck="false">
</textarea>
<br/>
<div id="buttons">
<a id="downloadAnchorElem"><span>Download Data</span></a>
<a id="resetTexbox"><span>Reset</span></a>
</div>
</div>
<script src="js/keylog.js"></script>
</body>
</html>