Plugin Directory

Changeset 2379777


Ignore:
Timestamp:
09/11/2020 08:38:14 PM (6 years ago)
Author:
sovstack
Message:

Version 2.3.2

Location:
security-safe/trunk
Files:
1 deleted
6 edited

Legend:

Unmodified
Added
Removed
  • security-safe/trunk/README.txt

    r2293551 r2379777  
    11=== WP Security Safe ===
    2 Contributors: sovstack, stevenayers63
     2Contributors: sovstack, stevenayers63, freemius
    33Tags: wp security, security audit, disable XMLRPC, limit-login, logs
    44Requires at least: 3.5
    55Requires PHP: 5.6
    6 Tested up to: 5.4
     6Tested up to: 5.5.1
    77Stable tag: trunk
    88
     
    4343* Turn On/Off All Security Policies Easily
    4444
     45> Note: [Upgrade to WP Security Safe Pro](https://checkout.freemius.com/mode/dialog/plugin/2439/plan/3762/) to unlock advanced Pro features.
     46
     47### WP Security Plugins Are Complicated
     48
    4549Every WordPress security plugin becomes more complicated and bloated as more features are added. As a plugin's code grows, it consumes more time to load, thus slowing down your website. WP Security Safe's purpose is to protect your website from the majority of threats with minimal impact on website load time. We constantly test our load performance to ensure our features to ensure it continues to run fast and lean.
    46 
    47 > Note: [Upgrade to WP Security Safe Pro](https://checkout.freemius.com/mode/dialog/plugin/2439/plan/3762/) to unlock advanced Pro features.
    48 
    49 Twitter: [Follow WP Security Safe](https://twitter.com/wpSecuritySafe/)
    50 Website: [WP Security Safe](https://wpsecuritysafe.com)
    5150
    5251### LANGUAGE SUPPORT
     
    65642. Login Attempts
    66653. Firewall Blocks
     66
     67### Follow Us:
     68
     69Twitter: [Follow WP Security Safe](https://twitter.com/wpSecuritySafe/)
     70Website: [WP Security Safe](https://wpsecuritysafe.com)
    6771
    6872== Installation ==
     
    7781== Changelog ==
    7882
     83= 2.3.2 (Medium Priority) =
     84*Release Date - 11 September 2020*
     85
     86* Improvement: Removed feature Local Login as it was triggering false potives due to browser caching issues.
     87* Improvement: Updated PHP version checks
     88* Tested up to: 5.5.1
     89
    7990= 2.3.1 (High Priority) =
    8091*Release Date - 05 January 2020*
    8192
    82 * Bug Fix: version privacy for JS files conflicted with Google Recaptcha. Thank you [Lynn Appleget](https://applegetassoc.com/) for reporting this bug.
     93* Bug Fix: version privacy for JS files conflicted with Google Recaptcha
    8394* Bug Fix: Plugin updates were not getting logged properly after an update.
    8495* Bug Fix: Plugin would not initialize in a multi-site network.
  • security-safe/trunk/core/Plugin.php

    r2222374 r2379777  
    553553                        'login_password_reset' => '0',
    554554                        'login_remember_me' => '0',
    555                         'login_local' => '1',
    556555                    ];
    557556
  • security-safe/trunk/core/admin/pages/AdminPageAccess.php

    r2151622 r2379777  
    132132        );
    133133
    134         $rows = $this->form_checkbox(
    135             $this->settings,
    136             __( 'Local Logins', SECSAFE_SLUG ),
    137             'login_local',
    138             __( 'Only Allow Local Logins', SECSAFE_SLUG ),
    139             __( 'Software can remotely log in without actually visiting your website or using the login form. Unless you know that you need to be able to remotely login, it is recommended to only allow local logins. This does not disable XML-RPC. This is compatible with ManageWP.', SECSAFE_SLUG )
    140         );
    141 
    142134        $rows .= $this->form_checkbox(
    143135            $this->settings,
  • security-safe/trunk/core/includes/Yoda.php

    r2222374 r2379777  
    178178        // https://secure.php.net/ChangeLog-7.php
    179179        return [
    180             '7.4.0' => '7.4.0',
    181             '7.3.0' => '7.3.12',
    182             '7.2.0' => '7.2.25',
     180            '7.4.0' => '7.4.10',
     181            '7.3.0' => '7.3.22',
     182            '7.2.0' => '7.2.33',
    183183            'min'   => '7.2.0',
    184184        ];
  • security-safe/trunk/core/security/Security.php

    r2191724 r2379777  
    9797           
    9898            if ( !$this->logged_in ) {
    99                 // Force Local Login
    100                 $this->add_firewall_policy( $settings, 'PolicyLoginLocal', 'login_local' );
    10199                // Generic Login Errors
    102100                $this->add_policy( $settings, 'PolicyLoginErrors', 'login_errors' );
  • security-safe/trunk/security-safe.php

    r2222374 r2379777  
    1717require_once SECSAFE_DIR_INCLUDES . '/Yoda.php';
    1818Yoda::set_constants();
    19 define( 'SECSAFE_VERSION', '2.3.1' );
     19define( 'SECSAFE_VERSION', '2.3.2' );
    2020define( 'SECSAFE_DESC', __( 'Firewall, Security Hardening, Auditing & Privacy', SECSAFE_SLUG ) );
    2121/**
     
    2828 * @wordpress-plugin
    2929 * Plugin Name: WP Security Safe
    30  * Version:     2.3.1
     30 * Version:     2.3.2
    3131 * Plugin URI: https://sovstack.com/security-safe
    3232 * Description: Firewall, Security Hardening, Auditing & Privacy
Note: See TracChangeset for help on using the changeset viewer.