5fae5f1047cc1560b7ceb483ad1d16cc1b55143a
Bernd Wurst 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) 
Bernd Wurst löschen der OTP-Authentifiz...

Bernd Wurst authored 12 years ago

65)   $uid = (int) $_SESSION['userinfo']['uid'];
Bernd Wurst Google-Auth-Token setzen un...

Bernd Wurst authored 12 years ago

66) 
Bernd Wurst 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}')");
Bernd Wurst 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) 
Bernd Wurst blacklist für eingegebene C...

Bernd Wurst authored 12 years ago

118) function check_locked($username) 
119) {
120)   $username = mysql_real_escape_string($username);
121)   $result = db_query("SELECT 1 FROM mail.webmail_googleauth WHERE unlock_timestamp IS NOT NULL and unlock_timestamp > NOW() AND email='{$username}'");
122)   return (mysql_num_rows($result) > 0);
123) }
124) 
Bernd Wurst Google-Auth-Token setzen un...

Bernd Wurst authored 12 years ago

125) function check_googleauth($username, $code) {
Bernd Wurst blacklist für eingegebene C...

Bernd Wurst authored 12 years ago

126)   if (check_blacklist($username, $code)) {
127)     DEBUG('Replay-Attack');
128)     return false;
129)   }
130) 
Bernd Wurst Google-Auth-Token setzen un...

Bernd Wurst authored 12 years ago

131)   $username = mysql_real_escape_string($username);
132) 
Bernd Wurst löschen der OTP-Authentifiz...

Bernd Wurst authored 12 years ago

133)   $result = db_query("SELECT ga_secret, failures FROM mail.webmail_googleauth WHERE email='{$username}' AND (unlock_timestamp IS NULL OR unlock_timestamp <= NOW())");
Bernd Wurst Google-Auth-Token setzen un...

Bernd Wurst authored 12 years ago

134)   $tmp = mysql_fetch_assoc($result);
135)   $secret = $tmp['ga_secret'];
136) 
137)   require_once('external/googleauthenticator/GoogleAuthenticator.php');
138)   $ga = new PHPGangsta_GoogleAuthenticator();
139)   
140)   $checkResult = $ga->verifyCode($secret, $code, 2);    // 2 = 2*30sec clock tolerance
141)   if ($checkResult) {
Bernd Wurst löschen der OTP-Authentifiz...

Bernd Wurst authored 12 years ago

142)     db_query("UPDATE mail.webmail_googleauth SET failures = 0, unlock_timestamp=NULL WHERE email='{$username}'");
Bernd Wurst blacklist für eingegebene C...

Bernd Wurst authored 12 years ago

143)     blacklist_token($username, $code);
Bernd Wurst Google-Auth-Token setzen un...

Bernd Wurst authored 12 years ago

144)     DEBUG('OK');
145)   } else {
Bernd Wurst löschen der OTP-Authentifiz...

Bernd Wurst authored 12 years ago

146)     if ($tmp['failures'] > 0 && $tmp['failures'] % 5 == 0) {
147)       db_query("UPDATE mail.webmail_googleauth SET failures = failures+1, unlock_timestamp = NOW() + INTERVAL 5 MINUTE WHERE email='{$username}'");
148)     } else {
149)       db_query("UPDATE mail.webmail_googleauth SET failures = failures+1 WHERE email='{$username}'");
150)     }
151)     
Bernd Wurst Google-Auth-Token setzen un...

Bernd Wurst authored 12 years ago

152)     DEBUG('FAILED');
153)   }
154)   return $checkResult;
155) 
156) }
157) 
158) function generate_qrcode_image($secret) {
159)   $url = 'otpauth://totp/Webmail?secret='.$secret;
160)   
161)   $descriptorspec = array(
162)     0 => array("pipe", "r"),  // STDIN ist eine Pipe, von der das Child liest
163)     1 => array("pipe", "w"),  // STDOUT ist eine Pipe, in die das Child schreibt
164)     2 => array("pipe", "w") 
165)   );
166) 
167)   $process = proc_open('qrencode -t PNG -s 5 -o -', $descriptorspec, $pipes);
168) 
169)   if (is_resource($process)) {
170)     // $pipes sieht nun so aus:
171)     // 0 => Schreibhandle, das auf das Child STDIN verbunden ist
172)     // 1 => Lesehandle, das auf das Child STDOUT verbunden ist
173) 
174)     fwrite($pipes[0], $url);
175)     fclose($pipes[0]);
176) 
177)     $pngdata = stream_get_contents($pipes[1]);
178)     fclose($pipes[1]);
179) 
180)     // Es ist wichtig, dass Sie alle Pipes schließen bevor Sie
181)     // proc_close aufrufen, um Deadlocks zu vermeiden
182)     $return_value = proc_close($process);
183)   
184)     return $pngdata;
Bernd Wurst löschen der OTP-Authentifiz...

Bernd Wurst authored 12 years ago

185)   } else {
186)     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.');
Bernd Wurst Google-Auth-Token setzen un...

Bernd Wurst authored 12 years ago

187)   }
188)   
189)   
190) }
191) 
Bernd Wurst löschen der OTP-Authentifiz...

Bernd Wurst authored 12 years ago

192) function accountname($id) 
193) {
194)   $id = (int) $id;
195)   $uid = (int) $_SESSION['userinfo']['uid'];
196)   $result = db_query("SELECT email FROM mail.webmail_googleauth WHERE id={$id} AND useraccount={$uid}");
197)   if ($tmp = mysql_fetch_assoc($result)) {
198)     return $tmp['email'];
199)   }
200) }
201) 
202) 
203) function delete_googleauth($id) 
204) {
205)   $id = (int) $id;
206)   $uid = (int) $_SESSION['userinfo']['uid'];
207)   
208)   db_query("DELETE FROM mail.webmail_googleauth WHERE id={$id} AND useraccount={$uid}");
209) }
210)