mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-03-07 00:46:59 +01:00
Backups errors are shown. Return to active tab when save configurations tabs. Fix translations.
103 lines
3.3 KiB
PHP
103 lines
3.3 KiB
PHP
<?php
|
|
|
|
/**
|
|
* sysPass
|
|
*
|
|
* @author nuxsmin
|
|
* @link http://syspass.org
|
|
* @copyright 2012 Rubén Domínguez nuxsmin@syspass.org
|
|
*
|
|
* This file is part of sysPass.
|
|
*
|
|
* sysPass 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 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* sysPass 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.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with sysPass. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
define('APP_ROOT', '..');
|
|
include_once (APP_ROOT . "/inc/init.php");
|
|
|
|
SP_Util::checkReferer('POST');
|
|
|
|
if (!SP_Init::isLoggedIn()) {
|
|
return;
|
|
}
|
|
|
|
$accountId = SP_Common::parseParams('p', 'accountid', FALSE);
|
|
$fullTxt = SP_Common::parseParams('p', 'full', 0);
|
|
$isHistory = SP_Common::parseParams('p', 'isHistory', 0);
|
|
|
|
if ( ! $accountId) {
|
|
return;
|
|
}
|
|
|
|
$account = new SP_Account;
|
|
$account->accountParentId = ( isset($_SESSION["accParentId"]) ) ? $_SESSION["accParentId"] : "";
|
|
$account->accountId = $accountId;
|
|
$account->accountIsHistory = $isHistory;
|
|
|
|
if (!$isHistory) {
|
|
$account->getAccount();
|
|
if (!$account->checkAccountAccess("accviewpass") || !SP_Users::checkUserAccess("accviewpass"))
|
|
die('<span class="altTxtRed">' . _('No tiene permisos para acceder a esta cuenta') . '</span>');
|
|
} else {
|
|
if ($account->checkAccountMPass()) {
|
|
$account->getAccountHistory();
|
|
if (!$account->checkAccountAccess("accviewpass") || !SP_Users::checkUserAccess("accviewpass"))
|
|
die('<span class="altTxtRed">' . _('No tiene permisos para acceder a esta cuenta') . '</span>');
|
|
} else {
|
|
echo '<div id="fancyMsg" class="msgError">' . _('La clave maestra no coincide') . '</div>';
|
|
return;
|
|
}
|
|
}
|
|
|
|
if (!SP_Users::checkUserUpdateMPass()) {
|
|
if ( $fullTxt ){
|
|
echo '<div id="fancyMsg" class="msgError">' . _('Clave maestra actualizada') . '<br>' . _('Reinicie la sesión para cambiarla') . '</div>';
|
|
} else {
|
|
echo _('Clave maestra actualizada') . '<br>' . _('Reinicie la sesión para cambiarla');
|
|
}
|
|
return;
|
|
}
|
|
|
|
$crypt = new SP_Crypt;
|
|
$masterPass = $crypt->getSessionMasterPass();
|
|
$accountClearPass = $crypt->decrypt($account->accountPass, $masterPass, $account->accountIV);
|
|
|
|
|
|
if (!$isHistory){
|
|
$account->incrementDecryptCounter();
|
|
}
|
|
|
|
$message['action'] = _('Ver clave');
|
|
$message['text'][] = _('ID') . ': ' . $accountId;
|
|
$message['text'][] = _('Cuenta') . ': ' . $account->accountCustomerName . " / " . $account->accountName;
|
|
$message['text'][] = _('IP') . ': ' . $_SERVER['REMOTE_ADDR'];
|
|
|
|
SP_Common::wrLogInfo($message);
|
|
|
|
if ($fullTxt) {
|
|
echo '<div id="fancyMsg" class="msgInfo">';
|
|
echo '<table>
|
|
<tr>
|
|
<td><span class="altTxtBlue">' . _('Usuario') . '</span></td>
|
|
<td>' . $account->accountLogin . '</td>
|
|
</tr>
|
|
<tr>
|
|
<td><span class="altTxtBlue">' . _('Clave') . '</span></td>
|
|
<td>' . trim($accountClearPass) . '</td>
|
|
</tr>
|
|
</table>';
|
|
echo '</div>';
|
|
} else {
|
|
echo trim($accountClearPass);
|
|
} |