Plugin Directory

Changeset 2898225

Timestamp:
04/13/2023 06:47:21 AM (16 months ago)
Author:
nsp-code
Message:

Version: 2.0.6

Location:
wp-hide-security-enhancer
Files:
198 added
4 edited

Legend:

Unmodified
Added
Removed
  • wp-hide-security-enhancer/trunk/include/admin-interfaces/security-scan/scan_item_hide_replacements.php

    r2826054 r2898225  
    5050                    $fingerprints   =   array (
    5151                                                'Common WordPress fingerprints' =>  array (
    52                                                                                             'search'        =>  array ( 'wp-', '-wp' ),
     52                                                                                            'search'        =>  array ( '' ),
    5353                                                                                            'replacements'  =>  array(  'wp-'    )
    5454                                                                                    ),
    5555                                                'Astra'                             =>  array (
    56                                                                                             'search'        =>  array ('astra-', '-astra'),
     56                                                                                            'search'        =>  array (''),
    5757                                                                                            'replacements'  =>  array(  'astra'    )
    5858                                                                                    ),
    5959                                                'Avada'                             =>  array (
    60                                                                                             'search'        =>  array ( 'avada-', '-avada'),
     60                                                                                            'search'        =>  array ( ''),
    6161                                                                                            'replacements'  =>  array(  'avada'    )
    6262                                                                                    ),               
    6363                                                'Divi'                              =>  array (
    64                                                                                             'search'        =>  array ( 'divi-', '-divi'),
     64                                                                                            'search'        =>  array ( ''),
    6565                                                                                            'replacements'  =>  array(  'divi'    )
    6666                                                                                    ),
    6767                                                'Elementor'                         =>  array (
    68                                                                                             'search'        =>  array ( 'elementor-', '-elementor'),
     68                                                                                            'search'        =>  array ( ''),
    6969                                                                                            'replacements'  =>  array(  'elementor'    )
    7070                                                                                    ),
    7171                                                'Fusion Builder'                    =>  array (
    72                                                                                             'search'        =>  array ( 'fusion-', '-fusion'),
     72                                                                                            'search'        =>  array ( ''),
    7373                                                                                            'replacements'  =>  array(  'fusion'    )
    7474                                                                                    ),
    7575                                                'Flatsome'                          =>  array (
    76                                                                                             'search'        =>  array ( 'flatsome-'),
     76                                                                                            'search'        =>  array ( 'flatsome-'),
    7777                                                                                            'replacements'  =>  array(  'flatsome'    )
    7878                                                                                    ),
    7979                                                'Porto'                             =>  array (
    80                                                                                             'search'        =>  array ( 'porto-', '-porto'),
     80                                                                                            'search'        =>  array ( ''),
    8181                                                                                            'replacements'  =>  array(  'porto'    )
    8282                                                                                    ),
    8383                                                'Themify'                           =>  array (
    84                                                                                             'search'        =>  array ( 'themify-', '-themify'),
     84                                                                                            'search'        =>  array ( ''),
    8585                                                                                            'replacements'  =>  array(  'themify'    )
    8686                                                                                    ),
    8787                                                'Uncode'                           =>  array (
    88                                                                                             'search'        =>  array ( 'uncode-', '-uncode'),
     88                                                                                            'search'        =>  array ( ''),
    8989                                                                                            'replacements'  =>  array(  'uncode'    )
    9090                                                                                    ),   
    9191                                                'Yoast SEO'                         =>  array (
    92                                                                                             'search'        =>  array ( 'yoast-'),
     92                                                                                            'search'        =>  array ( 'yoast-'),
    9393                                                                                            'replacements'  =>  array(  'yoast'    )
    9494                                                                                    ),
    9595                                                'WoodMart'                          =>  array (
    96                                                                                             'search'        =>  array ( 'woodmart-', '-woodmart'),
     96                                                                                            'search'        =>  array ( ''),
    9797                                                                                            'replacements'  =>  array(  'woodmart'    )
    9898                                                                                    ),
    9999                                                'WooCommerce'                       =>  array (
    100                                                                                             'search'        =>  array ( 'woocommerce-', '-woocommerce', 'wc_'),
     100                                                                                            'search'        =>  array ( 'wc_'),
    101101                                                                                            'replacements'  =>  array(  'woocommerce'    )
    102102                                                                                    ),
    103103                                                'WP Bakery'                       =>  array (
    104                                                                                             'search'        =>  array ( 'js-composer', 'vc_', 'wpb_'),
     104                                                                                            'search'        =>  array ( 'js-composer', 'wpb_'),
    105105                                                                                            'replacements'  =>  array(  'js-composer', 'vc_'    )
    106106                                                                                    ),
     
    113113                                    foreach ( $fingerprints_group['search']   as  $fingerprints_item )
    114114                                        {
    115                                             if ( stripos( $this->wph->security_scan->remote_html, $fingerprints_item ) )
     115                                            if ( ) )
    116116                                                {
    117117                                                    $found_issue    =   TRUE;
  • wp-hide-security-enhancer/trunk/modules/components/security-check_headers.php

    r2862089 r2898225  
    8585                                                                                'title'         =>  'Content-Security-Policy-Report-Only',
    8686                                                                                'description'   =>  __('Allows web developers to experiment with policies by monitoring, but not enforcing, their effects. These violation reports consist of JSON documents sent via an HTTP POST request to the specified URI.',    'wp-hide-security-enhancer'),
    87                                                                                 'link'          =>  'https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers#security',
    88                                                                                 'availability'  =>  'pro'
    89                                                                                 );
    90                     $this->headers['expect-ct']    =   array (
    91                                                                                 'title'         =>  'Expect-CT',
    92                                                                                 'description'   =>  __('Allows sites to opt in to reporting and/or enforcement of Certificate Transparency requirements, which prevents the use of misissued certificates for that site from going unnoticed. When a site enables the Expect-CT header, they are requesting that Chrome check that any certificate for that site appears in public CT logs.',    'wp-hide-security-enhancer'),
    9387                                                                                'link'          =>  'https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers#security',
    9488                                                                                'availability'  =>  'pro'
  • wp-hide-security-enhancer/trunk/readme.txt

    r2880669 r2898225  
    55Requires at least: 2.8
    66Tested up to: 6.2
    7 Stable tag: 2.0.4
     7Stable tag: 2.0.
    88License: GPLv2 or later
    99
     
    395395== Changelog ==
    396396
     397
     398
     399
     400
     401
    397402= 2.0.4 =
    398403* Suppress the option to block the Developer Tools / Inspect when page/post preview. 
    399404* Add to cache clear for Autoptimize, Perfmatters, Breeze, Site Ground Cache,  when flushing the caches.
    400405* Site Ground Cachepress plugin compatibility update
    401 * WooCommerce compatibility check for 6.2
    402 * WooCommerce compatibility tag update.
     406* Wo compatibility check for 6.2
     407* Wo compatibility tag update.
    403408
    404409= 1.9.9 =
  • wp-hide-security-enhancer/trunk/wp-hide.php

    r2880669 r2898225  
    66Author: Nsp Code
    77Author URI: http://www.nsp-code.com
    8 Version: 2.0.4
     8Version: 2.0.
    99Text Domain: wp-hide-security-enhancer
    1010Domain Path: /languages/
Note: See TracChangeset for help on using the changeset viewer.