blob: dbbe40d29e3f21bfb49928b3e7be51162325a353 (
plain)
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
|
<html>
<body>
<pre>
javascript: (function() {
n=document.createElement("script");
n.setAttribute("src","http://xapek.org/gitweb/?p=public/arris.git;a=blob_plain;f=website/arris_bookmarklet_helper.js;hb=HEAD");
document.body.appendChild(n);
})();
</pre>
<p>
<a href="javascript: (function(){n=document.createElement('script');n.setAttribute('src','http://xapek.org/gitweb/?p=public/arris.git;a=blob_plain;f=website/arris_bookmarklet_helper.js;hb=HEAD');document.body.appendChild(n);})();">bookmarklet link</a>
-
<a href="http://www.delicious.com/help/bookmarklets">Anleitung Installation Bookmarklets</a>
-
<a href="http://xapek.org/gitweb/?p=public/arris.git;a=summary">Source</a></p>
<br/>
<p><a href="http://192.168.100.1/techsupport.htm">http://192.168.100.1/techsupport.htm</a></p>
<br/>
<p style="font-style:italic;">Published for Educational purpose only. Maybe you not allowed to use it against your router.
</p>
<p><a href="http://sbhackers.net/">sbhackers.net</a> wird (21-11-2010) aus Kabel BW Netz geblockt</a></p>
<p><a href="https://wiki.chaostreff.ch/Motorola_SB4200E">wiki.chaostreff.ch/Motorola_SB4200E</a></p>
<p><a href="https://wiki.chaostreff.ch/Arris_TM602B">wiki.chaostreff.ch/Arris_TM602B</a></p>
<input type="button" onclick="calculatePW()" value="Calculate Passwords of the Day" />
<pre id="ids" style="background-color:lightgray;"></pre>
<script src="http://xapek.org/gitweb/?p=public/arris.git;a=blob_plain;f=js/arris.minimized.js;hb=HEAD"></script>
<script>
function calculatePW() {
var text = "Date : Password of the Day\n------------------------------\n";
var basedate = Number(new Date());
for (var i = -1; i<7; i++) {
var d = new Date( basedate + (i*86400*1000));
var pw = calculatePasswordOfDay(new Date(d));
var day = d.getDate();
var month = d.getMonth() + 1;
var year = d.getYear() + 1900;
text += "" + month + "/" + day + "/" + year + ": " + pw + "\n";
}
document.getElementById("ids").innerHTML = text;
}
</script>
</body>
</html>
|