Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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 /
www /
html /
urlab /
wp-content /
themes /
neve /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxrwxrwx
docs
[ DIR ]
drwxrwxrwx
globals
[ DIR ]
drwxrwxrwx
header-footer-grid
[ DIR ]
drwxrwxrwx
inc
[ DIR ]
drwxrwxrwx
languages
[ DIR ]
drwxrwxrwx
page-templates
[ DIR ]
drwxrwxrwx
template-parts
[ DIR ]
drwxrwxrwx
vendor
[ DIR ]
drwxrwxrwx
views
[ DIR ]
drwxrwxrwx
woocommerce
[ DIR ]
drwxrwxrwx
404.php
108
B
-rwxrwxrwx
500.php
178
B
-rwxrwxrwx
CHANGELOG.md
61.91
KB
-rwxrwxrwx
LICENSE.txt
17.67
KB
-rwxrwxrwx
archive-download.php
1.06
KB
-rwxrwxrwx
autoloader.php
4.05
KB
-rwxrwxrwx
comments.php
295
B
-rwxrwxrwx
footer-pwa.php
147
B
-rwxrwxrwx
footer.php
1.21
KB
-rwxrwxrwx
functions.php
5.04
KB
-rwxrwxrwx
header-pwa.php
680
B
-rwxrwxrwx
header.php
2.63
KB
-rwxrwxrwx
index.php
4.09
KB
-rwxrwxrwx
offline.php
178
B
-rwxrwxrwx
page.php
1.59
KB
-rwxrwxrwx
postcss.config.js
58
B
-rwxrwxrwx
readme.md
45.22
KB
-rwxrwxrwx
readme.txt
45.14
KB
-rwxrwxrwx
screenshot-mobile.png
17.77
KB
-rwxrwxrwx
screenshot.png
610.36
KB
-rwxrwxrwx
search.php
1.18
KB
-rwxrwxrwx
searchform.php
1.97
KB
-rwxrwxrwx
sidebar-shop.php
325
B
-rwxrwxrwx
sidebar.php
306
B
-rwxrwxrwx
single-download.php
1.21
KB
-rwxrwxrwx
single.php
1.17
KB
-rwxrwxrwx
start.php
2.51
KB
-rwxrwxrwx
style-main-new-rtl.css
45.92
KB
-rwxrwxrwx
style-main-new-rtl.min.css
38.82
KB
-rwxrwxrwx
style-main-new.css
45.95
KB
-rwxrwxrwx
style-main-new.min.css
38.81
KB
-rwxrwxrwx
style.css
1.52
KB
-rwxrwxrwx
taxonomy-download_category.php
1.07
KB
-rwxrwxrwx
taxonomy-download_tag.php
1.07
KB
-rwxrwxrwx
toolset-config.json
4.33
KB
-rwxrwxrwx
wpml-config.xml
1.08
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : single-download.php
<?php /** * Author: Uriahs Victor * Created on: 05/08/2021 (d/m/y) * * @package Neve */ $container_class = apply_filters( 'neve_container_class_filter', 'container', 'single-download' ); get_header(); ?> <div id="nv-single-download-container" class="<?php echo esc_attr( $container_class ); ?>"> <div class="row"> <?php do_action( 'neve_do_sidebar', 'single-post', 'left' ); ?> <article id="download-<?php echo esc_attr( get_the_ID() ); ?>" class="<?php echo esc_attr( join( ' ', get_post_class( 'nv-single-download-wrap col' ) ) ); ?>"> <?php /** * Executes actions before the download content. * * @since 3.0.0 */ do_action( 'neve_before_download_content' ); if ( have_posts() ) { while ( have_posts() ) { the_post(); get_template_part( 'template-parts/content-download', 'single' ); } } else { get_template_part( 'template-parts/content', 'none' ); } /** * Executes actions after the download content. * * @since 3.0.0 */ do_action( 'neve_after_download_content' ); ?> </article> <?php do_action( 'neve_do_sidebar', 'single-post', 'right' ); ?> </div> </div> <?php get_footer();
Close