One Hat Cyber Team
Your IP :
216.73.216.115
Server IP :
194.44.31.54
Server :
Linux zen.imath.kiev.ua 4.18.0-553.77.1.el8_10.x86_64 #1 SMP Fri Oct 3 14:30:23 UTC 2025 x86_64
Server Software :
Apache/2.4.37 (Rocky Linux) OpenSSL/1.1.1k
PHP Version :
5.6.40
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
sam
/
public_html
/
web
/
components
/
com_login
/
View File Name :
login.php
<?php /** * @version $Id: login.php 4055 2006-06-19 20:00:59Z stingrey $ * @package Joomla * @subpackage Users * @copyright Copyright (C) 2005 Open Source Matters. All rights reserved. * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php * Joomla! is free software. This version may have been modified pursuant * to the GNU General Public License, and as distributed it includes or * is derivative of works licensed under the GNU General Public License or * other free or open source software licenses. * See COPYRIGHT.php for copyright notices and details. */ // no direct access defined( '_VALID_MOS' ) or die( 'Restricted access' ); // load the html drawing class require_once( $mainframe->getPath( 'front_html' ) ); global $database, $my, $mainframe; global $mosConfig_live_site, $mosConfig_frontend_login, $mosConfig_db; if ( $mosConfig_frontend_login != NULL && ($mosConfig_frontend_login === 0 || $mosConfig_frontend_login === '0')) { header( "HTTP/1.0 403 Forbidden" ); echo _NOT_AUTH; return; } $menu = $mainframe->get( 'menu' ); $params = new mosParameters( $menu->params ); $params->def( 'page_title', 1 ); $params->def( 'header_login', $menu->name ); $params->def( 'header_logout', $menu->name ); $params->def( 'pageclass_sfx', '' ); $params->def( 'back_button', $mainframe->getCfg( 'back_button' ) ); $params->def( 'login', $mosConfig_live_site ); $params->def( 'logout', $mosConfig_live_site ); $params->def( 'login_message', 0 ); $params->def( 'logout_message', 0 ); $params->def( 'description_login', 1 ); $params->def( 'description_logout', 1 ); $params->def( 'description_login_text', _LOGIN_DESCRIPTION ); $params->def( 'description_logout_text', _LOGOUT_DESCRIPTION ); $params->def( 'image_login', 'key.jpg' ); $params->def( 'image_logout', 'key.jpg' ); $params->def( 'image_login_align', 'right' ); $params->def( 'image_logout_align', 'right' ); $params->def( 'registration', $mainframe->getCfg( 'allowUserRegistration' ) ); $image_login = ''; $image_logout = ''; if ( $params->get( 'image_login' ) != -1 ) { $image = $mosConfig_live_site .'/images/stories/'. $params->get( 'image_login' ); $image_login = '<img src="'. $image .'" align="'. $params->get( 'image_login_align' ) .'" hspace="10" alt="" />'; } if ( $params->get( 'image_logout' ) != -1 ) { $image = $mosConfig_live_site .'/images/stories/'. $params->get( 'image_logout' ); $image_logout = '<img src="'. $image .'" align="'. $params->get( 'image_logout_align' ) .'" hspace="10" alt="" />'; } if ( $my->id ) { loginHTML::logoutpage( $params, $image_logout ); } else { loginHTML::loginpage( $params, $image_login ); } ?>