Changeset 2379777
- Timestamp:
- 09/11/2020 08:38:14 PM (6 years ago)
- Location:
- security-safe/trunk
- Files:
-
- 1 deleted
- 6 edited
-
README.txt (modified) (4 diffs)
-
core/Plugin.php (modified) (1 diff)
-
core/admin/pages/AdminPageAccess.php (modified) (1 diff)
-
core/includes/Yoda.php (modified) (1 diff)
-
core/security/Security.php (modified) (1 diff)
-
core/security/firewall/PolicyLoginLocal.php (deleted)
-
security-safe.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
security-safe/trunk/README.txt
r2293551 r2379777 1 1 === WP Security Safe === 2 Contributors: sovstack, stevenayers63 2 Contributors: sovstack, stevenayers63, freemius 3 3 Tags: wp security, security audit, disable XMLRPC, limit-login, logs 4 4 Requires at least: 3.5 5 5 Requires PHP: 5.6 6 Tested up to: 5. 46 Tested up to: 5.5.1 7 7 Stable tag: trunk 8 8 … … 43 43 * Turn On/Off All Security Policies Easily 44 44 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 45 49 Every 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)51 50 52 51 ### LANGUAGE SUPPORT … … 65 64 2. Login Attempts 66 65 3. Firewall Blocks 66 67 ### Follow Us: 68 69 Twitter: [Follow WP Security Safe](https://twitter.com/wpSecuritySafe/) 70 Website: [WP Security Safe](https://wpsecuritysafe.com) 67 71 68 72 == Installation == … … 77 81 == Changelog == 78 82 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 79 90 = 2.3.1 (High Priority) = 80 91 *Release Date - 05 January 2020* 81 92 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 83 94 * Bug Fix: Plugin updates were not getting logged properly after an update. 84 95 * Bug Fix: Plugin would not initialize in a multi-site network. -
security-safe/trunk/core/Plugin.php
r2222374 r2379777 553 553 'login_password_reset' => '0', 554 554 'login_remember_me' => '0', 555 'login_local' => '1',556 555 ]; 557 556 -
security-safe/trunk/core/admin/pages/AdminPageAccess.php
r2151622 r2379777 132 132 ); 133 133 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 142 134 $rows .= $this->form_checkbox( 143 135 $this->settings, -
security-safe/trunk/core/includes/Yoda.php
r2222374 r2379777 178 178 // https://secure.php.net/ChangeLog-7.php 179 179 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', 183 183 'min' => '7.2.0', 184 184 ]; -
security-safe/trunk/core/security/Security.php
r2191724 r2379777 97 97 98 98 if ( !$this->logged_in ) { 99 // Force Local Login100 $this->add_firewall_policy( $settings, 'PolicyLoginLocal', 'login_local' );101 99 // Generic Login Errors 102 100 $this->add_policy( $settings, 'PolicyLoginErrors', 'login_errors' ); -
security-safe/trunk/security-safe.php
r2222374 r2379777 17 17 require_once SECSAFE_DIR_INCLUDES . '/Yoda.php'; 18 18 Yoda::set_constants(); 19 define( 'SECSAFE_VERSION', '2.3. 1' );19 define( 'SECSAFE_VERSION', '2.3.2' ); 20 20 define( 'SECSAFE_DESC', __( 'Firewall, Security Hardening, Auditing & Privacy', SECSAFE_SLUG ) ); 21 21 /** … … 28 28 * @wordpress-plugin 29 29 * Plugin Name: WP Security Safe 30 * Version: 2.3. 130 * Version: 2.3.2 31 31 * Plugin URI: https://sovstack.com/security-safe 32 32 * Description: Firewall, Security Hardening, Auditing & Privacy
Note: See TracChangeset
for help on using the changeset viewer.