MBE eShip, the Mail Boxes Etc.'s plugin for e-commerce platforms, functions as an integrator between your online store and the MBE's Systems
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Security
625
11 issue groups
Maintainability
331
10 issue groups
I18n
247
4 issue groups
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$ENTITIES_URL".150
- Category
- Maintainability
- Occurrences
- 150
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$ENTITIES_URL".
WARNINGSecurityRequest data is not unslashed$_GET['mbe_filetype'] not unslashed before sanitization. Use wp_unslash() or similar127
- Category
- Security
- Occurrences
- 127
- Severity
- warning
Sample message
$_GET['mbe_filetype'] not unslashed before sanitization. Use wp_unslash() or similar
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"!!!{$type}!!!"'.107
- Category
- Security
- Occurrences
- 107
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"!!!{$type}!!!"'.
ERRORI18nMissing Arg DomainMissing $domain parameter in function call to __().98
- Category
- I18n
- Occurrences
- 98
- Severity
- error
Sample message
Missing $domain parameter in function call to __().
ERRORI18nNon Singular String Literal TextThe $text parameter must be a single text string literal. Found: $action95
- Category
- I18n
- Occurrences
- 95
- Severity
- error
Sample message
The $text parameter must be a single text string literal. Found: $action
WARNINGSecurityInterpolated SQL is not preparedUse placeholders and $wpdb->prepare(); found interpolated variable $field at "SELECT id FROM %i WHERE $field = $type $idParam"70
- Category
- Security
- Occurrences
- 70
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable $field at "SELECT id FROM %i WHERE $field = $type $idParam"
ERRORSecurityException output is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" $errno"'.70
- Category
- Security
- Occurrences
- 70
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" $errno"'.
WARNINGSecurityInput is not validatedDetected usage of a possibly undefined superglobal array index: $_GET['mbe_filetype']. Check that the array index exists before using it.60
- Category
- Security
- Occurrences
- 60
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_GET['mbe_filetype']. Check that the array index exists before using it.
WARNINGSecurityInput is not sanitizedDetected usage of a non-sanitized input variable: $_FILES[$fileFieldName]59
- Category
- Security
- Occurrences
- 59
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_FILES[$fileFieldName]
WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.49
- Category
- Security
- Occurrences
- 49
- Severity
- warning
Sample message
Processing form data without nonce verification.
Show 15 moreShow less
ERRORI18nMissing Translators Comment38
- Category
- I18n
- Occurrences
- 38
- 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.
WARNINGMaintainabilityNon-prefixed class37
- Category
- Maintainability
- Occurrences
- 37
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "HTML5_Data".
WARNINGSecuritywp redirect wp redirect33
- Category
- Security
- Occurrences
- 33
- 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.
WARNINGMaintainabilityNon-prefixed namespace30
- Category
- Maintainability
- Occurrences
- 30
- Severity
- warning
Sample message
Namespaces declared by a theme/plugin should start with the theme/plugin prefix. Found: "Svg".
WARNINGMaintainabilityNon-prefixed constant28
- Category
- Maintainability
- Occurrences
- 28
- Severity
- warning
Sample message
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "MBE_DELIVERY_POINT_DESCRIPTION".
ERRORMaintainabilityMissing direct file access protection27
- Category
- Maintainability
- Occurrences
- 27
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
WARNINGSecurityDatabase parameter is not escaped22
- Category
- Security
- Occurrences
- 22
- Severity
- warning
Sample message
Unescaped parameter $field used in $wpdb->get_results()\n$field used without escaping.
ERRORSecuritySQL query is not prepared18
- Category
- Security
- Occurrences
- 18
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $ids
WARNINGMaintainabilityNon-prefixed function17
- Category
- Maintainability
- Occurrences
- 17
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "WC".
ERRORI18nUnordered Placeholders Text16
- Category
- I18n
- Occurrences
- 16
- Severity
- error
Sample message
Multiple placeholders in translatable strings should be ordered. Expected "%1$d, %2$s", but got "%d, %s" in 'File upload error: row %d: "%s", COUNTRY column. Use destination Country in 2 character ISO format (e.g. IT for Italy, ES for Spain, DE for Germany)'.
ERRORMaintainabilitydate date14
- Category
- Maintainability
- Occurrences
- 14
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
WARNINGMaintainabilityDynamic hook name12
- Category
- Maintainability
- Occurrences
- 12
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "MBE_ESHIP_ID . '_add_department_data'".
WARNINGSecurityMissing nonce verification10
- Category
- Security
- Occurrences
- 10
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGMaintainabilityerror log error log8
- Category
- Maintainability
- Occurrences
- 8
- Severity
- warning
Sample message
error_log() found. Debug code should not normally be used in production.
ERRORMaintainabilityrand rand8
- Category
- Maintainability
- Occurrences
- 8
- Severity
- error
Sample message
rand() is discouraged. Use the far less predictable wp_rand() instead.
External Connections
Not analyzed yet.
Score History
First score snapshot
v2.8.1
20
Latest
- Findings
- 1,267
- Errors
- 527
- Warnings
- 740
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 20 | 1,267 | 527 | 740 | v2.8.1 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.