WPBruiser {no- Captcha anti-Spam}
WPBruiser (formerly GoodBye Captcha) is an anti-spam and security plugin based on algorithms that identify spam bots without any annoying and hard to read captcha images. WPBruiser completely eliminates spam-bot signups, spam comments, even brute force attacks, the second you install it on your WordPress website. It is completely invisible to the end-user – no need to ever fill out a Captcha or other “human-detection” field ever again – and it just works! Unlike other anti-spam plugins, which detect spam comments and signups after the fact and move them to your spam folder, which you then have to delete – using up not only your website’s resources, but your time as well, WPBruiser prevents the bots from leaving spam in the first place. The result is that your site is not only spam free, it’s faster and more secure. In addition, WPBruiser is completely self-contained and does not need to connect to any outside service. Your logins remain yours, 100%. WPBruiser fights Brute Force attacks and eliminates spam-bots on comments, signup pages as well as login and password reset pages. At the click of a button, you can decide which forms to protect. Summary of WPBruiser features Standard WordPress Login form integration Standard WordPress Register form integration Standard WordPress Forgot Password form integration Standard WordPress Comments form integration Ability to set the maximum number of characters for each comment field Logging with the ability to enable/disable it Automatically Block IP Addresses Automatically purge logs older than a certain number of days Manually white-list trusted IP Address (IPV4 and IPV6) Manually block/unblock IP Addresses (IPV4 and IPV6) Properly detects client IP Address when using CloudFlare, Incapsula, Cloudfront, RackSpace, Sucuri CloudProxy, AWS ELB Provides statistics, reports, maps and charts with all blocked spam attempts No requests to external APIs Can be switched to “Test Mode” – for testing Compatible with WordPress Multisite – network admin interface ready Compatible with cache plugins (WP Super Cache, W3 Total Cache, ZenCache, WP Fastest Cache and others) Invisible for end users (works in the background) Does not affect page loading times Brute Force Protection Automatically detects Brute Force attacks Ability to automatically block IP Addresses Prevents User Enumeration Ability to block most dangerous IP addresses involved in brute force attacks Ability to block most dangerous Anonymous Proxy IP addresses including TOR Networks, TOR Nodes and TOR Exit Points Ability to Completely Disable XML-RPC service – it seamlessly works with Jetpack plugin activated Ability to Disable XML-RPC Pingbacks Email notifications when a Brute Force Attack is detected WPBruiser Available Extensions WPBruiser is integrated with the most popular plugins Contact Forms Extensions WPBruiser – Contact Form 7 WPBruiser – Gravity Forms WPBruiser – Ninja Forms WPBruiser – Formidable Forms WPBruiser – Fast Secure Contact Form WPBruiser – Jetpack Contact Form (FREE – merged into the core) Membership Extensions WPBruiser – BuddyPress WPBruiser – MemberPress WPBruiser – UserPro WPBruiser – User Profiles Made Easy WPBruiser – Ultimate Member (FREE – merged into the core) eCommerce Extensions WPBruiser – WooCommerce WPBruiser – Easy Digital Downloads WPBruiser – AffiliateWP Email Subscriptions Extensions WPBruiser – MailPoet WPBruiser – Easy Forms for MailChimp View all WPBruiser Extensions WPBruiser is also integrated with the following plugins: Postmatic (https://wordpress.org/plugins/postmatic) WPBruiser offers protection for the entire email commenting system Epoch (https://wordpress.org/plugins/epoch) WPBruiser offers protection for the entire chat and commenting system wpDiscuz (https://wordpress.org/plugins/wpdiscuz/) WPBruiser offers protection for the entire commenting system MailChimp for WordPress (https://wordpress.org/plugins/mailchimp-for-wp) WPBruiser offers protection for all forms the user will create with MailChimp Ultimate Member (https://wordpress.org/plugins/ultimate-member) WPBruiser offers protection for Login, Registration and Reset Password forms Jetpack by WordPress (https://wordpress.org/plugins/jetpack) WPBruiser offers protection for JetPack Contact Form ZM Ajax Login & Register (https://wordpress.org/plugins/zm-ajax-login-register) WPBruiser offers protection for Login and Registration forms Login With Ajax (https://wordpress.org/plugins/login-with-ajax) WPBruiser offers protection for Login, Registration and Lost Password forms WP User Control (https://wordpress.org/plugins/wp-user-control) WPBruiser offers protection for Login, Registration and Lost Password forms PlanSo Forms (https://wordpress.org/plugins/planso-forms/) WPBruiser offers protection for all forms Theme My Login (https://wordpress.org/plugins/theme-my-login) WPBruiser offers protection for Login, Registration and Lost Password forms Seamless Donations (https://wordpress.org/plugins/seamless-donations) WPBruiser offers protection for the donation form Technical support If you notice any problems by using this plugin, please notify us and we will investigate and fix the issues. Ideally your request should contain: URL of the website (if your site is public), Php version, WordPress version and all the steps in order to replicate the issue (if you are able to reproduce it somehow) Donate If you find this plugin useful, please consider making a small donation. Thank you
Top keywords
- wpbruiser38×4.87%
- wordpress21×2.69%
- forms14×1.79%
- protection13×1.67%
- https12×1.54%
- https wordpress12×1.54%
- https wordpress org12×1.54%
- offers12×1.54%
- offers protection12×1.54%
- org12×1.54%
- wordpress org12×1.54%
- wpbruiser offers12×1.54%
Really Simple CAPTCHA
Really Simple CAPTCHA does not work alone and is intended to work with other plugins. It is originally created for Contact Form 7, however, you can use it with your own plugin. Note: This product is “really simple” as its name suggests, i.e., it is not strongly secure. If you need perfect security, you should try other solutions. How does it work? Really Simple CAPTCHA does not use PHP “Sessions” for storing states, unlike many other PHP CAPTCHA solutions, but stores them as temporary files. This allows you to embed it into WordPress without worrying about conflicts. When you generate a CAPTCHA, Really Simple CAPTCHA creates two files for it; one is an image file of CAPTCHA, and the other is a text file which stores the correct answer to the CAPTCHA. The two files have the same (random) prefix in their file names, for example, “a7hk3ux8p.png” and “a7hk3ux8p.txt.” In this case, for example, when the respondent answers “K5GF” as an answer to the “a7hk3ux8p.png” image, then Really Simple CAPTCHA calculates hash of “K5GF” and tests it against the hash stored in the “a7hk3ux8p.txt” file. If the two match, the answer is confirmed as correct. How to use with your plugin Note: Below are instructions for plugin developers. First, create an instance of ReallySimpleCaptcha class: $captcha_instance = new ReallySimpleCaptcha(); You can change the instance variables as you wish. // Change the background color of CAPTCHA image to black $captcha_instance->bg = array( 0, 0, 0 ); See really-simple-captcha.php if you are interested in other variables. Generate a random word for CAPTCHA. $word = $captcha_instance->generate_random_word(); Generate an image file and a corresponding text file in the temporary directory. $prefix = wp_rand(); $captcha_instance->generate_image( $prefix, $word ); Then, show the image and get an answer from respondent. Check the correctness of the answer. $correct = $captcha_instance->check( $prefix, $the_answer_from_respondent ); If the $correct is true, go ahead. Otherwise, block the respondent — as it would appear not to be human. And last, remove the temporary image and text files, as they are no longer in use. $captcha_instance->remove( $prefix ); That’s all. If you wish to see a live sample of this, you can try Contact Form 7.
Top keywords
- captcha16×4.26%
- image7×1.86%
- answer6×1.60%
- file