{
        require_once dirname(__FILE__) . '/config-generators.php';
        return ITSEC_System_Tweaks_Config_Generators::filter_litespeed_server_config_modification($modification);
    }
    public function block_long_urls()
    {
        if (strlen($_SERVER['REQUEST_URI']) <= 255) {
            return;
        }
        if (is_admin()) {
            return;
        }
        if (defined('WP_CLI') && WP_CLI) {
            return;
        }
        if (ITSEC_Core::is_iwp_call()) {
            return;
        }
        if (strpos($_SERVER['REQUEST_URI'], 'infinity=scrolling&action=infinite_scroll')) {
            return;
        }
        @header('HTTP/1.1 414 Request-URI Too Long');
        @header('Status: 414 Request-URI Too Long');
        @header('Cache-Control: no-cache, must-revalidate');
        @header('Expires: Thu, 22 Jun 1978 00:28:00 GMT');
        @header('Connection: Close');
        @exit;
    }
}
ITSEC_System_Tweaks::get_instance();