Serve perfectly optimized images, videos, models and 360 spins. The best WordPress & WooCommerce CDN plugin for media.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Security
874
12 issue groups
Maintainability
620
12 issue groups
I18n
14
1 issue group
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"</{$tag}>"'.291
- Category
- Security
- Occurrences
- 291
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"</{$tag}>"'.
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$accountInfo".156
- Category
- Maintainability
- Occurrences
- 156
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$accountInfo".
WARNINGSecurityMissing nonce verificationProcessing form data without nonce verification.153
- Category
- Security
- Occurrences
- 153
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityInterpolated SQL is not preparedUse placeholders and $wpdb->prepare(); found interpolated variable $attachment_id at WHERE attachment_id = $attachment_id\n102
- Category
- Security
- Occurrences
- 102
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable $attachment_id at WHERE attachment_id = $attachment_id\n
WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.99
- Category
- Maintainability
- Occurrences
- 99
- 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().91
- Category
- Maintainability
- Occurrences
- 91
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
WARNINGSecurityInput is not sanitizedDetected usage of a non-sanitized input variable: $_FILES[$i]["tmp_name"]79
- Category
- Security
- Occurrences
- 79
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_FILES[$i]["tmp_name"]
WARNINGSecurityRequest data is not unslashed$_GET['action'] not unslashed before sanitization. Use wp_unslash() or similar69
- Category
- Security
- Occurrences
- 69
- Severity
- warning
Sample message
$_GET['action'] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGSecurityDatabase parameter is not escapedUnescaped parameter $cache_table used in $wpdb->get_results()60
- Category
- Security
- Occurrences
- 60
- Severity
- warning
Sample message
Unescaped parameter $cache_table used in $wpdb->get_results()
WARNINGSecurityInput is not validatedDetected usage of a possibly undefined superglobal array index: $_FILES[$i]["tmp_name"]. Check that the array index exists before using it.47
- Category
- Security
- Occurrences
- 47
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_FILES[$i]["tmp_name"]. Check that the array index exists before using it.
Show 15 moreShow less
ERRORMaintainabilitydate date45
- Category
- Maintainability
- Occurrences
- 45
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
ERRORMaintainabilityOffloaded Content41
- Category
- Maintainability
- Occurrences
- 41
- Severity
- error
Sample message
Offloading images, js, css, and other scripts to your servers or any remote service is disallowed.
ERRORMaintainabilitywp function not compatible with requires wp38
- Category
- Maintainability
- Occurrences
- 38
- Severity
- error
Sample message
Function "delete_post_thumbnail()" requires WordPress 3.3.0, but your plugin minimum supported version is WordPress 3.0.1.
WARNINGMaintainabilityNot In Footer36
- Category
- Maintainability
- Occurrences
- 36
- Severity
- warning
Sample message
In footer ($in_footer) is not set explicitly wp_enqueue_script; It is recommended to load scripts in the footer. Please set this value to `true` to load it in the footer, or explicitly `false` if it should be loaded in the header.
ERRORMaintainabilityNo Explicit Version34
- Category
- Maintainability
- Occurrences
- 34
- Severity
- error
Sample message
Version parameter is not explicitly set or has been set to an equivalent of "false" for wp_enqueue_script; This means that the WordPress core version will be used which is not recommended for plugin or theme development.
WARNINGMaintainabilityMissing Version33
- Category
- Maintainability
- Occurrences
- 33
- Severity
- warning
Sample message
Resource version not set in call to wp_enqueue_style(). This means new versions of the style may not always be loaded due to browser caching.
ERRORSecuritySetting is missing a sanitization callback28
- Category
- Security
- Occurrences
- 28
- Severity
- error
Sample message
Sanitization missing for register_setting().
WARNINGMaintainabilitySchema Change19
- Category
- Maintainability
- Occurrences
- 19
- Severity
- warning
Sample message
Attempting a database schema change is discouraged.
WARNINGSecurityNonce verification recommended19
- Category
- Security
- Occurrences
- 19
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGMaintainabilityNon-prefixed class17
- Category
- Maintainability
- Occurrences
- 17
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "ConflictPlugins".
ERRORI18nMissing Arg Domain14
- Category
- I18n
- Occurrences
- 14
- Severity
- error
Sample message
Missing $domain parameter in function call to __().
ERRORMaintainabilityparse url parse url11
- Category
- Maintainability
- Occurrences
- 11
- Severity
- error
Sample message
parse_url() is discouraged because of inconsistency in the output across PHP versions; use wp_parse_url() instead.
ERRORSecurityDatabase parameter is not escaped9
- Category
- Security
- Occurrences
- 9
- Severity
- error
Sample message
Unescaped parameter $excluded_statuses used in $wpdb->get_var()\n$excluded_statuses assigned unsafely at line 7433.
ERRORSecurityUnsafe printing function9
- Category
- Security
- Occurrences
- 9
- Severity
- error
Sample message
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
ERRORSecuritySQL query is not prepared8
- Category
- Security
- Occurrences
- 8
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $query
External Connections
Potential connections found in static code analysis.
Outbound calls
90
External assets
49
Incoming endpoints
49
Notable Domains
Platform / Reference Domains
External Asset Domains
Incoming Endpoints
No public endpoints detected.
Admin AJAX endpoints49
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
37 more hidden
Score History
First score snapshot
v8.2.4
23
Latest
- Findings
- 1,620
- Errors
- 616
- Warnings
- 1,004
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 23 | 1,620 | 616 | 1,004 | v8.2.4 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.