forked from borfast/arrispwgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (65 loc) · 3.17 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
<!doctype html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Arris password of the day generator</title>
<meta name="description" content="Arris password of the day generator">
<meta name="author" content="Raúl Pedro Santos">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="style.css">
<script src="arrispwgen.js" type="text/javascript"></script>
<script src="ui.js" type="text/javascript"></script>
</head>
<body>
<a href="http://github.com/borfast/arrispwgen"><img style="position: absolute; top: 0; right: 0; border: 0;" src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
<div id="container">
<header>
<h1>Arris password of the day generator</h1>
</header>
<section>
<p>Some Arris modems have a security mechanism that asks for a different password every day.</p>
<p>This password generator gives you the ability to generate a list of passwords for a bunch of days at once.</p>
<p>The start and end dates are basically the first and last day for which you would like a password generated. Just enter the day, month and year for each of them and press the "Go" button.</p>
<p>If you want a password for a single day, you enter the same date for both. This is actually the default, i.e., what you get automatically when you open this page: today's date on both start and end dates.</p>
</section>
<form>
<fieldset id="start-date">
<legend>Start date</legend>
<label for="start-year">Year</label><input type="text" id="start-year" size="4" />
<label for="start-month">Month</label><input type="text" id="start-month" size="3" />
<label for="start-day">Day</label><input type="text" id="start-day" size="3" />
</fieldset>
<fieldset id="end-date">
<legend>End date</legend>
<label for="end-year">Year</label><input type="text" id="end-year" size="4" />
<label for="end-month">Month</label><input type="text" id="end-month" size="3" />
<label for="end-day">Day</label><input type="text" id="end-day" size="3" />
</fieldset>
<input type="button" id="go" value="Go!" />
</form>
<table id="password-list">
<tr>
<th>Date</th><th>Password</th>
</tr>
</table>
</div> <!--! end of #container -->
<div id="footer">
<p>You can also get a <a href="bookmarklet.html">bookmarklet</a>.</p>
<p>Get the source code on GitHub : <a href="http://github.com/borfast/arrispwgen">borfast/arrispwgen</a></p>
</div>
<!--[if lt IE 7 ]>
<script src="//ajax.googleapis.com/ajax/libs/chrome-frame/1.0.2/CFInstall.min.js"></script>
<script>window.attachEvent("onload",function(){CFInstall.check({mode:"overlay"})})</script>
<![endif]-->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-93953-8']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>