The CRM for small businesses. Manage leads, invoicing, billing, email marketing, clients, contacts, quotes, automation. Works with WooCommerce too.
Category Scores
Top Issues by Category
maintainability2,510
security1,468
Issues Details
4,363 issues found in latest scan
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$$actionHolderName".
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"Copying $src to $dest...\n"'.
$_GET['_wpnonce'] not unslashed before sanitization. Use wp_unslash() or similar
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
Processing form data without nonce verification.
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.
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "after-zerobscrm-admin-init".
The $text parameter must be a single text string literal. Found: $colVal['fieldstr']
Unescaped parameter $ZBSCRM_t['aka'] used in $wpdb->query()\n$ZBSCRM_t['aka'] used without escaping.
Detected usage of a non-sanitized input variable: $_FILES['zbs_file_attachment']
Detected usage of a possibly undefined superglobal array index: $_FILES['zbsc_file_' . $cfSubKey]['tmp_name']. Check that the array index exists before using it.
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "ZBSCRM_INC_LOGSMB".
Unescaped parameter $ZBSCRM_t[$tableKey] used in $wpdb->query()\n$ZBSCRM_t[$tableKey] used without escaping.
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "__w".
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"$path does not exist."'.
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
print_r() found. Debug code should not normally be used in production.
unlink() is discouraged. Use wp_delete_file() to delete a file.
wp_redirect() found. Using wp_safe_redirect(), along with the "allowed_redirect_hosts" filter if needed, can help avoid any chances of malicious redirects within code. It is also important to remember to call exit() after a redirect so that no other unwanted code is executed.
Use placeholders and $wpdb->prepare(); found interpolated variable $meta at "DELETE FROM $wpdb->postmeta WHERE `meta_key` = '$meta'"
Mismatched text domain. Expected 'zero-bs-crm' but got 'jetpack-assets'.
| Code | Type | Message | Count |
|---|---|---|---|
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound | WARNING | Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$$actionHolderName". | 1,611 |
| WordPress.Security.EscapeOutput.OutputNotEscaped | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"Copying $src to $dest...\n"'. | 304 |
| WordPress.Security.ValidatedSanitizedInput.MissingUnslash | WARNING | $_GET['_wpnonce'] not unslashed before sanitization. Use wp_unslash() or similar | 254 |
| missing_direct_file_access_protection | ERROR | PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit; | 232 |
| WordPress.DB.DirectDatabaseQuery.DirectQuery | WARNING | Use of a direct database call is discouraged. | 220 |
| WordPress.Security.NonceVerification.Recommended | WARNING | Processing form data without nonce verification. | 199 |
| WordPress.DB.DirectDatabaseQuery.NoCaching | WARNING | Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete(). | 190 |
| WordPress.Security.NonceVerification.Missing | WARNING | Processing form data without nonce verification. | 190 |
| WordPress.DB.PreparedSQL.NotPrepared | ERROR | Use placeholders and $wpdb->prepare(); found $ZBSCRM_t | 167 |
| 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. | 162 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound | WARNING | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "after-zerobscrm-admin-init". | 129 |
| WordPress.WP.I18n.NonSingularStringLiteralText | ERROR | The $text parameter must be a single text string literal. Found: $colVal['fieldstr'] | 117 |
| PluginCheck.Security.DirectDB.UnescapedDBParameter | ERROR | Unescaped parameter $ZBSCRM_t['aka'] used in $wpdb->query()\n$ZBSCRM_t['aka'] used without escaping. | 107 |
| WordPress.Security.ValidatedSanitizedInput.InputNotSanitized | WARNING | Detected usage of a non-sanitized input variable: $_FILES['zbs_file_attachment'] | 93 |
| WordPress.Security.ValidatedSanitizedInput.InputNotValidated | WARNING | Detected usage of a possibly undefined superglobal array index: $_FILES['zbsc_file_' . $cfSubKey]['tmp_name']. Check that the array index exists before using it. | 65 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedConstantFound | WARNING | Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "ZBSCRM_INC_LOGSMB". | 46 |
| PluginCheck.Security.DirectDB.UnescapedDBParameter | WARNING | Unescaped parameter $ZBSCRM_t[$tableKey] used in $wpdb->query()\n$ZBSCRM_t[$tableKey] used without escaping. | 42 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound | WARNING | Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "__w". | 29 |
| WordPress.Security.EscapeOutput.ExceptionNotEscaped | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"$path does not exist."'. | 21 |
| 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. | 19 |
| WordPress.PHP.DevelopmentFunctions.error_log_print_r | WARNING | print_r() found. Debug code should not normally be used in production. | 18 |
| WordPress.WP.AlternativeFunctions.unlink_unlink | ERROR | unlink() is discouraged. Use wp_delete_file() to delete a file. | 16 |
| WordPress.Security.SafeRedirect.wp_redirect_wp_redirect | WARNING | wp_redirect() found. Using wp_safe_redirect(), along with the "allowed_redirect_hosts" filter if needed, can help avoid any chances of malicious redirects within code. It is also important to remember to call exit() after a redirect so that no other unwanted code is executed. | 14 |
| WordPress.DB.PreparedSQL.InterpolatedNotPrepared | WARNING | Use placeholders and $wpdb->prepare(); found interpolated variable $meta at "DELETE FROM $wpdb->postmeta WHERE `meta_key` = '$meta'" | 12 |
| WordPress.WP.I18n.TextDomainMismatch | ERROR | Mismatched text domain. Expected 'zero-bs-crm' but got 'jetpack-assets'. | 11 |
Latest Snapshot
Findings
4,363
Errors
1,211
Warnings
3,152
Score History
First score snapshot
First scan completed Jun 20, 2026
v6.8.1 · Plugin Check 2.0.0 · Model 2026.06-mvp-static-v2
Jun 20, 2026
v6.8.1
24
Latest
- Findings
- 4,363
- Errors
- 1,211
- Warnings
- 3,152
- Plugin Check
- 2.0.0
- Model
- 2026.06-mvp-static-v2
| Scan | Score | Findings | Errors | Warnings | Plugin | Plugin Check | Model |
|---|---|---|---|---|---|---|---|
| Jun 20, 2026Latest | 24 | 4,363 | 1,211 | 3,152 | v6.8.1 | 2.0.0 | 2026.06-mvp-static-v2 |