This File Management & Digital Store plugin will help you to control file downloads & sell digital products from your WP site.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Security
2,261
9 issue groups
Maintainability
1,042
13 issue groups
I18n
105
3 issue groups
ERRORSecurityOutput Not EscapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"$atname='$atval' "'.1,257
- Category
- Security
- Occurrences
- 1,257
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"$atname='$atval' "'.
WARNINGMaintainabilityNon Prefixed Variable FoundGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$APIKEY".617
- Category
- Maintainability
- Occurrences
- 617
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$APIKEY".
ERRORSecurityUnsafe Printing FunctionAll output should be run through an escaping function (like echo esc_html_x() or echo esc_attr_x()), found '_ex'.596
- Category
- Security
- Occurrences
- 596
- Severity
- error
Sample message
All output should be run through an escaping function (like echo esc_html_x() or echo esc_attr_x()), found '_ex'.
WARNINGSecurityRecommendedProcessing form data without nonce verification.112
- Category
- Security
- Occurrences
- 112
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.76
- Category
- Maintainability
- Occurrences
- 76
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
WARNINGSecurityInput Not SanitizedDetected usage of a non-sanitized input variable: $_COOKIE['__wpdm_client']73
- Category
- Security
- Occurrences
- 73
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_COOKIE['__wpdm_client']
WARNINGSecurityMissing Unslash$_COOKIE['__wpdm_client'] not unslashed before sanitization. Use wp_unslash() or similar73
- Category
- Security
- Occurrences
- 73
- Severity
- warning
Sample message
$_COOKIE['__wpdm_client'] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGMaintainabilityNo CachingDirect database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().70
- Category
- Maintainability
- Occurrences
- 70
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
ERRORMaintainabilityEcho FoundShort PHP opening tag used with echo; expected "<?php echo $class ..." but found "<?= $class ..."67
- Category
- Maintainability
- Occurrences
- 67
- Severity
- error
Sample message
Short PHP opening tag used with echo; expected "<?php echo $class ..." but found "<?= $class ..."
WARNINGSecurityInterpolated Not PreparedUse placeholders and $wpdb->prepare(); found interpolated variable $column at "SHOW COLUMNS FROM `{$wpdb->prefix}{$table}` LIKE '$column'"60
- Category
- Security
- Occurrences
- 60
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable $column at "SHOW COLUMNS FROM `{$wpdb->prefix}{$table}` LIKE '$column'"
Show 15 moreShow less
ERRORMaintainabilitymissing direct file access protection50
- Category
- Maintainability
- Occurrences
- 50
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
ERRORI18nNon Singular String Literal Domain45
- Category
- I18n
- Occurrences
- 45
- Severity
- error
Sample message
The $domain parameter must be a single text string literal. Found: WPDM_TEXT_DOMAIN
ERRORI18nMissing Arg Domain38
- Category
- I18n
- Occurrences
- 38
- Severity
- error
Sample message
Missing $domain parameter in function call to __().
WARNINGSecurityInput Not Validated36
- Category
- Security
- Occurrences
- 36
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_FILES['package_file']['tmp_name']. Check that the array index exists before using it.
WARNINGSecurityMissing32
- Category
- Security
- Occurrences
- 32
- Severity
- warning
Sample message
Processing form data without nonce verification.
ERRORMaintainabilityNon Enqueued Script26
- Category
- Maintainability
- Occurrences
- 26
- Severity
- error
Sample message
Scripts must be registered/enqueued via wp_enqueue_script()
ERRORMaintainabilitystrip tags strip tags24
- Category
- Maintainability
- Occurrences
- 24
- Severity
- error
Sample message
strip_tags() is discouraged. Use the more comprehensive wp_strip_all_tags() instead.
WARNINGMaintainabilityNon Prefixed Hookname Found23
- Category
- Maintainability
- Occurrences
- 23
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "__is_url".
ERRORMaintainabilityNon Enqueued Stylesheet23
- Category
- Maintainability
- Occurrences
- 23
- Severity
- error
Sample message
Stylesheets must be registered/enqueued via wp_enqueue_style()
ERRORSecurityUnescaped DBParameter22
- Category
- Security
- Occurrences
- 22
- Severity
- error
Sample message
Unescaped parameter $ID used in $wpdb->get_results()\n$ID used without escaping.
ERRORI18nMissing Translators Comment22
- Category
- I18n
- Occurrences
- 22
- 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.
WARNINGMaintainabilityNo Code Found20
- Category
- Maintainability
- Occurrences
- 20
- Severity
- warning
Sample message
No PHP code was found in this file and short open tags are not allowed by this install of PHP. This file may be using short open tags but PHP does not allow them.
WARNINGMaintainabilityMissing Version17
- Category
- Maintainability
- Occurrences
- 17
- Severity
- warning
Sample message
Resource version not set in call to wp_enqueue_script(). This means new versions of the script may not always be loaded due to browser caching.
ERRORMaintainabilityfile system operations mkdir15
- Category
- Maintainability
- Occurrences
- 15
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: mkdir().
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.
Score History
First score snapshot
v3.3.58
22
Latest
- Findings
- 3,591
- Errors
- 2,290
- Warnings
- 1,301
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 22 | 3,591 | 2,290 | 1,301 | v3.3.58 | 2.0.0 |