Maspik – Multi-Layer Spam Protection

Por yonifre
(87 avaliações)
Baixar
  • Versão:
    3.0.4
  • Última atualização:
    há 4 dias
  • Instalações ativas:
    mais de 30 mil
  • Versão do WordPress:
    6.2 ou maior
  • Testado até o WordPress:
    7.0.4
  • Versão do PHP:
    7.4 ou maior
  • Tags:

Hospedagem WordPress com plugin Maspik – Spam Blacklist

Onde hospedar o plugin Maspik – Spam Blacklist?

Este plugin pode ser hospedado em qualquer provedor que tenha WordPress instalado. Recomendamos fortemente utilizar uma hospedagem de confiança, com servidores especializados para WordPress, como o serviço de hospedagem de sites da MCO2.

Hospedando o plugin Maspik – Spam Blacklist em um provedor seguro

A MCO2, além de instalar o WordPress na versão mais nova para seus clientes, disponibiliza o plugin WP SafePress, um mecanismo exclusivo que assegura e aumenta a performance do seu site ao mesmo tempo.

Por que a Hospedagem WordPress funciona melhor na MCO2?

A Hospedagem WordPress funciona melhor pois a MCO2 possui servidores otimizados para WordPress. A instalação de WordPress é diferente de uma instalação trivial, pois habilita imediatamente recursos como otimização automática de imagens, proteção da página de login, bloqueio de atividades suspeitas diretamente no firewall, cache avançado e HTTPS ativado por padrão. São plugins que potencializam seu WordPress para a máxima segurança e o máximo desempenho.

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.

Why Maspik?

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.

Protection Layers

Maspik lets you combine multiple independent protection methods:

  • Forbidden keywords
  • Email patterns
  • URL validation
  • Phone format validation
  • Character limits
  • Link limits
  • Emoji filtering
  • Honeypot protection
  • Verification Key
  • Direct POST protection
  • IP blocklists
  • IP reputation
  • Proxy and VPN detection
  • Country and continent restrictions (Pro)
  • Language rules (Pro)
  • Maspik Matrix cloud protection with AI analysis

Enable only the protection layers you need. Everything is configurable.

Built for Performance

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.

Privacy First

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.

Works Immediately

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.

Supported Forms

Maspik protects WordPress core forms together with many popular form builders:

  • Elementor Forms
  • Elementor Atomic Forms
  • Contact Form 7
  • Fluent Forms
  • Formidable Forms
  • Forminator
  • Ninja Forms
  • JetFormBuilder
  • Everest Forms
  • Breakdance Forms
  • Bricks Builder
  • Divi Contact Form
  • Hello Plus
  • MetForm
  • Bit Form
  • BuddyPress Registration
  • WordPress Comments
  • WordPress Registration
  • Custom PHP forms (simple developer API)

Pro also supports:

  • WPForms
  • Gravity Forms
  • WooCommerce Registration
  • WooCommerce Checkout

Maspik Matrix

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:

  • IP reputation
  • Pattern analysis
  • Heuristic detection
  • Structural analysis
  • AI scoring
  • Threat intelligence

Local rules always continue working independently.

Every installation includes free Matrix usage (100 checks per month). Pro includes unlimited usage.

Submission Log

Understand exactly why spam was blocked. The log shows:

  • Block reason
  • Triggered protection layer
  • Submitted values
  • Full detection trace of every layer that ran
  • IP address and country
  • Date and time
  • Page URL

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.

Statistics

Monitor your protection over time:

  • Total blocked submissions
  • Detection trends
  • Protection layer activity
  • Matrix usage
  • Spam history

API Integrations

Optional integrations include:

  • AbuseIPDB
  • ProxyCheck

Enable only the services you want.

Designed For

  • Business websites
  • WooCommerce stores
  • Agencies
  • Membership websites
  • High-traffic websites
  • Enterprise WordPress

Why Site Owners Choose Maspik

  • No CAPTCHA
  • Better user experience
  • Works immediately
  • Lightweight
  • Multiple protection layers
  • Detailed spam logs
  • Powerful statistics
  • Extensive customization
  • Local-first architecture
  • Optional cloud intelligence
  • Import and export your configuration

Pro Features

Upgrade to Maspik Pro and unlock:

  • Unlimited Matrix protection
  • Country and continent restrictions
  • Language rules
  • Premium integrations (WPForms, Gravity Forms, WooCommerce)
  • Central Dashboard to manage rules across multiple websites
  • Premium support

Learn more: https://wpmaspik.com/

Spam Block Guarantee

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.

Custom Forms

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-php-form/

Documentation

  • Getting Started: https://wpmaspik.com/documentation/
  • Developer Documentation: https://wpmaspik.com/documentation/developers/
  • Support: https://wpmaspik.com/
  • Community: https://www.facebook.com/groups/maspik

Maspik is developed with a strong focus on performance, security, privacy and long-term WordPress compatibility.

Capturas de tela

Dashboard — protection status, statistics and recent activity at a glance.

Dashboard — protection status, statistics and recent activity at a glance.

Protection — enable and configure each detection layer.

Protection — enable and configure each detection layer.

Logs — review blocked submissions with the full detection trace.

Logs — review blocked submissions with the full detection trace.

Analytics — detection trends over time.

Analytics — detection trends over time.

Playground — test your configuration against sample submissions.

Playground — test your configuration against sample submissions.

Plugins semelhantes

Elementor Website Builder – muito mais do que apenas um construtor de páginas
(7.297 avaliações)

O Elementor Website Builder tem tudo: construtor de páginas com recurso de arrastar e soltar, editor atômico, design com precisão em pixels, sistemas de estilo globais e reutilizáveis, compatibilidade com dispositivos móveis…

Akismet Anti-spam: Spam Protection
(1.186 avaliações)

The best anti-spam protection to block spam comments and spam in a contact form. The most trusted antispam solution for WordPress and WooCommerce.

Ultimate Addons for Elementor – Widgets, Templates, WooCommerce & Header Footer Builder
(2.525 avaliações)

Elementor addons with 18+ free widgets, Header & Footer Builder, WooCommerce widgets & templates. Trusted by 2+ million websites.

Starter Templates – AI-Powered Templates for Elementor & Gutenberg
(4.745 avaliações)

The growing library of 300+ ready-to-use templates that work with all WordPress themes including Astra, Hello, OceanWP, GeneratePress and more

Essential Addons for Elementor – Widgets e modelos populares do Elementor
(4.111 avaliações)

O complemento Elementor oferece mais de 120 widgets e modelos - Galeria do Elementor, Controle deslizante, Formulário, Grade de posts, Menu, Sanfona, WooCommerce e muito mais.

Premium Addons for Elementor – Elementor Templates, Widgets & MCP Tools
(1.677 avaliações)

Elementor Carousel, Mega Menu, Posts List/Slider, WooCommerce Widgets, Display Conditions, AI Abilities, Premade Templates & more.