⚝
One Hat Cyber Team
⚝
Your IP:
216.73.217.4
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
psa-pear
/
pear
/
data
/
horde
/
scripts
/
Edit File: http_login.php
<?php /** * Copyright 1999-2017 Horde LLC (http://www.horde.org/) * * See the enclosed file COPYING for license information (LGPL-2). If you * did not receive this file, see http://www.horde.org/licenses/lgpl. * * @author Chuck Hagenbuch <chuck@horde.org> * @category Horde * @license http://www.horde.org/licenses/lgpl LGPL-2 * @package Horde */ // Edit the following line to match the filesystem location of your Horde // installation. $HORDE_DIR = '/var/www/horde'; require_once $HORDE_DIR . '/lib/Application.php'; Horde_Registry::appInit('horde', array('authentication' => 'none')); $auth = $injector->getInstance('Horde_Core_Factory_Auth')->create(); $vars = $injector->getInstance('Horde_Variables'); // Check for HTTP auth. if (empty($_SERVER['PHP_AUTH_USER']) || empty($_SERVER['PHP_AUTH_PW']) || !$auth->authenticate($_SERVER['PHP_AUTH_USER'], array('password' => $_SERVER['PHP_AUTH_PW']))) { header('WWW-Authenticate: Basic realm="' . $auth->getParam('realm') . '"'); header('HTTP/1.0 401 Unauthorized'); exit('Forbidden'); } $url = ($url = Horde::verifySignedUrl($vars->url)) ? new Horde_Url($url) : Horde::url('login.php'); $url->redirect();
Simpan