Файловый менеджер - Редактировать - /home/avadvi5/public_html/wp-content/plugins/really-simple-ssl-pro/pro/security/wordpress/firewall/user-agent.php
Ðазад
<?php /** * The User Agent detection file. * This file is responsible for detecting user agents and blocking the IP address if it is in the blocked user agent list. * If the user agent is blocked, the user will be redirected to the 403 page. * This file is a part of the 'Really Simple SSL pro' plugin, which is developed by the company 'Really Simple Plugins'. * * @package RSSSL_PRO\Security\WordPress\Firewall // The categorization of this file. */ if (!isset($userAgentDetectionFile, $ip_fetcher_file, $blocked_user_agents, $white_list, $message_user_agent, $plugin_dir)) { return; } if ((defined("RSSSL_DISABLE_REGION_BLOCK") && RSSSL_DISABLE_REGION_BLOCK) || ( defined('RSSSL_SAFE_MODE') && RSSSL_SAFE_MODE ) || !file_exists($plugin_dir)) { return; } // Skip when running via WP-CLI if ( defined( 'WP_CLI' ) && WP_CLI ) { return; } // Skip when running via server cron (CLI) if ( PHP_SAPI === 'cli' ) { return; } // Skip when running WordPress cron if ( defined( 'DOING_CRON' ) && DOING_CRON ) { return; } use RSSSL\Pro\Security\WordPress\Firewall\Models\Rsssl_User_Agent_Handler; require_once $userAgentDetectionFile; $uaHandler = new Rsssl_User_Agent_Handler(); if (empty($blocked_user_agents)) { return; } require_once $ip_fetcher_file; $ip_fetcher = new RSSSL\Pro\Security\WordPress\Limitlogin\Rsssl_IP_Fetcher(); $ip_address = $ip_fetcher->get_ip_address()[0] ?? false; if ( empty( $ip_address ) ) { return false; } // Check for blocked user agents if ($uaHandler->blocked_named_user_agent($blocked_user_agents)) { if ($ip_fetcher->is_ip_address_in_range( $white_list, $ip_address )) { return false; } $dir = dirname(__DIR__, 3); $message = $message_user_agent; if($uaHandler->is_curl()) { http_response_code(403); exit; } $block_url = "$dir/assets/templates/403-page.php"; http_response_code(403); require_once $block_url; exit; }
| ver. 1.1 | |
.
| PHP 8.3.30 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка