Hanno Böck To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see http://creativecommons.org/publicdomain/zero/1.0/ Nevertheless, in case you use a significant part of this code, we ask (but not require, see the license) that you keep the authors' names in place and return your changes to the public. We would be especially happy if you tell us what you're going to do with this code. */ require_once('inc/base.php'); require_role(array(ROLE_SYSTEMUSER, ROLE_MAILACCOUNT, ROLE_VMAIL_ACCOUNT)); require_once('totp.php'); $username = urldecode($_REQUEST['username']); $oldpw = $_REQUEST['oldpw']; $newpw = $_REQUEST['newpw']; if (! validate_password($username, $oldpw)) { system_failure('Ihr bestehendes Mailbox-Passwort hat nicht gestimmt.'); } store_webmail_password($username, $oldpw, $newpw); $secret = generate_secret($username); $section='webmailtotp_overview'; title("Zwei-Faktor-Anmeldung am Webmailer"); output('

Bitte geben Sie den folgenden Initialisierungs-Code in Ihre TOTP-Software ein oder scannen Sie den QR-Code mit Ihrem Mobiltelefon.

'); $qrcode_image = generate_qrcode_image($secret); output('

Ihr Initialisierungs-Code

'.$secret.'

'); output('

Testen Sie es...

Nachdem Sie den Startwert in Ihren TOTP-Generator eingegeben haben bzw. den QRCode eingescannt haben, erhalten Sie umgehend einen Zugangscode. Geben Sie diesen hier ein um die Funktion zu testen:

'); $form = '

Ihr Webmail-Benutzername:

Ihr neues Webmail-Passwort:

Der aktuellste Einmal-Code:

'; output(html_form('webmailtotp_test', 'test', '', $form));