Code Monkey home page Code Monkey logo

fortify's Introduction

=== Fortify ===
Contributors: webvitaly
Donate link: http://web-profile.net/donate/
Tags: spam, spammer, comment, comments, comment-spam, antispam, anti-spam, block-spam, spam-free, spambot, spam-bot, bot
Requires at least: 5.0
Tested up to: 5.8.2
Stable tag: 1.0
License: GPLv3
License URI: http://www.gnu.org/licenses/gpl.html

No spam in comments. No captcha.

== Description ==

* **[Fortify](http://web-profile.net/wordpress/plugins/fortify/ "Plugin page")**
* **[Donate](http://web-profile.net/donate/ "Support the development")**
* **[GitHub](https://github.com/webvitalii/fortify "Fork")**


Fortify plugin blocks automatic spam in comments section. No captcha.

Plugin is easy to use: just install it and it just works.

Blocked comments can be stored in the Spam area if needed. This can be enabled/disabled via Settings page. This is useful for testing and debug purpose. Blocked spam comments can be easily converted to regular comments if needed.

Fortify plugin is GDPR compliant and does not store any other user data except of the behavior mentioned above.

**Plugin blocks spam only in comments section**.



After installing the Fortify plugin **try to submit a comment on your site being logged out**.
If you get an error - you may check the solution in the [Support section](http://wordpress.org/support/plugin/fortify ) or submit a new topic with detailed description of your problem.


== Installation ==

1. Install and activate the plugin on the Plugins page
2. Enjoy life without spam in comments

== Frequently Asked Questions ==

= How to test what spam comments were blocked? =

You can visit Fortify settings page and enable saving blocked comments as spam in the spam section.
To enabled that you need to go to: WordPress admin dashboard => Settings section => Fortify
Saving blocked comments into spam section is disabled by default.
Saving spam comments can help you to keep all the comments saved and review them in future if needed. You can easily mark comment as "not spam" if some of the comments have been blocked by mistake.

= What is the percentage of spam blocked? =

Fortify plugin blocks 100% of automatic spam messages (sent by spam-bots via post requests).
Plugin does not block manual spam (submitted by spammers manually via browser).

= Incompatible with: =

* Disqus
* Jetpack Comments
* AJAX Comment Form
* bbPress

= How does Fortify plugin work? =

The blocking algorithm is based on "honeypot technique" and the fact that spam bots does not have JavaScript enabled.
Fortify plugin adds invisible to regular users input fields.
And spam bots fill in those fields which helps to identify that as spam.

= How to know the counter of blocked spam comments? =

You can find the info block with total spam blocked counter in the admin comments section.
You can hide or show this info block in the "Screen Options" section.
The visibility option for this info block is saved per user.

= Does plugin block spam from Contact or other forms? =

Plugin blocks spam only in comments form section and does not block spam from any other forms on site.
If you installed and activated the plugin and you still receiving spam - probably this could be because of some other forms on your site (for example feedback form).

= What about trackback spam? =

Users rarely use trackbacks because it is manual and requires extra input. Spammers uses trackbacks because it is easy to cheat here.
Users use pingbacks very often because they work automatically. Spammers does not use pingbacks because backlinks are checked.
So trackbacks are blocked but pingbacks are enabled. 
You may read more about the [difference between trackbacks and pingbacks](http://web-profile.net/web/trackback-vs-pingback/)

= What browsers are supported? =

All modern browsers and IE8+ are supported.

= Not enough information about the plugin? =

You may check out the [source code of the plugin](http://plugins.trac.wordpress.org/browser/fortify/trunk/fortify.php).


== Changelog ==

= 1.0 =
* initial release

fortify's People

Contributors

johnh10 avatar webvitalii avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

fortify's Issues

Undefined index: antspm-q

[30-Dec-2015 16:03:51 UTC] PHP Notice: Undefined index: antspm-q in /home/userdir/public_html/wp-content/plugins/anti-spam/anti-spam.php on line 106
[30-Dec-2015 16:03:51 UTC] PHP Notice: Undefined index: antspm-d in /home/userdir/public_html/wp-content/plugins/anti-spam/anti-spam.php on line 107
[30-Dec-2015 16:03:51 UTC] PHP Notice: Undefined index: antspm-q in /home/userdir/public_html/wp-content/plugins/anti-spam/anti-spam.php on line 110

https://wordpress.org/support/topic/php-notice-undefined-index-antspm-q

AntiSpam v5.5 maintenance

Hi,

I saw that you sold your nice WP plugin "Anti Spam" to CreativeMotion, good for you. Now they called it Titan Anti-spam & Security or something.

But my question is: are you going to keep maintaining the old version v5.5 on here (GitHub)? When I say maintain I mean fixing any possible error with new WP versions or security breaches.

I refuse to use the new updated plugin by CreativeMotion v7.0.2, it is just so overcrowded. So I just want to keep with the old, great and simple Anti Spam v5.5.

Can you please answer my question above? It'd be awesome for the community if you keep the maintenance here.

Thank you in advance.

Server error 500 / http return code

Every comment that goes into spam generates a 500 server error. This is cause wp_die() defaults to 500. May I suggest the following change for the next update...
Either replace wp_die() by just die(). This defaults to http return 200 or better do something like wp_die( __( $antispam_pre_error_message . $antispam_error_message, 'anti-spam' ), 403 );. I'm still testing if 403 is better than 200 in terms of spam. Changing from 500 to 200 reduced the amount of spam by 75% (many spam scripts are sending the same comment multiple times if they get a 500).

Ah and if you are already updating... you might change $antispam_pre_error_message into a non-Javascript version. Because you get the message cause your Javascript is disabled.
I use something like:

$url = htmlspecialchars($_SERVER['HTTP_REFERER']);
$antispam_pre_error_message = "<a href='$url'>back</a>";

...and the back link does work.

Form is not 100% accessible for screen readers

Hey,
While checking my website accessibility on WAVE I keep getting "missing form label" error for both text inputs (antspm-q and antspm-e-email-url-website). The label tags actually are there, so I guess adding a for attribute to each will solve the error.
I know the inputs are supposed to be hidden so screen reader should skip them, and I'm not an accessibility expert, but yet, WAVE returns that error over and over, so I'd appreciate if you check it out.

Thanks,
Itamar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.