WP Umbrella: Update Backup Restore & Monitoring

Everything you need to sell WordPress maintenance and manage multiple sites effortlessly: backup, update, uptime monitoring, and security.

v2.24.3WP Umbrella - Backup WordPressUpdated Added 70k+ installs96% rating
22
Score
915
Errors
905
Warnings
+0
Change

Category Scores

Security0
Repo83
Performance100
Maintainability0

Issues to Review

Prioritized issue groups from the latest Plugin Check scan

1,820 findings

Maintainability

800

16 issue groups

Security

572

8 issue groups

I18n

195

1 issue group

ERRORSecurityException output is not escapedAll 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
Category
Security
Occurrences
307
Severity
error

Sample message

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."'.

ERRORI18nText Domain MismatchMismatched text domain. Expected 'wp-health' but got 'action-scheduler'.195
Category
I18n
Occurrences
195
Severity
error

Sample message

Mismatched text domain. Expected 'wp-health' but got 'action-scheduler'.

WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$$name".130
Category
Maintainability
Occurrences
130
Severity
warning

Sample message

Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$$name".

WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.120
Category
Maintainability
Occurrences
120
Severity
warning

Sample message

Use of a direct database call is discouraged.

WARNINGMaintainabilityNo CachingDirect database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().112
Category
Maintainability
Occurrences
112
Severity
warning

Sample message

Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().

ERRORMaintainabilityMissing direct file access protectionPHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;72
Category
Maintainability
Occurrences
72
Severity
error

Sample message

PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;

WARNINGMaintainabilityNon-prefixed hook nameHook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "admin_memory_limit".61
Category
Maintainability
Occurrences
61
Severity
warning

Sample message

Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "admin_memory_limit".

WARNINGSecurityRequest data is not unslashed$_GET['action'] not unslashed before sanitization. Use wp_unslash() or similar57
Category
Security
Occurrences
57
Severity
warning

Sample message

$_GET['action'] not unslashed before sanitization. Use wp_unslash() or similar

WARNINGMaintainabilityNon-prefixed constantGlobal constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "UMBRELLA_BACKUP_KEY".54
Category
Maintainability
Occurrences
54
Severity
warning

Sample message

Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "UMBRELLA_BACKUP_KEY".

WARNINGMaintainabilityNon-prefixed classClasses declared by a theme/plugin should start with the theme/plugin prefix. Found: "CronExpression".52
Category
Maintainability
Occurrences
52
Severity
warning

Sample message

Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "CronExpression".

Show 15 more
WARNINGMaintainabilityNon-prefixed function51
Category
Maintainability
Occurrences
51
Severity
warning

Sample message

Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "as_enqueue_async_action".

ERRORSecurityOutput is not escaped47
Category
Security
Occurrences
47
Severity
error

Sample message

All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$dump'.

WARNINGSecurityInput is not sanitized46
Category
Security
Occurrences
46
Severity
warning

Sample message

Detected usage of a non-sanitized input variable: $_FILES['file']['name']

WARNINGSecurityDatabase parameter is not escaped34
Category
Security
Occurrences
34
Severity
warning

Sample message

Unescaped parameter $activityLogBufferTableName used in $wpdb->get_var()

WARNINGSecurityNonce verification recommended32
Category
Security
Occurrences
32
Severity
warning

Sample message

Processing form data without nonce verification.

ERRORMaintainabilityfile system operations fclose31
Category
Maintainability
Occurrences
31
Severity
error

Sample message

File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fclose().

WARNINGSecuritywp redirect wp redirect25
Category
Security
Occurrences
25
Severity
warning

Sample message

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.

WARNINGSecurityInterpolated SQL is not prepared24
Category
Security
Occurrences
24
Severity
warning

Sample message

Use placeholders and $wpdb->prepare(); found interpolated variable {$activityLogBufferTableName} at "SELECT COUNT(*) FROM `{$activityLogBufferTableName}`"

ERRORMaintainabilityfile system operations fopen23
Category
Maintainability
Occurrences
23
Severity
error

Sample message

File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fopen().

ERRORMaintainabilityunlink unlink22
Category
Maintainability
Occurrences
22
Severity
error

Sample message

unlink() is discouraged. Use wp_delete_file() to delete a file.

ERRORMaintainabilityfile system operations fwrite18
Category
Maintainability
Occurrences
18
Severity
error

Sample message

File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fwrite().

WARNINGMaintainabilityerror log trigger error14
Category
Maintainability
Occurrences
14
Severity
warning

Sample message

trigger_error() found. Debug code should not normally be used in production.

ERRORMaintainabilitywp function not compatible with requires wp14
Category
Maintainability
Occurrences
14
Severity
error

Sample message

Function "move_dir()" requires WordPress 6.2.0, but your plugin minimum supported version is WordPress 5.8.0.

WARNINGMaintainabilitySchema Change13
Category
Maintainability
Occurrences
13
Severity
warning

Sample message

Attempting a database schema change is discouraged.

ERRORMaintainabilitycurl curl setopt13
Category
Maintainability
Occurrences
13
Severity
error

Sample message

Using cURL functions is highly discouraged. Use wp_remote_get() instead.

Score History

First score snapshot

v2.24.3

22

Latest

Findings
1,820
Errors
915
Warnings
905
Check
2.0.0

Related Plugins