The best anti-spam protection to block spam comments and spam in a contact form. The most trusted antispam sol...
Spam protection for WordPress registration, login, comments, and contact forms.
Dam Spam is a WordPress plugin designed to protect your site from spam registrations, login attempts, comments, and contact form submissions. It employs various methods such as IP blocking, email validation, and CAPTCHA challenges to identify and manage spam effectively. The plugin allows you to configure settings based on your specific needs, including the ability to maintain custom allow and block lists.
The plugin integrates with third-party spam detection services and offers logging features to track blocked attempts and approved submissions. It is suitable for users who want to enhance their site's security against spam while maintaining a smooth experience for legitimate users.
Best for: This plugin is best for WordPress site owners looking to reduce spam and enhance security.
What it does well
Where it falls short
Dam Spam provides a comprehensive solution for managing spam on WordPress sites. It offers various protective features, making it a useful tool for those concerned about spam-related issues.
Web Guy's own description of Dam Spam, lightly tidied.
Dam Spam is a spam protection plugin that blocks spam registrations, login attempts, comments, and contact form submissions. It provides multiple layers of protection including IP blocking, email validation, CAPTCHA challenges, and integration with third-party spam detection services.
How it Works
Dam Spam runs a series of configurable checks on registrations, logins, comments, and form submissions. When a submission is flagged as potentially suspicious, you can choose to block it outright or present a CAPTCHA challenge. Legitimate users are cached to speed up future submissions, while known spam sources are permanently blocked.
Features
Configuration
After installation, go to the Dam Spam settings in your WordPress admin to:
Differences from Stop Spammers
Dam Spam is a fork of Stop Spammers. While the core spam protection functionality remains similar, Dam Spam’s file and code structure has been significantly cleaned up and modernized.
Addon Support
Dam Spam supports custom spam checks via addons. Create a separate plugin with this structure:
<?php
/*
Plugin Name: Dam Spam Addon Example
Description: Custom spam check addon for Dam Spam
Version: 1.0
*/
add_filter( 'dam_spam_addons_block', function( $addons ) {
$addons[] = array( __FILE__, 'My_Spam_Check' );
return $addons;
} );
class My_Spam_Check {
public function process( $ip, &$stats, &$options, &$post ) {
if ( $ip === '123.45.67.89' ) {
return 'Blocked by custom check';
}
return false;
}
}
dam_spam_addons_block or dam_spam_addons_allowprocess() methoddam_spam_addons_block: return false to continue checking, or a string to blockdam_spam_addons_allow: return false to continue checking, or a string to approveOther plugins for stopping spam.
The best anti-spam protection to block spam comments and spam in a contact form. The most trusted antispam sol...
Allows administrators to globally disable comments on their site. Comments can be disabled according to post t...
Sophisticated antispam plugin for effective daily comment and trackback spam-fighting. Built with data protect...
Top-rated antispam for contact forms, comments, WooCommerce, eCommerce, and login. No CAPTCHAs, no friction, j...
Adds reCaptcha v2 from Contact Form 7 5.0.5 that was dropped on Contact Form 7 5.1
Captcha protection against spam comments & brute force login attacks using Google reCAPTCHA.