Shield Security for WordPress - Version 7.0.1

Version Description

  • Current Release = Released: 28th January, 2018 - Release Notes
Download this release

Release Info

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

Code changes from version 7.0.0 to 7.0.1

icwp-wpsf.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Shield Security
4
  * Plugin URI: https://icwp.io/2f
5
  * Description: Powerful, Easy-To-Use #1 Rated WordPress Security System
6
- * Version: 7.0.0
7
  * Text Domain: wp-simple-firewall
8
  * Domain Path: /languages/
9
  * Author: One Dollar Plugin
3
  * Plugin Name: Shield Security
4
  * Plugin URI: https://icwp.io/2f
5
  * Description: Powerful, Easy-To-Use #1 Rated WordPress Security System
6
+ * Version: 7.0.1
7
  * Text Domain: wp-simple-firewall
8
  * Domain Path: /languages/
9
  * Author: One Dollar Plugin
plugin-spec.php CHANGED
@@ -1,7 +1,7 @@
1
  {
2
  "properties": {
3
- "version": "7.0.0",
4
- "release_timestamp": 1548664000,
5
  "slug_parent": "icwp",
6
  "slug_plugin": "wpsf",
7
  "human_name": "Shield",
1
  {
2
  "properties": {
3
+ "version": "7.0.1",
4
+ "release_timestamp": 1548682000,
5
  "slug_parent": "icwp",
6
  "slug_plugin": "wpsf",
7
  "human_name": "Shield",
readme.txt CHANGED
@@ -8,7 +8,7 @@ Requires at least: 3.5.0
8
  Requires PHP: 5.4.0
9
  Recommended PHP: 7.0
10
  Tested up to: 5.1
11
- Stable tag: 7.0.0
12
 
13
  Complete All-In-One Protection for your WordPress sites, that makes Security Easy for Everyone - it doesn't have to be hard anymore.
14
 
@@ -352,7 +352,7 @@ You will always be able to use Shield Security and its free features in-full.
352
 
353
  [Go Pro for just $1/month](https://icwp.io/aa).
354
 
355
- = 7.0.0 - Current Release =
356
  *Released: 28th January, 2018* - [Release Notes](https://icwp.io/ef)
357
 
358
  = 7.0 - Series =
@@ -362,6 +362,6 @@ You will always be able to use Shield Security and its free features in-full.
362
  * **(v.0)** NEW: Supports only PHP 5.4 or higher
363
  * **(v.0)** NEW: Rebuilt scans architecture and UI
364
  * **(v.0)** NEW: A huge amount of code cleaning and refactoring
365
- * **(v.0)** CHANGED: Too many changes and bug fixes to list -best to just take a look! :)
366
 
367
  #### [Full Changelog](https://ps.w.org/wp-simple-firewall/trunk/changelog.html)
8
  Requires PHP: 5.4.0
9
  Recommended PHP: 7.0
10
  Tested up to: 5.1
11
+ Stable tag: 7.0.1
12
 
13
  Complete All-In-One Protection for your WordPress sites, that makes Security Easy for Everyone - it doesn't have to be hard anymore.
14
 
352
 
353
  [Go Pro for just $1/month](https://icwp.io/aa).
354
 
355
+ = 7.0.1 - Current Release =
356
  *Released: 28th January, 2018* - [Release Notes](https://icwp.io/ef)
357
 
358
  = 7.0 - Series =
362
  * **(v.0)** NEW: Supports only PHP 5.4 or higher
363
  * **(v.0)** NEW: Rebuilt scans architecture and UI
364
  * **(v.0)** NEW: A huge amount of code cleaning and refactoring
365
+ * **(v.0)** CHANGED: Too many many changes and bug fixes to list -best to just take a look! :)
366
 
367
  #### [Full Changelog](https://ps.w.org/wp-simple-firewall/trunk/changelog.html)
src/query/VOs/ICWP_WPSF_BaseEntryVO.php CHANGED
@@ -1,5 +1,7 @@
1
  <?php
2
 
 
 
3
  /**
4
  * @deprecated v7.0.0
5
  * Class ICWP_WPSF_BaseEntryVO
1
  <?php
2
 
3
+ require_once( dirname( dirname( __DIR__ ) ).'/lib/vendor/autoload.php' );
4
+
5
  /**
6
  * @deprecated v7.0.0
7
  * Class ICWP_WPSF_BaseEntryVO
src/query/VOs/ICWP_WPSF_IpsEntryVO.php CHANGED
@@ -1,5 +1,7 @@
1
  <?php
2
 
 
 
3
  /**
4
  * @deprecated v7.0.0
5
  * Class ICWP_WPSF_IpsEntryVO
1
  <?php
2
 
3
+ require_once( dirname( dirname( __DIR__ ) ).'/lib/vendor/autoload.php' );
4
+
5
  /**
6
  * @deprecated v7.0.0
7
  * Class ICWP_WPSF_IpsEntryVO
src/query/audittrail/delete.php CHANGED
@@ -1,5 +1,7 @@
1
  <?php
2
 
 
 
3
  class ICWP_WPSF_Query_AuditTrail_Delete extends ICWP_WPSF_Query_BaseDelete {
4
 
5
  /**
1
  <?php
2
 
3
+ require_once( dirname( dirname( __DIR__ ) ).'/lib/vendor/autoload.php' );
4
+
5
  class ICWP_WPSF_Query_AuditTrail_Delete extends ICWP_WPSF_Query_BaseDelete {
6
 
7
  /**
src/query/audittrail/insert.php CHANGED
@@ -1,4 +1,6 @@
1
  <?php
2
 
 
 
3
  class ICWP_WPSF_Query_AuditTrail_Insert extends ICWP_WPSF_Query_BaseInsert {
4
  }
1
  <?php
2
 
3
+ require_once( dirname( dirname( __DIR__ ) ).'/lib/vendor/autoload.php' );
4
+
5
  class ICWP_WPSF_Query_AuditTrail_Insert extends ICWP_WPSF_Query_BaseInsert {
6
  }
src/query/audittrail/select.php CHANGED
@@ -1,5 +1,7 @@
1
  <?php
2
 
 
 
3
  class ICWP_WPSF_Query_AuditTrail_Select extends ICWP_WPSF_Query_BaseSelect {
4
 
5
  /**
1
  <?php
2
 
3
+ require_once( dirname( dirname( __DIR__ ) ).'/lib/vendor/autoload.php' );
4
+
5
  class ICWP_WPSF_Query_AuditTrail_Select extends ICWP_WPSF_Query_BaseSelect {
6
 
7
  /**
src/query/base/base.php CHANGED
@@ -1,5 +1,7 @@
1
  <?php
2
 
 
 
3
  class ICWP_WPSF_Query_Base extends ICWP_WPSF_Foundation {
4
 
5
  /**
1
  <?php
2
 
3
+ require_once( dirname( dirname( __DIR__ ) ).'/lib/vendor/autoload.php' );
4
+
5
  class ICWP_WPSF_Query_Base extends ICWP_WPSF_Foundation {
6
 
7
  /**
src/query/base/delete.php CHANGED
@@ -1,5 +1,7 @@
1
  <?php
2
 
 
 
3
  abstract class ICWP_WPSF_Query_BaseDelete extends ICWP_WPSF_Query_BaseQuery {
4
 
5
  /**
1
  <?php
2
 
3
+ require_once( dirname( dirname( __DIR__ ) ).'/lib/vendor/autoload.php' );
4
+
5
  abstract class ICWP_WPSF_Query_BaseDelete extends ICWP_WPSF_Query_BaseQuery {
6
 
7
  /**
src/query/base/insert.php CHANGED
@@ -1,5 +1,7 @@
1
  <?php
2
 
 
 
3
  class ICWP_WPSF_Query_BaseInsert extends ICWP_WPSF_Query_BaseQuery {
4
 
5
  /**
1
  <?php
2
 
3
+ require_once( dirname( dirname( __DIR__ ) ).'/lib/vendor/autoload.php' );
4
+
5
  class ICWP_WPSF_Query_BaseInsert extends ICWP_WPSF_Query_BaseQuery {
6
 
7
  /**
src/query/base/query.php CHANGED
@@ -1,5 +1,7 @@
1
  <?php
2
 
 
 
3
  /**
4
  * @deprecated v7.0.0
5
  * Class ICWP_WPSF_Query_BaseQuery
1
  <?php
2
 
3
+ require_once( dirname( dirname( __DIR__ ) ).'/lib/vendor/autoload.php' );
4
+
5
  /**
6
  * @deprecated v7.0.0
7
  * Class ICWP_WPSF_Query_BaseQuery
src/query/base/select.php CHANGED
@@ -1,5 +1,7 @@
1
  <?php
2
 
 
 
3
  /**
4
  * @deprecated v7.0.0
5
  * Class ICWP_WPSF_Query_BaseSelect
1
  <?php
2
 
3
+ require_once( dirname( dirname( __DIR__ ) ).'/lib/vendor/autoload.php' );
4
+
5
  /**
6
  * @deprecated v7.0.0
7
  * Class ICWP_WPSF_Query_BaseSelect
src/query/base/statistics_base.php CHANGED
@@ -1,5 +1,7 @@
1
  <?php
2
 
 
 
3
  class ICWP_WPSF_Query_Statistics_Base extends ICWP_WPSF_Query_Base {
4
 
5
  /**
1
  <?php
2
 
3
+ require_once( dirname( dirname( __DIR__ ) ).'/lib/vendor/autoload.php' );
4
+
5
  class ICWP_WPSF_Query_Statistics_Base extends ICWP_WPSF_Query_Base {
6
 
7
  /**
src/query/base/update.php CHANGED
@@ -1,5 +1,7 @@
1
  <?php
2
 
 
 
3
  class ICWP_WPSF_Query_BaseUpdate extends ICWP_WPSF_Query_BaseInsert {
4
 
5
  /**
1
  <?php
2
 
3
+ require_once( dirname( dirname( __DIR__ ) ).'/lib/vendor/autoload.php' );
4
+
5
  class ICWP_WPSF_Query_BaseUpdate extends ICWP_WPSF_Query_BaseInsert {
6
 
7
  /**
src/query/ips/select.php CHANGED
@@ -1,5 +1,7 @@
1
  <?php
2
 
 
 
3
  /**
4
  * @deprecated v7.0.0
5
  * Class ICWP_WPSF_Query_Ips_Select
1
  <?php
2
 
3
+ require_once( dirname( dirname( __DIR__ ) ).'/lib/vendor/autoload.php' );
4
+
5
  /**
6
  * @deprecated v7.0.0
7
  * Class ICWP_WPSF_Query_Ips_Select
src/query/sessions/delete.php CHANGED
@@ -1,5 +1,7 @@
1
  <?php
2
 
 
 
3
  class ICWP_WPSF_Query_Sessions_Delete extends ICWP_WPSF_Query_BaseDelete {
4
 
5
  /**
1
  <?php
2
 
3
+ require_once( dirname( dirname( __DIR__ ) ).'/lib/vendor/autoload.php' );
4
+
5
  class ICWP_WPSF_Query_Sessions_Delete extends ICWP_WPSF_Query_BaseDelete {
6
 
7
  /**
src/query/sessions/insert.php CHANGED
@@ -1,5 +1,7 @@
1
  <?php
2
 
 
 
3
  class ICWP_WPSF_Query_Sessions_Insert extends ICWP_WPSF_Query_BaseInsert {
4
 
5
  /**
1
  <?php
2
 
3
+ require_once( dirname( dirname( __DIR__ ) ).'/lib/vendor/autoload.php' );
4
+
5
  class ICWP_WPSF_Query_Sessions_Insert extends ICWP_WPSF_Query_BaseInsert {
6
 
7
  /**
src/query/sessions/select.php CHANGED
@@ -1,5 +1,7 @@
1
  <?php
2
 
 
 
3
  class ICWP_WPSF_Query_Sessions_Select extends ICWP_WPSF_Query_BaseSelect {
4
 
5
  /**
1
  <?php
2
 
3
+ require_once( dirname( dirname( __DIR__ ) ).'/lib/vendor/autoload.php' );
4
+
5
  class ICWP_WPSF_Query_Sessions_Select extends ICWP_WPSF_Query_BaseSelect {
6
 
7
  /**
src/query/sessions/update.php CHANGED
@@ -1,5 +1,7 @@
1
  <?php
2
 
 
 
3
  class ICWP_WPSF_Query_Sessions_Update extends ICWP_WPSF_Query_BaseUpdate {
4
 
5
  /**
@@ -34,8 +36,8 @@ class ICWP_WPSF_Query_Sessions_Update extends ICWP_WPSF_Query_BaseUpdate {
34
  }
35
 
36
  /**
37
- * @param $oSession
38
- * @param int $nExpiresAt
39
  * @return bool
40
  */
41
  public function updateLoginIntentExpiresAt( $oSession, $nExpiresAt ) {
@@ -54,8 +56,8 @@ class ICWP_WPSF_Query_Sessions_Update extends ICWP_WPSF_Query_BaseUpdate {
54
  }
55
 
56
  /**
57
- * @param $oSession
58
- * @param string $sCode
59
  * @return bool
60
  */
61
  public function setLoginIntentCodeEmail( $oSession, $sCode ) {
1
  <?php
2
 
3
+ require_once( dirname( dirname( __DIR__ ) ).'/lib/vendor/autoload.php' );
4
+
5
  class ICWP_WPSF_Query_Sessions_Update extends ICWP_WPSF_Query_BaseUpdate {
6
 
7
  /**
36
  }
37
 
38
  /**
39
+ * @param $oSession
40
+ * @param int $nExpiresAt
41
  * @return bool
42
  */
43
  public function updateLoginIntentExpiresAt( $oSession, $nExpiresAt ) {
56
  }
57
 
58
  /**
59
+ * @param $oSession
60
+ * @param string $sCode
61
  * @return bool
62
  */
63
  public function setLoginIntentCodeEmail( $oSession, $sCode ) {
src/query/traffic/common.php CHANGED
@@ -1,5 +1,7 @@
1
  <?php
2
 
 
 
3
  trait ICWP_WPSF_Query_TrafficEntry_Common {
4
 
5
  /**
1
  <?php
2
 
3
+ require_once( dirname( dirname( __DIR__ ) ).'/lib/vendor/autoload.php' );
4
+
5
  trait ICWP_WPSF_Query_TrafficEntry_Common {
6
 
7
  /**
src/query/traffic/delete.php CHANGED
@@ -1,5 +1,7 @@
1
  <?php
2
 
 
 
3
  class ICWP_WPSF_Query_TrafficEntry_Delete extends ICWP_WPSF_Query_BaseDelete {
4
 
5
  use ICWP_WPSF_Query_TrafficEntry_Common;
1
  <?php
2
 
3
+ require_once( dirname( dirname( __DIR__ ) ).'/lib/vendor/autoload.php' );
4
+
5
  class ICWP_WPSF_Query_TrafficEntry_Delete extends ICWP_WPSF_Query_BaseDelete {
6
 
7
  use ICWP_WPSF_Query_TrafficEntry_Common;
src/query/traffic/insert.php CHANGED
@@ -1,4 +1,6 @@
1
  <?php
2
 
 
 
3
  class ICWP_WPSF_Query_TrafficEntry_Insert extends ICWP_WPSF_Query_BaseInsert {
4
  }
1
  <?php
2
 
3
+ require_once( dirname( dirname( __DIR__ ) ).'/lib/vendor/autoload.php' );
4
+
5
  class ICWP_WPSF_Query_TrafficEntry_Insert extends ICWP_WPSF_Query_BaseInsert {
6
  }
src/query/traffic/select.php CHANGED
@@ -1,5 +1,7 @@
1
  <?php
2
 
 
 
3
  class ICWP_WPSF_Query_TrafficEntry_Select extends ICWP_WPSF_Query_BaseSelect {
4
 
5
  use ICWP_WPSF_Query_TrafficEntry_Common;
1
  <?php
2
 
3
+ require_once( dirname( dirname( __DIR__ ) ).'/lib/vendor/autoload.php' );
4
+
5
  class ICWP_WPSF_Query_TrafficEntry_Select extends ICWP_WPSF_Query_BaseSelect {
6
 
7
  use ICWP_WPSF_Query_TrafficEntry_Common;