Autologin an der Fritzbox mit Firefox und Greasemonkey

Mittels einem Greasemonkey Userscript kann man sich automatisch an der Fritzbox anmelden.

// ==UserScript==
// @name        FritzBox Autologin
// @namespace   https://wiki.ex23.de/dokuwiki/doku.php/it:linux:fritzbox_autologin
// @description Autologin an einer Fritzbox
// @version     1
// @include     http://192.168.178.1/*
// ==/UserScript==
//
var txtPasswd = document.getElementById('uiViewPassword');
txtPasswd.value = "MEINPASSWORT";
unsafeWindow.uiDoSave();

Anmerkungen: