forked from Cacti/cacti
-
Notifications
You must be signed in to change notification settings - Fork 0
/
auth_changepassword.php
461 lines (372 loc) · 13.9 KB
/
auth_changepassword.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
<?php
/*
+-------------------------------------------------------------------------+
| Copyright (C) 2004-2024 The Cacti Group |
| |
| This program is free software; you can redistribute it and/or |
| modify it under the terms of the GNU General Public License |
| as published by the Free Software Foundation; either version 2 |
| of the License, or (at your option) any later version. |
| |
| This program is distributed in the hope that it will be useful, |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| GNU General Public License for more details. |
+-------------------------------------------------------------------------+
| Cacti: The Complete RRDtool-based Graphing Solution |
+-------------------------------------------------------------------------+
| This code is designed, written, and maintained by the Cacti Group. See |
| about.php and/or the AUTHORS file for specific developer information. |
+-------------------------------------------------------------------------+
| http://www.cacti.net/ |
+-------------------------------------------------------------------------+
*/
include('./include/global.php');
set_default_action();
$action = get_request_var('action');
switch ($action) {
case 'checkpass':
$error = secpass_check_pass(get_nfilter_request_var('password'));
if ($error != '') {
print $error;
} else {
print 'ok';
}
exit;
break;
default:
// If the user is not logged in, redirect them to the login page
if (!isset($_SESSION[SESS_USER_ID])) {
if (isset($_SERVER['HTTP_REFERER'])) {
header('Location: ' . $_SERVER['HTTP_REFERER']);
} else {
header('Location: index.php');
}
header('Location: index.php');
exit;
}
}
if (isset($_SERVER['HTTP_REFERER'])) {
$return = $_SERVER['HTTP_REFERER'];
if (basename($return) != 'auth_changepassword.php') {
if (strpos($return, '/plugins/') !== false) {
$parts = explode('/plugins/', $return);
$return = CACTI_PATH_URL . 'plugins/' . $parts[1];
} else {
$return = CACTI_PATH_URL . basename($return);
}
$_SESSION['acp_return'] = $return;
} else {
if (isset($_SESSION['acp_return'])) {
$return = $_SESSION['acp_return'];
} else {
$return = CACTI_PATH_URL . 'index.php';
}
}
} else {
$return = CACTI_PATH_URL . 'index.php';
}
$user = db_fetch_row_prepared('SELECT *
FROM user_auth
WHERE id = ?',
array($_SESSION[SESS_USER_ID]));
$version = CACTI_VERSION;
if (!cacti_sizeof($user) || $user['realm'] != 0) {
if (!cacti_sizeof($user)) {
raise_message(44);
} else {
raise_message('nodomainpassword');
}
if (isset($_SERVER['HTTP_REFERER'])) {
header('Location: ' . $_SERVER['HTTP_REFERER']);
} else {
header('Location: index.php');
}
exit;
}
if ($user['password_change'] != 'on') {
raise_message('nopassword');
/* destroy session information */
kill_session_var(SESS_USER_ID);
cacti_cookie_logout();
if (isset($_SERVER['HTTP_REFERER'])) {
header('Location: ' . $_SERVER['HTTP_REFERER']);
} else {
header('Location: index.php');
}
exit;
}
/* find out if we are logged in as a 'guest user' or not, if we are redirect away from password change */
if (cacti_sizeof($user) && $user['id'] === get_guest_account()) {
header('Location: graph_view.php');
exit;
}
/* default to !bad_password */
$bad_password = false;
$errorMessage = '';
switch ($action) {
case 'changepassword':
// Get current user
$user_id = intval($_SESSION[SESS_USER_ID]);
// Get passwords entered for change
$password = get_nfilter_request_var('password');
$password_confirm = get_nfilter_request_var('password_confirm');
// Get current password as entered
$current_password = get_nfilter_request_var('current_password');
// Secpass checking
$error = secpass_check_pass($password);
// Check new password passes basic checks
if ($error != 'ok') {
$bad_password = true;
$errorMessage = "<span class='badpassword_message'>$error</span>";
break;
}
// Check user password history
if (!secpass_check_history($user_id, $password)) {
$bad_password = true;
$errorMessage = "<span class='badpassword_message'>" . __('You cannot use a previously entered password!') . '</span>';
break;
}
// Password and Confirmed password checks
if ($password !== $password_confirm) {
$bad_password = true;
$errorMessage = "<span class='badpassword_message'>" . __('Your new passwords do not match, please retype.') . '</span>';
break;
}
// Compare current password with stored password
if ((!empty($user['password']) || !empty($current_password)) && !compat_password_verify($current_password, $user['password'])) {
$bad_password = true;
$errorMessage = "<span class='badpassword_message'>" . __('Your current password is not correct. Please try again.') . '</span>';
break;
}
// Check new password does not match stored password
if (compat_password_verify($password, $user['password'])) {
$bad_password = true;
$errorMessage = "<span class='badpassword_message'>" . __('Your new password cannot be the same as the old password. Please try again.') . '</span>';
break;
}
// If password isn't blank, password change is good to go
if ($password != '') {
if (read_config_option('secpass_expirepass') > 0) {
db_execute_prepared("UPDATE user_auth
SET lastchange = ?
WHERE id = ?
AND realm = 0
AND enabled = 'on'",
array(time(), $user_id));
}
$history = intval(read_config_option('secpass_history'));
if ($history > 0) {
$h = db_fetch_row_prepared("SELECT password, password_history
FROM user_auth
WHERE id = ?
AND realm = 0
AND enabled = 'on'",
array($user_id));
$op = $h['password'];
$h = explode('|', $h['password_history']);
while (cacti_count($h) > $history - 1) {
array_shift($h);
}
$h[] = $op;
$h = implode('|', $h);
db_execute_prepared("UPDATE user_auth
SET password_history = ?
WHERE id = ?
AND realm = 0
AND enabled = 'on'",
array($h, $user_id));
}
db_execute_prepared('INSERT IGNORE INTO user_log
(username, result, time, ip)
VALUES (?, 3, NOW(), ?)',
array($user['username'], get_client_addr()));
db_check_password_length();
db_execute_prepared("UPDATE user_auth
SET must_change_password = '', password = ?
WHERE id = ?",
array(compat_password_hash($password,PASSWORD_DEFAULT), $user_id));
// Clear the auth cache for the user
$token = '';
if (isset($_SERVER['HTTP_COOKIE']) && strpos($_SERVER['HTTP_COOKIE'], 'cacti_remembers') !== false) {
$parts = explode(';', $_SERVER['HTTP_COOKIE']);
foreach ($parts as $p) {
if (strpos($p, 'cacti_remembers') !== false) {
$pparts = explode('%2C', $p);
if (isset($pparts[1])) {
$token = $pparts[1];
break;
}
}
}
}
if ($token != '') {
$sql_where = 'AND token != ' . db_qstr(hash('sha512', $token, false));
} else {
$sql_where = '';
}
db_execute_prepared("DELETE FROM user_auth_cache
WHERE user_id = ?
$sql_where",
array($_SESSION[SESS_USER_ID]));
kill_session_var(SESS_CHANGE_PASSWORD);
raise_message('password_success');
/* ok, at the point the user has been successfully authenticated; so we must decide what to do next */
/* if no console permissions show graphs otherwise, pay attention to user setting */
$realm_id = $user_auth_realm_filenames['index.php'];
$has_console = db_fetch_cell_prepared('SELECT realm_id
FROM user_auth_realm
WHERE user_id = ? AND realm_id = ?',
array($user_id, $realm_id));
if (basename(get_nfilter_request_var('ref')) == 'auth_changepassword.php' || basename(get_nfilter_request_var('ref')) == '') {
if ($has_console) {
set_request_var('ref', 'index.php');
} else {
set_request_var('ref', 'graph_view.php');
}
}
if (!empty($has_console)) {
switch ($user['login_opts']) {
case '1': /* referer */
header('Location: ' . sanitize_uri(get_nfilter_request_var('ref')));
break;
case '2': /* default console page */
header('Location: index.php');
break;
case '3': /* default graph page */
header('Location: graph_view.php');
break;
default:
api_plugin_hook_function('login_options_navigate', $user['login_opts']);
}
} else {
header('Location: graph_view.php');
}
exit;
} else {
$bad_password = true;
}
break;
}
if (api_plugin_hook_function('custom_password', OPER_MODE_NATIVE) == OPER_MODE_RESKIN) {
exit;
}
if (get_request_var('action') == 'force') {
$errorMessage = "<span class='loginErrors'>*** " . __('Forced password change') . ' ***</span>';
}
/* Create tooltip for password complexity */
$secpass_tooltip = "<span style='font-weight:normal;'>" . __('Password requirements include:') . '</span><br>';
$secpass_body = '';
if (read_config_option('secpass_minlen') > 0) {
$secpass_body .= __('Must be at least %d characters in length', read_config_option('secpass_minlen'));
}
if (read_config_option('secpass_reqmixcase') == 'on') {
$secpass_body .= ($secpass_body != '' ? '<br>':'') . __('Must include mixed case');
}
if (read_config_option('secpass_reqnum') == 'on') {
$secpass_body .= ($secpass_body != '' ? '<br>':'') . __('Must include at least 1 number');
}
if (read_config_option('secpass_reqspec') == 'on') {
$secpass_body .= ($secpass_body != '' ? '<br>':'') . __('Must include at least 1 special character');
}
if (read_config_option('secpass_history') != '0') {
$secpass_body .= ($secpass_body != '' ? '<br>':'') . __('Cannot be reused for %d password changes', read_config_option('secpass_history') + 1);
}
$secpass_tooltip .= $secpass_body;
$selectedTheme = get_selected_theme();
$skip_current = (empty($user['password']));
if (isset_request_var('ref')) {
$ref_parts = parse_url(get_nfilter_request_var('ref'));
$valid = true;
if (isset($ref_parts['user']) || isset($ref_parts['pass'])) {
$valid = false;
} elseif (!isset($ref_parts['host'])) {
$value = true;
} elseif (isset($ref_parts['host'])) {
$server_addr = $_SERVER['SERVER_ADDR'];
if (!filter_var($_SERVER['SERVER_NAME'], FILTER_VALIDATE_IP)) {
$server_info = dns_get_record($_SERVER['SERVER_NAME'], DNS_ANY);
$server_ref = gethostbyname($ref_parts['host']);
if ($server_ref != $server_addr) {
$valid = false;
}
if (!$valid && cacti_sizeof($server_info)) {
foreach($server_info as $record) {
if (isset($record['host']) && $record['host'] == $server_ref) {
$valid = true;
break;
} elseif (isset($record['target']) && $record['target'] == $server_ref) {
$valid = true;
break;
} elseif (isset($record['ip']) && $record['ip'] == $server_addr) {
$valid = true;
break;
}
}
}
} else {
$server_ip = gethostbyname($_SERVER['SERVER_NAME']);
$server_ref = gethostbyname($ref_parts['host']);
if ($server_ip == $server_ref) {
$valid = true;
}
}
} else {
$valid = false;
}
if (!$valid) {
cacti_log('WARNING: User attempted to access Cacti from unknown URL', false, 'AUTH');
raise_message('problems_with_page', __('There are problems with the Change Password page. Contact your Cacti administrator right away.'), MESSAGE_LEVEL_ERROR);
header('Location:index.php');
exit;
}
}
if ($skip_current) {
$title_message = __('Please enter your current password and your new<br>Cacti password.');
} else {
$title_message = __('Please enter your new Cacti password.');
}
html_auth_header('change_password', __('Change Password'), __('Change Password'), $title_message);
?>
<tr style='display:none'>
<td>
<input type='hidden' name='action' value='changepassword'>
<input type='hidden' name='ref' value='<?php print html_escape(get_request_var('ref')); ?>'>
<input type='hidden' name='name' value='<?php print isset($user['username']) ? html_escape($user['username']) : '';?>'>
<input type='text'><input type='password'></td>
</td>
</tr>
<tr>
<?php if ($skip_current) { ?>
<td><?php print __('Username');?></td>
<td class='nowrap'><input type='hidden' id='current' name='current_password' value=''><?php print $user['username'];?></td>
<?php } else { ?>
<td><?php print __('Current password');?></td>
<td class='nowrap'><input type='password' class='ui-state-default ui-corner-all' id='current' name='current_password' autocomplete='off' size='15' maxlength='25' placeholder='********'></td>
<?php } ?>
</tr>
<tr>
<td><?php print __('New password');?></td>
<td class='nowrap'><input type='password' class='ui-state-default ui-corner-all' id='password' name='password' autocomplete='off' size='15' maxlength='25' placeholder='********'><?php print display_tooltip($secpass_tooltip);?></td>
</tr>
<tr>
<td><?php print __('Confirm password');?></td>
<td class='nowrap'><input type='password' class='ui-state-default ui-corner-all' id='password_confirm' name='password_confirm' autocomplete='off' size='15' maxlength='25' placeholder='********'></td>
</tr>
<tr>
<td colspan='2' class='nowrap'><input type='submit' class='ui-button ui-corner-all ui-widget' value='<?php print __esc('Save'); ?>'>
<?php print $user['must_change_password'] != 'on' ? "<input type='button' class='ui-button ui-corner-all ui-widget' onClick='document.location=\"$return\"' value='". __esc('Return') . "'>":'';?>
</td>
</tr>
<?php
$secpass_minlen = read_config_option('secpass_minlen');
html_auth_footer('change_password', $errorMessage, "
<script type='text/javascript'>
var password_change = $('#password_change').is(':checked');
$(function() {
$('#current').focus();
/* clear passwords */
$('#password').val('');
$('#password_confirm').val('');
});
</script>");