summaryrefslogtreecommitdiff
path: root/website/arris_bookmarklet_helper.html
diff options
context:
space:
mode:
authorYves <yvesf-git@xapek.org>2011-02-27 12:20:33 +0100
committerYves <yvesf-git@xapek.org>2011-02-27 12:20:33 +0100
commite1012b1ac083b42052da3da4b1d7c90e4e1e6f35 (patch)
tree48688937c119958c6ee388151e80f6326f007b96 /website/arris_bookmarklet_helper.html
parentf68bb72ed4c2ea1d9d3e1aa3420298b1e4473ea2 (diff)
downloadarris-e1012b1ac083b42052da3da4b1d7c90e4e1e6f35.tar.gz
arris-e1012b1ac083b42052da3da4b1d7c90e4e1e6f35.zip
website
Diffstat (limited to 'website/arris_bookmarklet_helper.html')
-rw-r--r--website/arris_bookmarklet_helper.html48
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>