Shield Security for WordPress - Version 14.1.7

Version Description

Download this release

Release Info

Developer paultgoodchild
Plugin Icon 128x128 Shield Security for WordPress
Version 14.1.7
Comparing to
See all releases

Code changes from version 14.1.6 to 14.1.7

cl.json CHANGED
@@ -176,6 +176,16 @@
176
  "type": "improve"
177
  }
178
  ]
 
 
 
 
 
 
 
 
 
 
179
  }
180
  ]
181
  },
176
  "type": "improve"
177
  }
178
  ]
179
+ },
180
+ {
181
+ "version": "7",
182
+ "released_at": 1648194288,
183
+ "items": [
184
+ {
185
+ "title": "Fix for an error during certain Firewall scanning.",
186
+ "type": "fixed"
187
+ }
188
+ ]
189
  }
190
  ]
191
  },
icwp-wpsf.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Shield Security
4
  * Plugin URI: https://shsec.io/2f
5
  * Description: Powerful, Easy-To-Use #1 Rated WordPress Security System
6
- * Version: 14.1.6
7
  * Text Domain: wp-simple-firewall
8
  * Domain Path: /languages
9
  * Author: Shield Security
3
  * Plugin Name: Shield Security
4
  * Plugin URI: https://shsec.io/2f
5
  * Description: Powerful, Easy-To-Use #1 Rated WordPress Security System
6
+ * Version: 14.1.7
7
  * Text Domain: wp-simple-firewall
8
  * Domain Path: /languages
9
  * Author: Shield Security
plugin-spec.php CHANGED
@@ -1,8 +1,8 @@
1
  {
2
  "properties": {
3
- "version": "14.1.6",
4
- "release_timestamp": 1648122640,
5
- "build": "202203.2401",
6
  "slug_parent": "icwp",
7
  "slug_plugin": "wpsf",
8
  "human_name": "Shield Security",
1
  {
2
  "properties": {
3
+ "version": "14.1.7",
4
+ "release_timestamp": 1648194288,
5
+ "build": "202203.2501",
6
  "slug_parent": "icwp",
7
  "slug_plugin": "wpsf",
8
  "human_name": "Shield Security",
plugin.json CHANGED
@@ -1,8 +1,8 @@
1
  {
2
  "properties": {
3
- "version": "14.1.6",
4
- "release_timestamp": 1648122640,
5
- "build": "202203.2401",
6
  "slug_parent": "icwp",
7
  "slug_plugin": "wpsf",
8
  "human_name": "Shield Security",
1
  {
2
  "properties": {
3
+ "version": "14.1.7",
4
+ "release_timestamp": 1648194288,
5
+ "build": "202203.2501",
6
  "slug_parent": "icwp",
7
  "slug_plugin": "wpsf",
8
  "human_name": "Shield Security",
readme.txt CHANGED
@@ -8,7 +8,7 @@ Requires at least: 3.7
8
  Requires PHP: 7.0
9
  Recommended PHP: 7.4
10
  Tested up to: 5.9
11
- Stable tag: 14.1.6
12
 
13
  No-Nonsense Security Hardening that protects WordPress against hackers, malicious bots, and spammers (no captchas!). Now with exclusive ShieldNET Technology.
14
 
8
  Requires PHP: 7.0
9
  Recommended PHP: 7.4
10
  Tested up to: 5.9
11
+ Stable tag: 14.1.7
12
 
13
  No-Nonsense Security Hardening that protects WordPress against hackers, malicious bots, and spammers (no captchas!). Now with exclusive ShieldNET Technology.
14
 
src/lib/src/Modules/Firewall/Lib/Scan/Handlers/Base.php CHANGED
@@ -53,7 +53,7 @@ abstract class Base {
53
  $found = new \WP_Error();
54
  foreach ( $this->getFirewallPatterns_Regex() as $term ) {
55
  foreach ( $this->getItemsToScan() as $param => $value ) {
56
- if ( preg_match( $term, $value ) ) {
57
  $found = new \WP_Error( 'shield-firewall', '', [
58
  'name' => $this->getScanName(),
59
  'term' => $term,
53
  $found = new \WP_Error();
54
  foreach ( $this->getFirewallPatterns_Regex() as $term ) {
55
  foreach ( $this->getItemsToScan() as $param => $value ) {
56
+ if ( is_string( $value ) && preg_match( $term, $value ) ) {
57
  $found = new \WP_Error( 'shield-firewall', '', [
58
  'name' => $this->getScanName(),
59
  'term' => $term,