diff options
Diffstat (limited to 'website/arris_bookmarklet_helper.html')
-rw-r--r-- | website/arris_bookmarklet_helper.html | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/website/arris_bookmarklet_helper.html b/website/arris_bookmarklet_helper.html new file mode 100644 index 0000000..dbbe40d --- /dev/null +++ b/website/arris_bookmarklet_helper.html @@ -0,0 +1,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> |