-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
84 lines (63 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
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="bower_components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" type="text/css" media="screen" rel="stylesheet" />
<script type="application/javascript" src="bower_components/jquery/dist/jquery.js"></script>
<script type="application/javascript" src="js/linkslist.js"></script>
<script type="application/javascript" src="js/demo.js"></script>
<title>:visited and Captchas</title>
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="#">:visited and Captchas</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Demo</a></li>
<li><a target="_blank"
href="https://github.com/frantzmiccoli/visited-captcha-history">Source</a></li>
<li><a target="_blank"
href="http://thedarkside.frantzmiccoli.com/experimentations/2014/06/09/trick-user-access-history-css-visited-and-captcha.html">Article</a></li>
<li><a target="_blank"
href="http://tinsnail.neocities.org/">Inspired from</a></li>
</ul>
</div>
</div>
</div>
<div class="clearfix" > </div>
<div class="container">
<div id="content">
<h3>This looks like your normal captcha service</h3>
<p>Please prove us that you are human.</p>
<div class="clear" > </div>
<div id="wrapper">
<form action="#" id="form">
<div id="captcha"></div>
<div class="clear" > </div>
<input id="typed" type="text" />
<input id="submit" type="submit" />
</form>
</div>
<div id="message-wrapper">
<div id="message"> </div>
<div id="visited"> </div>
<div id="read-more" class="main">
Using the ":visited" pseudo-selector we can fake the aspect of the Captcha and learn
about your navigation history. You can learn more by
<a href="http://github.com/frantzmiccoli/visited-captcha-history" target="_blank">
reading the source</a> or
<a target="_blank"
href="http://thedarkside.frantzmiccoli.com/experimentations/2014/06/09/trick-user-access-history-css-visited-and-captcha.html">
the affiliated article</a>.
</div>
</div>
</div>
</div>
</body>
</html>