

Dashboard — protection status, statistics and recent activity at a glance.
Maspik is a complete spam protection platform for WordPress.
Instead of relying on a single detection method, Maspik combines multiple independent protection layers that work together to stop spam before it reaches your inbox.
Protect contact forms, registration forms, comments, WooCommerce, and custom forms using lightweight local validation together with optional cloud intelligence.
Install. Activate. You’re protected.
No CAPTCHA. No puzzles. No interruption for real visitors.
Most anti-spam plugins rely on one detection technique. Some only use CAPTCHAs. Some only check external APIs. Some only filter keywords.
Maspik combines many protection layers into one unified spam detection engine.
Every submission can be analysed using local validation, behavioural analysis, reputation services, and optional cloud intelligence.
The result is stronger protection with fewer false positives and a better experience for legitimate visitors.
Maspik lets you combine multiple independent protection methods:
Enable only the protection layers you need. Everything is configurable.
Most protection happens locally inside WordPress without contacting external services.
Only optional features such as Matrix or IP reputation require cloud requests. Only enabled protection layers are executed.
No unnecessary JavaScript. No front-end slowdown. Optimized for high-traffic websites.
Most spam detection happens locally. Cloud-based protection is optional, and only the required data is transmitted when it is enabled.
No visitor tracking. GDPR friendly.
Maspik is designed to work immediately after activation. No complicated configuration, no API keys required, no CAPTCHA setup.
Advanced users can fine-tune every protection layer individually.
Maspik protects WordPress core forms together with many popular form builders:
Pro also supports:
Maspik Matrix is an optional cloud protection layer built into Maspik. It complements the local protection engine by analysing submissions using additional cloud intelligence.
Matrix may include:
Local rules always continue working independently.
Every installation includes free Matrix usage (100 checks per month). Pro includes unlimited usage.
Understand exactly why spam was blocked. The log shows:
Mark entries as “Not Spam” to continuously improve your configuration, or turn a blocked value into a rule with one click.
Optionally log passed submissions too, to see exactly why something was not caught.
Monitor your protection over time:
Optional integrations include:
Enable only the services you want.
Upgrade to Maspik Pro and unlock:
Learn more: https://wpmaspik.com/
Spam is constantly evolving. If unwanted submissions are still getting through, we’ll help you configure Maspik until they’re blocked.
Join the community, share a sample, and we’ll help you improve your protection.
Built your own form in PHP? List the fields you want analysed and Maspik tells you whether to accept the submission:
$fields = [ [ 'type' => 'text', 'field_name' => 'name', 'value' => $_POST['name'] ?? '' ], [ 'type' => 'email', 'field_name' => 'email', 'value' => $_POST['email'] ?? '' ], [ 'type' => 'textarea', 'field_name' => 'message', 'value' => $_POST['message'] ?? '' ] ];
if ( function_exists( 'maspik_is_spam' ) && maspik_is_spam( $fields, 'Contact form' ) ) { wp_die( 'Spam detected' ); }
Listing the fields explicitly means Maspik analyses exactly the values you care about — never nonces, redirects, tokens, checkboxes or other technical inputs — which keeps detection predictable and avoids false positives.
The honeypot and verification key are read from the request automatically, so there is nothing else to wire up.
Need the reason? maspik_check_spam() returns the message to show the visitor, the offending field, and the layer that blocked it.
The original version 2 filter (maspik_validate_custom_form_fields) continues to work unchanged, so existing integrations keep running after the upgrade.
Full example: https://wpmaspik.com/documentation/custom-form/
Maspik is developed with a strong focus on performance, security, privacy and long-term WordPress compatibility.