Top-rated antispam for contact forms, comments, WooCommerce, eCommerce, and login. No CAPTCHAs, no friction, just background anti spam protection.
Category Scores
Top Issues by Category
security1,017
maintainability512
i18n234
Issues Details
1,904 issues found in latest scan
Processing form data without nonce verification.
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" data-wp-lists='list:$singular'"'.
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$_cleantalk_ajax_actions_to_check".
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
Processing form data without nonce verification.
A function call to __() with texts containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "apache_request_headers".
$_COOKIE[$cookie_name] not unslashed before sanitization. Use wp_unslash() or similar
Detected usage of a non-sanitized input variable: $_COOKIE[$name]
Unescaped parameter $apbct->data['sfw_common_table_name'] used in $wpdb->get_var()\n$apbct->data['sfw_common_table_name'] used without escaping.
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$apbct'.
Multiple placeholders in translatable strings should be ordered. Expected "%1$d, %2$s", but got "%d, %s" in 'max_execution_time must be at least %d seconds, ini_get() returns %s'.
Mismatched text domain. Expected 'cleantalk-spam-protect' but got 'cleantalk_spam_protect'.
The $text parameter must be a single text string literal. Found: "Please wait for a while. " . $apbct->data['wl_brandname_short'] . " is checking all $this->page_slug via blacklist database at cleantalk.org. You will have option to delete found spam $this->page_slug after plugin finish."
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
Function "current_datetime()" requires WordPress 5.3.0, but your plugin minimum supported version is WordPress 4.7.0.
Attempting a database schema change is discouraged.
parse_url() is discouraged because of inconsistency in the output across PHP versions; use wp_parse_url() instead.
error_log() found. Debug code should not normally be used in production.
Unescaped parameter $prefix used in $wpdb->query()\n$prefix used without escaping.
print_r() found. Debug code should not normally be used in production.
| Code | Type | Message | Count |
|---|---|---|---|
| WordPress.Security.NonceVerification.Missing | WARNING | Processing form data without nonce verification. | 359 |
| WordPress.Security.EscapeOutput.OutputNotEscaped | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" data-wp-lists='list:$singular'"'. | 267 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound | WARNING | Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$_cleantalk_ajax_actions_to_check". | 134 |
| WordPress.DB.DirectDatabaseQuery.DirectQuery | WARNING | Use of a direct database call is discouraged. | 93 |
| WordPress.DB.DirectDatabaseQuery.NoCaching | WARNING | Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete(). | 92 |
| WordPress.Security.NonceVerification.Recommended | WARNING | Processing form data without nonce verification. | 83 |
| WordPress.WP.I18n.MissingTranslatorsComment | ERROR | A function call to __() with texts containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders. | 80 |
| WordPress.DB.PreparedSQL.NotPrepared | ERROR | Use placeholders and $wpdb->prepare(); found $apbct | 78 |
| WordPress.WP.I18n.MissingArgDomain | ERROR | Missing $domain parameter in function call to __(). | 76 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound | WARNING | Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "apache_request_headers". | 72 |
| WordPress.Security.ValidatedSanitizedInput.MissingUnslash | WARNING | $_COOKIE[$cookie_name] not unslashed before sanitization. Use wp_unslash() or similar | 68 |
| WordPress.Security.ValidatedSanitizedInput.InputNotSanitized | WARNING | Detected usage of a non-sanitized input variable: $_COOKIE[$name] | 55 |
| PluginCheck.Security.DirectDB.UnescapedDBParameter | ERROR | Unescaped parameter $apbct->data['sfw_common_table_name'] used in $wpdb->get_var()\n$apbct->data['sfw_common_table_name'] used without escaping. | 37 |
| WordPress.DateTime.RestrictedFunctions.date_date | ERROR | date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead. | 36 |
| WordPress.Security.EscapeOutput.ExceptionNotEscaped | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$apbct'. | 35 |
| WordPress.WP.I18n.UnorderedPlaceholdersText | ERROR | Multiple placeholders in translatable strings should be ordered. Expected "%1$d, %2$s", but got "%d, %s" in 'max_execution_time must be at least %d seconds, ini_get() returns %s'. | 35 |
| WordPress.WP.I18n.TextDomainMismatch | ERROR | Mismatched text domain. Expected 'cleantalk-spam-protect' but got 'cleantalk_spam_protect'. | 22 |
| WordPress.WP.I18n.NonSingularStringLiteralText | ERROR | The $text parameter must be a single text string literal. Found: "Please wait for a while. " . $apbct->data['wl_brandname_short'] . " is checking all $this->page_slug via blacklist database at cleantalk.org. You will have option to delete found spam $this->page_slug after plugin finish." | 21 |
| WordPress.Security.EscapeOutput.UnsafePrintingFunction | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. | 20 |
| wp_function_not_compatible_with_requires_wp | ERROR | Function "current_datetime()" requires WordPress 5.3.0, but your plugin minimum supported version is WordPress 4.7.0. | 19 |
| WordPress.DB.DirectDatabaseQuery.SchemaChange | WARNING | Attempting a database schema change is discouraged. | 18 |
| WordPress.WP.AlternativeFunctions.parse_url_parse_url | ERROR | parse_url() is discouraged because of inconsistency in the output across PHP versions; use wp_parse_url() instead. | 17 |
| WordPress.PHP.DevelopmentFunctions.error_log_error_log | WARNING | error_log() found. Debug code should not normally be used in production. | 16 |
| PluginCheck.Security.DirectDB.UnescapedDBParameter | WARNING | Unescaped parameter $prefix used in $wpdb->query()\n$prefix used without escaping. | 15 |
| WordPress.PHP.DevelopmentFunctions.error_log_print_r | WARNING | print_r() found. Debug code should not normally be used in production. | 15 |
Latest Snapshot
Findings
1,904
Errors
826
Warnings
1,078
Score History
First score snapshot
First scan completed Jun 19, 2026
v6.81 · Plugin Check 2.0.0 · Model 2026.06-mvp-static-v2
Jun 19, 2026
v6.81
23
Latest
- Findings
- 1,904
- Errors
- 826
- Warnings
- 1,078
- Plugin Check
- 2.0.0
- Model
- 2026.06-mvp-static-v2
| Scan | Score | Findings | Errors | Warnings | Plugin | Plugin Check | Model |
|---|---|---|---|---|---|---|---|
| Jun 19, 2026Latest | 23 | 1,904 | 826 | 1,078 | v6.81 | 2.0.0 | 2026.06-mvp-static-v2 |