Linux webm006.cluster103.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.103.20.6 | : 216.73.216.183
Cant Read [ /etc/named.conf ]
5.4.45
formahte
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
/
home /
formahte /
www /
wp-content /
themes /
sydney /
[ HOME SHELL ]
Name
Size
Permission
Action
css
[ DIR ]
drwxr-xr-x
fonts
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
inc
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
page-templates
[ DIR ]
drwxr-xr-x
plugins
[ DIR ]
drwxr-xr-x
widgets
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
404.php
761
B
-rw-r--r--
adminer.php
0
B
-rw-r--r--
archive-employees.php
2.2
KB
-rw-r--r--
archive-services.php
1.15
KB
-rw-r--r--
archive.php
1.27
KB
-rw-r--r--
changelog.txt
62
B
-rw-r--r--
class-wp-theme-support.php
3.21
KB
-rw-r--r--
comments.php
2.58
KB
-rw-r--r--
content-index.php
174.94
KB
-rw-r--r--
content-none.php
1.04
KB
-rw-r--r--
content-page.php
702
B
-rw-r--r--
content-search.php
1.15
KB
-rw-r--r--
content-single.php
941
B
-rw-r--r--
content.php
1.28
KB
-rw-r--r--
footer.php
3.76
KB
-rw-r--r--
functions.php
13.59
KB
-rw-r--r--
functionsbak.php
13.1
KB
-rw-r--r--
header.php
2.46
KB
-rw-r--r--
home.php
735
B
-rw-r--r--
index.php
1.19
KB
-rw-r--r--
license.txt
14.69
KB
-rw-r--r--
logo.jpg
174.94
KB
-rw-r--r--
page.php
851
B
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
readme.txt
3.16
KB
-rw-r--r--
screenshot.png
598.77
KB
-rw-r--r--
search.php
1.01
KB
-rw-r--r--
sidebar-footer.php
1.24
KB
-rw-r--r--
sidebar.php
283
B
-rw-r--r--
single.php
918
B
-rw-r--r--
style.css
68.54
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : archive-employees.php
<?php /** * Services archives template * * @package Sydney */ get_header(); ?> <div id="primary" class="content-area"> <main id="main" class="post-wrap roll-team" role="main"> <?php if ( have_posts() ) : ?> <?php while ( have_posts() ) : the_post(); ?> <?php //Get the custom field values $photo = get_post_meta( get_the_ID(), 'wpcf-photo', true ); $position = get_post_meta( get_the_ID(), 'wpcf-position', true ); $facebook = get_post_meta( get_the_ID(), 'wpcf-facebook', true ); $twitter = get_post_meta( get_the_ID(), 'wpcf-twitter', true ); $google = get_post_meta( get_the_ID(), 'wpcf-google-plus', true ); $link = get_post_meta( get_the_ID(), 'wpcf-custom-link', true ); ?> <div class="team-item col-md-4"> <div class="team-inner"> <?php if ( has_post_thumbnail() ) : ?> <div class="avatar"> <?php the_post_thumbnail('employees-image'); ?> </div> <?php endif; ?> </div> <div class="team-content"> <div class="name"> <?php if ($link == '') : ?> <?php the_title(); ?> <?php else : ?> <a href="<?php echo esc_url($link); ?>"><?php the_title(); ?></a> <?php endif; ?> </div> <div class="pos"><?php echo esc_html($position); ?></div> <ul class="team-social"> <?php if ($facebook != '') : ?> <li><a class="facebook" href="<?php echo esc_url($facebook); ?>" target="_blank"><i class="fa fa-facebook"></i></a></li> <?php endif; ?> <?php if ($twitter != '') : ?> <li><a class="twitter" href="<?php echo esc_url($twitter); ?>" target="_blank"><i class="fa fa-twitter"></i></a></li> <?php endif; ?> <?php if ($google != '') : ?> <li><a class="google" href="<?php echo esc_url($google); ?>" target="_blank"><i class="fa fa-google-plus"></i></a></li> <?php endif; ?> </ul> </div> </div><!-- /.team-item --> <?php endwhile; ?> <?php the_posts_navigation(); ?> <?php else : ?> <?php get_template_part( 'content', 'none' ); ?> <?php endif; ?> </main><!-- #main --> </div><!-- #primary --> <?php get_footer(); ?>
Close