Everything you need to sell WordPress maintenance and manage multiple sites effortlessly: backup, update, uptime monitoring, and security.
Category Scores
Top Issues by Category
maintainability800
security572
Issues Details
1,820 issues found in latest scan
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"The \"ignoreVCSIgnored\" option cannot be used by the Finder as the \"{$path}\" file is not readable."'.
Mismatched text domain. Expected 'wp-health' but got 'action-scheduler'.
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$$name".
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "admin_memory_limit".
$_GET['action'] not unslashed before sanitization. Use wp_unslash() or similar
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "UMBRELLA_BACKUP_KEY".
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "CronExpression".
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "as_enqueue_async_action".
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$dump'.
Detected usage of a non-sanitized input variable: $_FILES['file']['name']
Unescaped parameter $activityLogBufferTableName used in $wpdb->get_var()
Processing form data without nonce verification.
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fclose().
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 {$activityLogBufferTableName} at "SELECT COUNT(*) FROM `{$activityLogBufferTableName}`"
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fopen().
unlink() is discouraged. Use wp_delete_file() to delete a file.
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fwrite().
trigger_error() found. Debug code should not normally be used in production.
Function "move_dir()" requires WordPress 6.2.0, but your plugin minimum supported version is WordPress 5.8.0.
Attempting a database schema change is discouraged.
Using cURL functions is highly discouraged. Use wp_remote_get() instead.
| Code | Type | Message | Count |
|---|---|---|---|
| WordPress.Security.EscapeOutput.ExceptionNotEscaped | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"The \"ignoreVCSIgnored\" option cannot be used by the Finder as the \"{$path}\" file is not readable."'. | 307 |
| WordPress.WP.I18n.TextDomainMismatch | ERROR | Mismatched text domain. Expected 'wp-health' but got 'action-scheduler'. | 195 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound | WARNING | Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$$name". | 130 |
| WordPress.DB.DirectDatabaseQuery.DirectQuery | WARNING | Use of a direct database call is discouraged. | 120 |
| WordPress.DB.DirectDatabaseQuery.NoCaching | WARNING | Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete(). | 112 |
| missing_direct_file_access_protection | ERROR | PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit; | 72 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound | WARNING | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "admin_memory_limit". | 61 |
| WordPress.Security.ValidatedSanitizedInput.MissingUnslash | WARNING | $_GET['action'] not unslashed before sanitization. Use wp_unslash() or similar | 57 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedConstantFound | WARNING | Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "UMBRELLA_BACKUP_KEY". | 54 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound | WARNING | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "CronExpression". | 52 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound | WARNING | Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "as_enqueue_async_action". | 51 |
| WordPress.Security.EscapeOutput.OutputNotEscaped | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$dump'. | 47 |
| WordPress.Security.ValidatedSanitizedInput.InputNotSanitized | WARNING | Detected usage of a non-sanitized input variable: $_FILES['file']['name'] | 46 |
| PluginCheck.Security.DirectDB.UnescapedDBParameter | WARNING | Unescaped parameter $activityLogBufferTableName used in $wpdb->get_var() | 34 |
| WordPress.Security.NonceVerification.Recommended | WARNING | Processing form data without nonce verification. | 32 |
| WordPress.WP.AlternativeFunctions.file_system_operations_fclose | ERROR | File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fclose(). | 31 |
| 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. | 25 |
| WordPress.DB.PreparedSQL.InterpolatedNotPrepared | WARNING | Use placeholders and $wpdb->prepare(); found interpolated variable {$activityLogBufferTableName} at "SELECT COUNT(*) FROM `{$activityLogBufferTableName}`" | 24 |
| WordPress.WP.AlternativeFunctions.file_system_operations_fopen | ERROR | File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fopen(). | 23 |
| WordPress.WP.AlternativeFunctions.unlink_unlink | ERROR | unlink() is discouraged. Use wp_delete_file() to delete a file. | 22 |
| WordPress.WP.AlternativeFunctions.file_system_operations_fwrite | ERROR | File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fwrite(). | 18 |
| WordPress.PHP.DevelopmentFunctions.error_log_trigger_error | WARNING | trigger_error() found. Debug code should not normally be used in production. | 14 |
| wp_function_not_compatible_with_requires_wp | ERROR | Function "move_dir()" requires WordPress 6.2.0, but your plugin minimum supported version is WordPress 5.8.0. | 14 |
| WordPress.DB.DirectDatabaseQuery.SchemaChange | WARNING | Attempting a database schema change is discouraged. | 13 |
| WordPress.WP.AlternativeFunctions.curl_curl_setopt | ERROR | Using cURL functions is highly discouraged. Use wp_remote_get() instead. | 13 |
Latest Snapshot
Findings
1,820
Errors
915
Warnings
905
Score History
First score snapshot
First scan completed Jun 20, 2026
v2.24.3 · Plugin Check 2.0.0 · Model 2026.06-mvp-static-v2
Jun 20, 2026
v2.24.3
22
Latest
- Findings
- 1,820
- Errors
- 915
- Warnings
- 905
- Plugin Check
- 2.0.0
- Model
- 2026.06-mvp-static-v2
| Scan | Score | Findings | Errors | Warnings | Plugin | Plugin Check | Model |
|---|---|---|---|---|---|---|---|
| Jun 20, 2026Latest | 22 | 1,820 | 915 | 905 | v2.24.3 | 2.0.0 | 2026.06-mvp-static-v2 |