WP Armour – Honeypot Anti Spam - Version 1.5.2

Version Description

  • Removed anti spam filter from admin comment section. Before it was marking the comment as spam when trying to add from admin panel.
Download this release

Release Info

Developer dnesscarkey
Plugin Icon 128x128 WP Armour – Honeypot Anti Spam
Version 1.5.2
Comparing to
See all releases

Code changes from version 1.5.1 to 1.5.2

includes/integration/wpa_wpcomment.php CHANGED
@@ -1,6 +1,8 @@
1
  <?php
2
  // WP Comments
3
- add_filter( 'preprocess_comment', 'wpa_wpcomment_extra_validation' );
 
 
4
 
5
  function wpa_wpcomment_extra_validation( $commentdata ) {
6
  if (!isset($_POST[ $GLOBALS['wpa_field_name']] )){
1
  <?php
2
  // WP Comments
3
+ if( !is_admin() ){ // IF NOT ADMIN
4
+ add_filter( 'preprocess_comment', 'wpa_wpcomment_extra_validation' );
5
+ }
6
 
7
  function wpa_wpcomment_extra_validation( $commentdata ) {
8
  if (!isset($_POST[ $GLOBALS['wpa_field_name']] )){
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: dnesscarkey
3
  Tags: anti spam, spam checker, spam filter, gravity forms, contact form 7
4
  Requires at least: 3.0
5
  Tested up to: 5.5
6
- Stable tag: 1.5.1
7
  License: GPLv2 or later
8
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -12,8 +12,8 @@ Anti spam filter that blocks spam bots including russian spam in Contact Form 7,
12
  == Description ==
13
  This plugins block spammer submissions using honeypot technic. No Captcha or extra verification field hassle to the users. Only lets spam bots to suffer using our spam filter.
14
 
15
- <strong>What is honeypot ? </strong>
16
- As of now spam bots are unable to handle javascript and we exploit this point to add an extra fields to your forms using javascript as spam checker. Since spam bots are not able to see that field, we check if that field exists or not. If that field doesn't exists we will block spam submission.
17
 
18
  <strong>It works </strong>
19
 
@@ -27,57 +27,59 @@ As of now spam bots are unable to handle javascript and we exploit this point to
27
  * For Formidable Forms
28
  * For Caldera Forms
29
 
30
- <strong>How our plugin is different than other honeypot plugins ? </strong>
31
 
32
  * Works for most of the forms and wordpress system including registation and comments. So All in one anti spam solution.
33
- * Spam bots can't use javascript so we use javascript to insert honeypot field in the form and spam bots can't fill it to pass spam test.
34
- * Unique honeypot field name generated for each wordpress installation, so it is hard for spam bots to make one fit for all solution to bypass honeypot spam test.
 
 
35
 
36
  <strong>Support</strong>
37
 
38
- If you have any issue, you can write to using <a title="WP Armour - Honeypot Anti Spam " href="https://wordpress.org/support/plugin/honeypot/" target="_blank">support forum.</a>
39
 
40
  <strong>WP Armour Extended</strong>
41
 
42
- * Log spam bot IPs.
43
- * Block spam bot IPs if multiple spam is submitted. Add extra level of spam filter based on IPs. Needed to stop spam bot using unwanted bandwidth and save valuable server resource. Add
44
  * View what spam bot are trying to submit, so that you are sure our plugin is blocking legit spam bots.
45
 
46
- You can get the WP Armour Extended from <a href="https://bit.ly/3iaZewM">here</a>
47
 
48
  <strong>Our other plugins</strong>
49
 
50
- * <a target="_blank" href="http://wordpress.org/extend/plugins/use-any-font">Use Any Font</a>
51
  * <a target="_blank" href="http://wordpress.org/plugins/wp-masonry-layout/">WP Masonry Layout</a>
52
- * <a target="_blank" href="http://wordpress.org/extend/plugins/any-mobile-theme-switcher/">Any Mobile Theme Switcher</a>
53
- * <a target="_blank" href="http://wordpress.org/extend/plugins/jquery-validation-for-contact-form-7/">Jquery Validation For Contact Form 7</a>
54
- * <a target="_blank" href="http://wordpress.org/extend/plugins/add-tags-and-category-to-page/">Add Tags And Category To Page</a>
55
- * <a target="_blank" href="http://wordpress.org/extend/plugins/block-specific-plugin-updates/">Block Specific Plugin Updates</a>
56
- * <a target="_blank" href="http://wordpress.org/extend/plugins/featured-image-in-rss-feed/">Featured Image In RSS Feed</a>
57
 
58
 
59
  == Installation ==
60
  1. You can install plugin directly from Wordpress Plugin menu. Search for WP Armour - Honeypot Anti Spam plugin and click on Install OR you can download the plugin and install honeypot.zip from Upload Plugin button from Wordpress Plugin menu.
61
- 2. You can also access the settings from WP Armour menu. From there you can change honeypot field name and honeypot spam submission message.
62
  3. Please check your forms, comments, bbpress, registration to confirm they are working after honeypot is placed. There will be widgets below the forms to confirm anti spam protection is enabled and ready to block spam.
63
 
64
  == Frequently Asked Questions ==
65
 
66
- = How this plugin is different than other honeypot plugins ? =
67
 
68
- We have used the honeypot technic differently in this plugin to make it work better. What other plugin does is, they add honeypot field from server side (PHP) and check if the spam bot have filled that field or not. If it is filled it is marked as spam. But in our case, we add honeypot field from client side (Javascript) and check if honeypot field exists or not. Spam bots can't use javascript and honeypot field is not available for them. This way we can better trap spam bot.
69
 
70
  = Will it block all the spam submission ? =
71
 
72
- Spam submission are either created by spam bot or by manual submission from users. Honeypot trap is for spam bots only. So there won't be submission from spam bots. And ya, it can block russian spam, chinese spam effectively.
73
 
74
  = Forms i am using is not supported. Can you help ? =
75
 
76
  Ya, Please write to us using <a href="https://dineshkarki.com.np/forums/forum/wp-armour-honeypot-anti-spam" target="_blank">support forum</a> and we will try to add anti spam honeypot support to it.
77
 
78
- = How can i verify that honeypot is working in my forms ? =
79
 
80
- Honeypot is a trap for spam bots, so it is not visible for users. However, if you are logged in as Administrator, WP Armour Test widget is shown below the form. This will confirm Honeypot anti spam checker is active in that form. And also allows you to test it as spam bot.
81
 
82
  = Do i need Captcha verification ? =
83
 
@@ -87,13 +89,13 @@ No, with this plugin you don't need Captcha, reCaptcha or Invisble Captcha at al
87
 
88
  Yes. Spam bots are now able to solve the captcha puzzle. So they are no longer effective as anti spam checker . Our plugin's javascript based anti spam filter can block them as spam bots can't use javascript.
89
 
90
- = I see settings to change honeypot field name. Do i need to change it ? =
91
 
92
- By default our plugin generates unqiue honeypot field name so that the slim chance of spam bots using the field to submit spam is more slimmer. This blocks them to create one for all type solution to bypass the honeypot field. But even in that case if you get spam bot submission, chaging the field name should work.
93
 
94
  = Can i see what data spammers are trying to submit ? =
95
 
96
- With WP Armour - Honeypot Anti Spam plugin it is No. But if you want you can use <a href="https://bit.ly/3iaZewM">WP Armour Extended</a> and can see what data spammers are trying to submit. It also have feature to block ip address if there are multiple submission from same IP.
97
 
98
  == Screenshots ==
99
 
@@ -109,6 +111,9 @@ With WP Armour - Honeypot Anti Spam plugin it is No. But if you want you can use
109
 
110
  == Changelog ==
111
 
 
 
 
112
  = = 1.5.1 =
113
  * Added honeypot anti spam support for Caldera Forms.
114
 
@@ -116,8 +121,8 @@ With WP Armour - Honeypot Anti Spam plugin it is No. But if you want you can use
116
  * WP Armour Test Panel added in forms. Only visible for Admin.
117
 
118
  = = 1.4 =
119
- * Added honeypot for Formidable Forms
120
- * Added honeypot spam statistics
121
 
122
  = = 1.3 =
123
  * Rebranding to WP Armour - Honeypot Anti Spam Plugin.
3
  Tags: anti spam, spam checker, spam filter, gravity forms, contact form 7
4
  Requires at least: 3.0
5
  Tested up to: 5.5
6
+ Stable tag: 1.5.2
7
  License: GPLv2 or later
8
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
9
 
12
  == Description ==
13
  This plugins block spammer submissions using honeypot technic. No Captcha or extra verification field hassle to the users. Only lets spam bots to suffer using our spam filter.
14
 
15
+ <strong>What is honeypot anti spam ? </strong>
16
+ As of now spam bots are unable to handle javascript and we exploit this point to add an extra fields to your forms using javascript as anti spam checker. Since spam bots are not able to see that field, we check if that field exists or not. If that field doesn't exists we will block spam submission.
17
 
18
  <strong>It works </strong>
19
 
27
  * For Formidable Forms
28
  * For Caldera Forms
29
 
30
+ <strong>How our plugin is different than other honeypot anti spam plugins ? </strong>
31
 
32
  * Works for most of the forms and wordpress system including registation and comments. So All in one anti spam solution.
33
+ * Spam bots can't use javascript so we use javascript to insert honeypot anti spam field in the form and spam bots can't fill it to pass anti spam test.
34
+ * Unique honeypot field name generated for each wordpress installation, so it is hard for spam bots to make one fit for all solution to bypass honeypot anti spam test.
35
+ * No setup required. Just activate the plugin and it enables anti spam for all supported forms, comment and registration.
36
+ * No API or monthly subscription needed like other plugins. Though we have <a title="WP Armour Extended - Anti Spam" href="https://bit.ly/3iaZewM">Premium extended version</a> of the plugin, it is not needed to block the spam.
37
 
38
  <strong>Support</strong>
39
 
40
+ If you have any issue, you can write to using <a title="WP Armour - Honeypot Anti Spam Forum" href="https://wordpress.org/support/plugin/honeypot/" target="_blank">support forum.</a>
41
 
42
  <strong>WP Armour Extended</strong>
43
 
44
+ * Logs spam bot IPs.
45
+ * Block spam bot IPs if multiple spam is submitted. Add extra level of anti spam filter based on IPs. Needed to stop spam bot using unwanted bandwidth and save valuable server resource.
46
  * View what spam bot are trying to submit, so that you are sure our plugin is blocking legit spam bots.
47
 
48
+ You can get the WP Armour Extended from <a title="WP Armour Extended - Anti Spam" href="https://bit.ly/3iaZewM">here</a>
49
 
50
  <strong>Our other plugins</strong>
51
 
52
+ * <a target="_blank" href="http://wordpress.org/plugins/use-any-font">Use Any Font</a>
53
  * <a target="_blank" href="http://wordpress.org/plugins/wp-masonry-layout/">WP Masonry Layout</a>
54
+ * <a target="_blank" href="http://wordpress.org/plugins/any-mobile-theme-switcher/">Any Mobile Theme Switcher</a>
55
+ * <a target="_blank" href="http://wordpress.org/plugins/jquery-validation-for-contact-form-7/">Jquery Validation For Contact Form 7</a>
56
+ * <a target="_blank" href="http://wordpress.org/plugins/add-tags-and-category-to-page/">Add Tags And Category To Page</a>
57
+ * <a target="_blank" href="http://wordpress.org/plugins/block-specific-plugin-updates/">Block Specific Plugin Updates</a>
58
+ * <a target="_blank" href="http://wordpress.org/plugins/featured-image-in-rss-feed/">Featured Image In RSS Feed</a>
59
 
60
 
61
  == Installation ==
62
  1. You can install plugin directly from Wordpress Plugin menu. Search for WP Armour - Honeypot Anti Spam plugin and click on Install OR you can download the plugin and install honeypot.zip from Upload Plugin button from Wordpress Plugin menu.
63
+ 2. You can also access the settings from WP Armour menu. From there you can change honeypot anti spam field name and honeypot spam submission message.
64
  3. Please check your forms, comments, bbpress, registration to confirm they are working after honeypot is placed. There will be widgets below the forms to confirm anti spam protection is enabled and ready to block spam.
65
 
66
  == Frequently Asked Questions ==
67
 
68
+ = How this plugin is different than other honeypot anti spam plugins ? =
69
 
70
+ We have used the honeypot technic differently in this plugin to make it work better. What other plugin does is, they add honeypot anti spam field from server side (PHP) and check if the spam bot have filled or not. If it is filled it is marked as spam. But in our case, we add honeypot anti spam field from client side (Javascript) and check if honeypot field exists or not. Spam bots can't use javascript and honeypot field is not available for them. This way we can better trap spam bot.
71
 
72
  = Will it block all the spam submission ? =
73
 
74
+ Spam submission are either created by spam bot or by manual submission from users. Honeypot trap is for spam bots only. So there won't be submission from spam bots. So you get rid of around 98% of spam. And ya, it can block russian spam, chinese spam effectively.
75
 
76
  = Forms i am using is not supported. Can you help ? =
77
 
78
  Ya, Please write to us using <a href="https://dineshkarki.com.np/forums/forum/wp-armour-honeypot-anti-spam" target="_blank">support forum</a> and we will try to add anti spam honeypot support to it.
79
 
80
+ = How can i verify that honeypot anti spam protection is enabled ? =
81
 
82
+ Honeypot Anti Spam is a trap for spam bots, so it is not visible for users. However, if you are logged in as Administrator, WP Armour Test widget is shown below the form. This will confirm Honeypot anti spam checker is active in that form. And also allows you to test it as spam bot.
83
 
84
  = Do i need Captcha verification ? =
85
 
89
 
90
  Yes. Spam bots are now able to solve the captcha puzzle. So they are no longer effective as anti spam checker . Our plugin's javascript based anti spam filter can block them as spam bots can't use javascript.
91
 
92
+ = I see settings to change honeypot anti spam field name. Do i need to change it ? =
93
 
94
+ By default our plugin generates unqiue honeypot anti spam field name so that the slim chance of spam bots using the field to submit spam is more slimmer. This blocks them to create one for all type solution to bypass the honeypot field. But even in that case if you get spam bot submission, chaging the field name should work.
95
 
96
  = Can i see what data spammers are trying to submit ? =
97
 
98
+ With WP Armour - Honeypot Anti Spam plugin it is No. But if you want you can use <a title="WP Armour Extended - Anti Spam" href="https://bit.ly/3iaZewM">WP Armour Extended</a> and can see what data spammers are trying to submit. It also have feature to block ip address if there are multiple submission from same IP.
99
 
100
  == Screenshots ==
101
 
111
 
112
  == Changelog ==
113
 
114
+ = = 1.5.2 =
115
+ * Removed anti spam filter from admin comment section. Before it was marking the comment as spam when trying to add from admin panel.
116
+
117
  = = 1.5.1 =
118
  * Added honeypot anti spam support for Caldera Forms.
119
 
121
  * WP Armour Test Panel added in forms. Only visible for Admin.
122
 
123
  = = 1.4 =
124
+ * Added honeypot anti spam for Formidable Forms
125
+ * Added honeypot anti spam statistics
126
 
127
  = = 1.3 =
128
  * Rebranding to WP Armour - Honeypot Anti Spam Plugin.
wp-armour.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: WP Armour - Honeypot Anti Spam
4
  Plugin URI: http://wordpress.org/plugins/honeypot/
5
  Description: Add honeypot anti spam protection.
6
  Author: Dnesscarkey
7
- Version: 1.5.1
8
  Author URI: https://dineshkarki.com.np
9
  */
10
 
4
  Plugin URI: http://wordpress.org/plugins/honeypot/
5
  Description: Add honeypot anti spam protection.
6
  Author: Dnesscarkey
7
+ Version: 1.5.2
8
  Author URI: https://dineshkarki.com.np
9
  */
10