Hanno Böck This code is published under a 0BSD license. 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([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 . '

QR-Code

'); 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));