source: github/index.php @ b2265ae

HEADcourier-fixdev-browser-capabilitiespdorelease-0.6release-0.7release-0.8
Last change on this file since b2265ae was b2265ae, checked in by alecpl <alec@…>, 4 years ago

#1485584: display proper warning on login with empty user and pass

  • Property mode set to 100644
File size: 7.8 KB
Line 
1<?php
2/*
3 +-------------------------------------------------------------------------+
4 | RoundCube Webmail IMAP Client                                           |
5 | Version 0.2-20080829                                                    |
6 |                                                                         |
7 | Copyright (C) 2005-2008, RoundCube Dev. - Switzerland                   |
8 |                                                                         |
9 | This program is free software; you can redistribute it and/or modify    |
10 | it under the terms of the GNU General Public License version 2          |
11 | as published by the Free Software Foundation.                           |
12 |                                                                         |
13 | This program is distributed in the hope that it will be useful,         |
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of          |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the           |
16 | GNU General Public License for more details.                            |
17 |                                                                         |
18 | You should have received a copy of the GNU General Public License along |
19 | with this program; if not, write to the Free Software Foundation, Inc., |
20 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.             |
21 |                                                                         |
22 +-------------------------------------------------------------------------+
23 | Author: Thomas Bruederli <roundcube@gmail.com>                          |
24 +-------------------------------------------------------------------------+
25
26 $Id$
27
28*/
29
30// include environment
31require_once 'program/include/iniset.php';
32
33// init application and start session with requested task
34$RCMAIL = rcmail::get_instance();
35
36// init output class
37$OUTPUT = !empty($_REQUEST['_remote']) ? $RCMAIL->init_json() : $RCMAIL->load_gui(!empty($_REQUEST['_framed']));
38
39// set output buffering
40if ($RCMAIL->action != 'get' && $RCMAIL->action != 'viewsource') {
41  // use gzip compression if supported
42  if (function_exists('ob_gzhandler')
43      && !ini_get('zlib.output_compression')
44      && ini_get('output_handler') != 'ob_gzhandler') {
45    ob_start('ob_gzhandler');
46  }
47  else {
48    ob_start();
49  }
50}
51
52// check if config files had errors
53if ($err_str = $RCMAIL->config->get_error()) {
54  raise_error(array(
55    'code' => 601,
56    'type' => 'php',
57    'message' => $err_str), false, true);
58}
59
60// check DB connections and exit on failure
61if ($err_str = $DB->is_error()) {
62  raise_error(array(
63    'code' => 603,
64    'type' => 'db',
65    'message' => $err_str), FALSE, TRUE);
66}
67
68// error steps
69if ($RCMAIL->action=='error' && !empty($_GET['_code'])) {
70  raise_error(array('code' => hexdec($_GET['_code'])), FALSE, TRUE);
71}
72
73// try to log in
74if ($RCMAIL->action=='login' && $RCMAIL->task=='mail') {
75  $host = $RCMAIL->autoselect_host();
76 
77  // check if client supports cookies
78  if (empty($_COOKIE)) {
79    $OUTPUT->show_message("cookiesdisabled", 'warning');
80  }
81  else if ($_SESSION['temp'] && !empty($_POST['_user']) && !empty($_POST['_pass']) &&
82           $RCMAIL->login(trim(get_input_value('_user', RCUBE_INPUT_POST), ' '),
83              get_input_value('_pass', RCUBE_INPUT_POST, true, 'ISO-8859-1'), $host)) {
84    // create new session ID
85    unset($_SESSION['temp']);
86    rcube_sess_regenerate_id();
87
88    // send auth cookie if necessary
89    $RCMAIL->authenticate_session();
90
91    // log successful login
92    if ($RCMAIL->config->get('log_logins')) {
93      write_log('userlogins', sprintf('Successful login for %s (id %d) from %s',
94        $RCMAIL->user->get_username(),
95        $RCMAIL->user->ID,
96        $_SERVER['REMOTE_ADDR']));
97    }
98
99    // send redirect
100    $OUTPUT->redirect();
101  }
102  else {
103    $OUTPUT->show_message($IMAP->error_code == 0 ? 'loginfailed' : 'imaperror', 'warning');
104    $RCMAIL->kill_session();
105  }
106}
107
108// end session
109else if (($RCMAIL->task=='logout' || $RCMAIL->action=='logout') && isset($_SESSION['user_id'])) {
110  $OUTPUT->show_message('loggedout');
111  $RCMAIL->logout_actions();
112  $RCMAIL->kill_session();
113}
114
115// check session and auth cookie
116else if ($RCMAIL->action != 'login' && $_SESSION['user_id'] && $RCMAIL->action != 'send') {
117  if (!$RCMAIL->authenticate_session()) {
118    $OUTPUT->show_message('sessionerror', 'error');
119    $RCMAIL->kill_session();
120  }
121}
122
123
124// log in to imap server
125if (!empty($RCMAIL->user->ID) && $RCMAIL->task == 'mail') {
126  if (!$RCMAIL->imap_connect()) {
127    $RCMAIL->kill_session();
128  }
129}
130
131
132// check client X-header to verify request origin
133if ($OUTPUT->ajax_call) {
134  if (!$RCMAIL->config->get('devel_mode') && !rc_request_header('X-RoundCube-Referer')) {
135    header('HTTP/1.1 404 Not Found');
136    die("Invalid Request");
137  }
138}
139
140
141// not logged in -> show login page
142if (empty($RCMAIL->user->ID)) {
143 
144  if ($OUTPUT->ajax_call)
145    $OUTPUT->redirect(array(), 2000);
146 
147  // check if installer is still active
148  if ($RCMAIL->config->get('enable_installer') && is_readable('./installer/index.php')) {
149    $OUTPUT->add_footer(html::div(array('style' => "background:#ef9398; border:2px solid #dc5757; padding:0.5em; margin:2em auto; width:50em"),
150      html::tag('h2', array('style' => "margin-top:0.2em"), "Installer script is still accessible") .
151      html::p(null, "The install script of your RoundCube installation is still stored in its default location!") .
152      html::p(null, "Please <b>remove</b> the whole <tt>installer</tt> folder from the RoundCube directory because .
153        these files may expose sensitive configuration data like server passwords and encryption keys
154        to the public. Make sure you cannot access the <a href=\"./installer/\">installer script</a> from your browser.")
155      )
156    );
157  }
158 
159  $OUTPUT->set_env('task', 'login');
160  $OUTPUT->send('login');
161}
162
163
164// handle keep-alive signal
165if ($RCMAIL->action == 'keep-alive') {
166  $OUTPUT->reset();
167  $OUTPUT->send();
168}
169// save preference value
170else if ($RCMAIL->action == 'save-pref') {
171  $RCMAIL->user->save_prefs(array(get_input_value('_name', RCUBE_INPUT_POST) => get_input_value('_value', RCUBE_INPUT_POST)));
172  $OUTPUT->reset();
173  $OUTPUT->send();
174}
175
176
177// map task/action to a certain include file
178$action_map = array(
179  'mail' => array(
180    'preview' => 'show.inc',
181    'print'   => 'show.inc',
182    'moveto'  => 'move_del.inc',
183    'delete'  => 'move_del.inc',
184    'send'    => 'sendmail.inc',
185    'expunge' => 'folders.inc',
186    'purge'   => 'folders.inc',
187    'remove-attachment'  => 'compose.inc',
188    'display-attachment' => 'compose.inc',
189  ),
190 
191  'addressbook' => array(
192    'add' => 'edit.inc',
193  ),
194 
195  'settings' => array(
196    'folders'       => 'manage_folders.inc',
197    'create-folder' => 'manage_folders.inc',
198    'rename-folder' => 'manage_folders.inc',
199    'delete-folder' => 'manage_folders.inc',
200    'subscribe'     => 'manage_folders.inc',
201    'unsubscribe'   => 'manage_folders.inc',
202    'add-identity'  => 'edit_identity.inc',
203  )
204);
205
206// include task specific functions
207include_once 'program/steps/'.$RCMAIL->task.'/func.inc';
208
209// allow 5 "redirects" to another action
210$redirects = 0; $incstep = null;
211while ($redirects < 5) {
212  $stepfile = !empty($action_map[$RCMAIL->task][$RCMAIL->action]) ?
213    $action_map[$RCMAIL->task][$RCMAIL->action] : strtr($RCMAIL->action, '-', '_') . '.inc';
214   
215  // try to include the step file
216  if (is_file(($incfile = 'program/steps/'.$RCMAIL->task.'/'.$stepfile))) {
217    include($incfile);
218    $redirects++;
219  }
220  else {
221    break;
222  }
223}
224
225
226// make sure the message count is refreshed (for default view)
227if ($RCMAIL->task == 'mail') {
228  $IMAP->messagecount($_SESSION['mbox'], 'ALL', true);
229}
230
231// parse main template (default)
232$OUTPUT->send($RCMAIL->task);
233
234
235// if we arrive here, something went wrong
236raise_error(array(
237  'code' => 404,
238  'type' => 'php',
239  'line' => __LINE__,
240  'file' => __FILE__,
241  'message' => "Invalid request"), true, true);
242                     
243?>
Note: See TracBrowser for help on using the repository browser.