Google-Auth-Token setzen un...
Bernd Wurst authored 12 years ago
|
1) <?php
2) /*
3) This file belongs to the Webinterface of schokokeks.org Hosting
4)
5) Written 2008-2012 by schokokeks.org Hosting, namely
6) Bernd Wurst <bernd@schokokeks.org>
7) Hanno Böck <hanno@schokokeks.org>
8)
9) 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.
10)
11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see
12) http://creativecommons.org/publicdomain/zero/1.0/
13)
14) 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.
15) */
16)
17)
18) function account_has_googleauth($username)
19) {
20) $username = mysql_real_escape_string($username);
21) $result = db_query("SELECT id FROM mail.webmail_googleauth WHERE email='{$username}'");
22) if (mysql_num_rows($result) > 0) {
23) $tmp = mysql_fetch_assoc($result);
24) $id = $tmp['id'];
25) return $id;
26) } else {
27) return false;
28) }
29) }
30)
31)
32)
33) function validate_password($username, $password)
34) {
35) $username = mysql_real_escape_string($username);
36) $result = db_query("SELECT account, cryptpass FROM mail.courier_mailaccounts WHERE account='{$username}' UNION SELECT account, cryptpass FROM mail.courier_virtual_accounts WHERE account='{$username}'");
37) if (mysql_num_rows($result) != 1) {
38) // Kein Account mit dem Namen oder Name nicht eindeutig
39) return false;
40) }
41) $account = mysql_fetch_assoc($result);
42) return (crypt($password, $account['cryptpass']) == $account['cryptpass']);
43) }
44)
45)
46) function store_webmail_password($username, $oldpw, $newpw)
47) {
48) $secret = $newpw;
49) if (strlen($oldpw) > strlen($newpw)) {
50) $secret = str_pad($newpw, strlen($oldpw), $newpw);
51) }
52) if (strlen($oldpw) < strlen($newpw)) {
53) $newpw = substr($newpw, 0, strlen($oldpw));
54) }
55) if (strlen($oldpw) != strlen($secret)) {
56) system_failure('Interner Fehler: Passwörter sind nicht gleich lang');
57) }
58) $code = '';
59) for ($i = 0 ; $i != strlen($oldpw) ; $i++) {
60) $code .= chr( ord($oldpw[$i]) ^ ord($secret[$i]) );
61) }
62) $code = base64_encode($code);
63) DEBUG(array($oldpw, $newpw, $code));
64)
|
löschen der OTP-Authentifiz...
Bernd Wurst authored 12 years ago
|
65) $uid = (int) $_SESSION['userinfo']['uid'];
|
Google-Auth-Token setzen un...
Bernd Wurst authored 12 years ago
|
66)
|
löschen der OTP-Authentifiz...
Bernd Wurst authored 12 years ago
|
67) db_query("REPLACE INTO mail.webmail_googleauth (useraccount, email, webmailpass) VALUES ({$uid}, '{$username}', '{$code}')");
|
Google-Auth-Token setzen un...
Bernd Wurst authored 12 years ago
|
68) }
69)
70)
71) function decode_webmail_password($crypted, $webmailpw)
72) {
73) $crypted = base64_decode($crypted);
74) $secret = $webmailpw;
75) if (strlen($crypted) > strlen($webmailpw)) {
76) $secret = str_pad($webmailpw, strlen($crypted), $webmailpw);
77) }
78) if (strlen($crypted) < strlen($webmailpw)) {
79) $webmailpw = substr($webmailpw, 0, strlen($crypted));
80) }
81) $clear = '';
82) for ($i = 0 ; $i != strlen($crypted) ; $i++) {
83) $clear .= chr( ord($crypted[$i]) ^ ord($secret[$i]) );
84) }
85) DEBUG('decrypted: '.$clear);
86) return $clear;
87) }
88)
89)
90) function check_webmail_password($username, $webmailpass)
91) {
92) $username = mysql_real_escape_string($username);
93) $result = db_query("SELECT webmailpass FROM mail.webmail_googleauth WHERE email='{$username}'");
94) $tmp = mysql_fetch_assoc($result);
95)
96) $crypted = $tmp['webmailpass'];
97)
98) $clear = decode_webmail_password($crypted, $webmailpass);
99)
100) return validate_password($username, $clear);
101)
102) }
103)
104)
105) function generate_secret($username)
106) {
107) $username = mysql_real_escape_string($username);
108) require_once('external/googleauthenticator/GoogleAuthenticator.php');
109) $ga = new PHPGangsta_GoogleAuthenticator();
110)
111) $secret = $ga->createSecret();
112) DEBUG('GA-Secret: '.$secret);
113) DEBUG('QrCode: '.$ga->getQRCodeGoogleUrl('Blog', $secret));
114) db_query("UPDATE mail.webmail_googleauth SET ga_secret='{$secret}' WHERE email='{$username}'");
115) return $secret;
116) }
117)
118) function check_googleauth($username, $code) {
119) $username = mysql_real_escape_string($username);
120)
|
löschen der OTP-Authentifiz...
Bernd Wurst authored 12 years ago
|
121) $result = db_query("SELECT ga_secret, failures FROM mail.webmail_googleauth WHERE email='{$username}' AND (unlock_timestamp IS NULL OR unlock_timestamp <= NOW())");
|
Google-Auth-Token setzen un...
Bernd Wurst authored 12 years ago
|
122) $tmp = mysql_fetch_assoc($result);
123) $secret = $tmp['ga_secret'];
124)
125) require_once('external/googleauthenticator/GoogleAuthenticator.php');
126) $ga = new PHPGangsta_GoogleAuthenticator();
127)
128) $checkResult = $ga->verifyCode($secret, $code, 2); // 2 = 2*30sec clock tolerance
129) if ($checkResult) {
|
löschen der OTP-Authentifiz...
Bernd Wurst authored 12 years ago
|
130) db_query("UPDATE mail.webmail_googleauth SET failures = 0, unlock_timestamp=NULL WHERE email='{$username}'");
|
Google-Auth-Token setzen un...
Bernd Wurst authored 12 years ago
|
131) DEBUG('OK');
132) } else {
|
löschen der OTP-Authentifiz...
Bernd Wurst authored 12 years ago
|
133) if ($tmp['failures'] > 0 && $tmp['failures'] % 5 == 0) {
134) db_query("UPDATE mail.webmail_googleauth SET failures = failures+1, unlock_timestamp = NOW() + INTERVAL 5 MINUTE WHERE email='{$username}'");
135) } else {
136) db_query("UPDATE mail.webmail_googleauth SET failures = failures+1 WHERE email='{$username}'");
137) }
138)
|
Google-Auth-Token setzen un...
Bernd Wurst authored 12 years ago
|
139) DEBUG('FAILED');
140) }
141) return $checkResult;
142)
143) }
144)
145) function generate_qrcode_image($secret) {
146) $url = 'otpauth://totp/Webmail?secret='.$secret;
147)
148) $descriptorspec = array(
149) 0 => array("pipe", "r"), // STDIN ist eine Pipe, von der das Child liest
150) 1 => array("pipe", "w"), // STDOUT ist eine Pipe, in die das Child schreibt
151) 2 => array("pipe", "w")
152) );
153)
154) $process = proc_open('qrencode -t PNG -s 5 -o -', $descriptorspec, $pipes);
155)
156) if (is_resource($process)) {
157) // $pipes sieht nun so aus:
158) // 0 => Schreibhandle, das auf das Child STDIN verbunden ist
159) // 1 => Lesehandle, das auf das Child STDOUT verbunden ist
160)
161) fwrite($pipes[0], $url);
162) fclose($pipes[0]);
163)
164) $pngdata = stream_get_contents($pipes[1]);
165) fclose($pipes[1]);
166)
167) // Es ist wichtig, dass Sie alle Pipes schließen bevor Sie
168) // proc_close aufrufen, um Deadlocks zu vermeiden
169) $return_value = proc_close($process);
170)
171) return $pngdata;
|
löschen der OTP-Authentifiz...
Bernd Wurst authored 12 years ago
|
172) } else {
173) warning('Es ist ein interner Fehler im Webinterface aufgetreten, aufgrund dessen kein QR-Code erstellt werden kann. Sollte dieser Fehler mehrfach auftreten, kontaktieren Sie bitte die Administratoren.');
|
Google-Auth-Token setzen un...
Bernd Wurst authored 12 years ago
|
174) }
175)
176)
177) }
178)
|