The best WordPress backup and migration plugin. Quickly and easily backup ,migrate, copy, move, or clone your site from one location to another.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Security
1,694
10 issue groups
Maintainability
1,468
13 issue groups
I18n
234
2 issue groups
ERRORSecurityOutput Not EscapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" class='divider'><i class='fa fa-folder-open'></i> {$sroot}</div>"'.882
- Category
- Security
- Occurrences
- 882
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" class='divider'><i class='fa fa-folder-open'></i> {$sroot}</div>"'.
WARNINGMaintainabilityNon Prefixed Variable FoundGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$CHUNK_DATA_FILE_PATH".624
- Category
- Maintainability
- Occurrences
- 624
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$CHUNK_DATA_FILE_PATH".
ERRORMaintainabilitymissing direct file access protectionPHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;377
- Category
- Maintainability
- Occurrences
- 377
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
ERRORSecurityException Not EscapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"$filepath doesn't exist"'.196
- Category
- Security
- Occurrences
- 196
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"$filepath doesn't exist"'.
ERRORSecurityUnsafe Printing FunctionAll output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.162
- Category
- Security
- Occurrences
- 162
- Severity
- error
Sample message
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
ERRORI18nNon Singular String Literal TextThe $text parameter must be a single text string literal. Found: "- On some budget hosts scanning over 30k files can lead to timeout/gateway issues. " .\n "Consider scanning only your main WordPress site and avoid trying to backup other external directories."153
- Category
- I18n
- Occurrences
- 153
- Severity
- error
Sample message
The $text parameter must be a single text string literal. Found: "- On some budget hosts scanning over 30k files can lead to timeout/gateway issues. " .\n "Consider scanning only your main WordPress site and avoid trying to backup other external directories."
ERRORSecuritymysql mysqli real escape stringAccessing the database directly should be avoided. Please use the $wpdb object and associated functions instead. Found: mysqli_real_escape_string.114
- Category
- Security
- Occurrences
- 114
- Severity
- error
Sample message
Accessing the database directly should be avoided. Please use the $wpdb object and associated functions instead. Found: mysqli_real_escape_string.
WARNINGSecurityMissing Unslash$_GET['_wpnonce'] not unslashed before sanitization. Use wp_unslash() or similar98
- Category
- Security
- Occurrences
- 98
- Severity
- warning
Sample message
$_GET['_wpnonce'] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGSecurityInput Not SanitizedDetected usage of a non-sanitized input variable: $_GET['_wpnonce']83
- Category
- Security
- Occurrences
- 83
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_GET['_wpnonce']
ERRORI18nMissing Translators CommentA 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.81
- Category
- I18n
- Occurrences
- 81
- Severity
- error
Sample message
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.
Show 15 moreShow less
WARNINGMaintainabilityNon Prefixed Class Found61
- Category
- Maintainability
- Occurrences
- 61
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "DUP_Archive".
WARNINGSecurityRecommended59
- Category
- Security
- Occurrences
- 59
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGMaintainabilityDirect Query54
- Category
- Maintainability
- Occurrences
- 54
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
WARNINGMaintainabilityNo Caching53
- Category
- Maintainability
- Occurrences
- 53
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
ERRORMaintainabilityunlink unlink51
- Category
- Maintainability
- Occurrences
- 51
- Severity
- error
Sample message
unlink() is discouraged. Use wp_delete_file() to delete a file.
ERRORMaintainabilitymysql mysqli error48
- Category
- Maintainability
- Occurrences
- 48
- Severity
- error
Sample message
Accessing the database directly should be avoided. Please use the $wpdb object and associated functions instead. Found: mysqli_error.
WARNINGSecurityInput Not Validated39
- Category
- Security
- Occurrences
- 39
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_POST['archive_build_mode']. Check that the array index exists before using it.
ERRORMaintainabilityfile system operations fclose38
- Category
- Maintainability
- Occurrences
- 38
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fclose().
ERRORMaintainabilitydate date37
- Category
- Maintainability
- Occurrences
- 37
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
ERRORMaintainabilityfile system operations fopen36
- Category
- Maintainability
- Occurrences
- 36
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fopen().
ERRORSecurityNot Prepared34
- Category
- Security
- Occurrences
- 34
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $cols
ERRORMaintainabilityfile system operations fwrite31
- Category
- Maintainability
- Occurrences
- 31
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fwrite().
ERRORMaintainabilityfile system operations fread30
- Category
- Maintainability
- Occurrences
- 30
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fread().
ERRORMaintainabilityparse url parse url28
- Category
- Maintainability
- Occurrences
- 28
- Severity
- error
Sample message
parse_url() is discouraged because of inconsistency in the output across PHP versions; use wp_parse_url() instead.
WARNINGSecurityMissing27
- Category
- Security
- Occurrences
- 27
- Severity
- warning
Sample message
Processing form data without nonce verification.
Score History
First score snapshot
v1.5.16.1
21
Latest
- Findings
- 3,849
- Errors
- 2,572
- Warnings
- 1,277
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 21 | 3,849 | 2,572 | 1,277 | v1.5.16.1 | 2.0.0 |