Skip to content

Commit

Permalink
Version update + disable login prevention
Browse files Browse the repository at this point in the history
  • Loading branch information
madeITBelgium committed Feb 7, 2018
1 parent ef53f6e commit dc8db9e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
4 changes: 2 additions & 2 deletions inc/WP_MadeIT_Security_DB_Schema.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class WP_MadeIT_Security_DB_Schema
'longMsg' => 'text NULL',
'data' => 'text NULL',
],
'madeit_sec_login_attempts' => [ //Columns
/*'madeit_sec_login_attempts' => [ //Columns
'id' => 'int UNSIGNED NOT NULL auto_increment PRIMARY KEY',
'ipaddress' => 'varchar(50) NULL',
'country' => 'varchar(255) NULL',
Expand Down Expand Up @@ -83,7 +83,7 @@ class WP_MadeIT_Security_DB_Schema
'reason' => 'varchar(64) NULL',
'notify' => 'tinyint UNSIGNED NOT NULL default 0',
'created_at' => 'int UNSIGNED NOT NULL',
],
],*/
/*'madeit_sec_hits' => [ //Columns
'id' => 'int UNSIGNED NOT NULL auto_increment PRIMARY KEY',
'ipaddress' => 'varchar(50) NULL',
Expand Down
6 changes: 3 additions & 3 deletions madeit-security.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ function wp_security_by_madeit_load_plugin_textdomain()
$wp_madeit_security_plugin = new WP_MadeIT_Security_Update($wp_madeit_security_settings, $wp_madeit_security_db);
$wp_madeit_security_plugin->addHooks();

require_once MADEIT_SECURITY_DIR.'/inc/firewall/WP_MadeIT_Security_LimitLogin.php';
$wp_madeit_security_limitLogin = new WP_MadeIT_Security_LimitLogin($wp_madeit_security_settings, $wp_madeit_security_db);
$wp_madeit_security_limitLogin->addHooks();
//require_once MADEIT_SECURITY_DIR.'/inc/firewall/WP_MadeIT_Security_LimitLogin.php';
//$wp_madeit_security_limitLogin = new WP_MadeIT_Security_LimitLogin($wp_madeit_security_settings, $wp_madeit_security_db);
//$wp_madeit_security_limitLogin->addHooks();

$wp_madeit_security_settings->saveConfigs(true);

Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@ This plugin relies on a third party service to functionally work. This plugin au
* Security Alerts
* Vulnerability scanning thanks to wpvulndb.com
* Firewall (Experimental)
* Login prevention (Experimental)


= Comming Features =
* Check for malware and viruses. [1.7]
* Login prevention
* Login prevention [1.7]
* Firewall [1.7]


Expand Down Expand Up @@ -61,6 +62,8 @@ When Plugin, Theme or Core scanning is enabled we first do a quick scan. This qu
* Improved loading files
* Fix bug that files look equal but diff tool show differences
* Add debug info for security jobs
* Fixed bug that many files are flagged as changed
* and more


= 1.6 =
Expand Down

0 comments on commit dc8db9e

Please sign in to comment.