Slim version of Jetpack unlinked from WordPress.com :) Supercharge your self-hosted wp site even you're NOT WP.COM users.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Security
1,518
9 issue groups
I18n
1,435
2 issue groups
Maintainability
1,422
14 issue groups
ERRORI18nText Domain MismatchMismatched text domain. Expected 'slimjetpack' but got 'jetpack'.1,288
- Category
- I18n
- Occurrences
- 1,288
- Severity
- error
Sample message
Mismatched text domain. Expected 'slimjetpack' but got 'jetpack'.
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attachment".857
- Category
- Maintainability
- Occurrences
- 857
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attachment".
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"$callback("'.650
- Category
- Security
- Occurrences
- 650
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"$callback("'.
WARNINGSecurityInput is not sanitizedDetected usage of a non-sanitized input variable: $_COOKIE['comment_author_email_' . COOKIEHASH]196
- Category
- Security
- Occurrences
- 196
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_COOKIE['comment_author_email_' . COOKIEHASH]
WARNINGSecurityRequest data is not unslashed$_COOKIE['comment_author_email_' . COOKIEHASH] not unslashed before sanitization. Use wp_unslash() or similar192
- Category
- Security
- Occurrences
- 192
- Severity
- warning
Sample message
$_COOKIE['comment_author_email_' . COOKIEHASH] not unslashed before sanitization. Use wp_unslash() or similar
ERRORSecurityUnsafe printing functionAll output should be run through an escaping function (like echo esc_html_x() or echo esc_attr_x()), found '_ex'.178
- Category
- Security
- Occurrences
- 178
- 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'.
WARNINGMaintainabilityNon-prefixed functionFunctions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "AtD_addbuttons".148
- Category
- Maintainability
- Occurrences
- 148
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "AtD_addbuttons".
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.147
- Category
- I18n
- Occurrences
- 147
- 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.
ERRORMaintainabilityMissing direct file access protectionPHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;122
- Category
- Maintainability
- Occurrences
- 122
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.109
- Category
- Security
- Occurrences
- 109
- Severity
- warning
Sample message
Processing form data without nonce verification.
Show 15 moreShow less
WARNINGSecurityInput is not validated99
- Category
- Security
- Occurrences
- 99
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_FILES['image_0']['name']. Check that the array index exists before using it.
WARNINGMaintainabilityNon-prefixed hook name83
- Category
- Maintainability
- Occurrences
- 83
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "atd_http_post_error".
WARNINGSecurityMissing nonce verification67
- Category
- Security
- Occurrences
- 67
- Severity
- warning
Sample message
Processing form data without nonce verification.
ERRORMaintainabilitybadly named files38
- Category
- Maintainability
- Occurrences
- 38
- Severity
- error
Sample message
File and folder names must not contain spaces or special characters.
WARNINGMaintainabilityNon-prefixed class29
- Category
- Maintainability
- Occurrences
- 29
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "AudioShortcode".
WARNINGMaintainabilityNot In Footer23
- Category
- Maintainability
- Occurrences
- 23
- 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.
WARNINGMaintainabilityMissing Version20
- Category
- Maintainability
- Occurrences
- 20
- 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.
ERRORMaintainabilityNot Allowed19
- Category
- Maintainability
- Occurrences
- 19
- Severity
- error
Sample message
Use of heredoc syntax (<<<) is not allowed; use standard strings or inline HTML instead
ERRORMaintainabilitystrip tags strip tags19
- Category
- Maintainability
- Occurrences
- 19
- Severity
- error
Sample message
strip_tags() is discouraged. Use the more comprehensive wp_strip_all_tags() instead.
WARNINGMaintainabilityNon-prefixed constant18
- Category
- Maintainability
- Occurrences
- 18
- Severity
- warning
Sample message
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "ATD_VERSION".
WARNINGMaintainabilityDirect Query17
- Category
- Maintainability
- Occurrences
- 17
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
WARNINGMaintainabilityNo Caching17
- Category
- Maintainability
- Occurrences
- 17
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
WARNINGSecuritywp redirect wp redirect14
- Category
- Security
- Occurrences
- 14
- 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.
ERRORSecurityException output is not escaped13
- Category
- Security
- Occurrences
- 13
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"$msg: $loc"'.
ERRORMaintainabilityNon Enqueued Script12
- Category
- Maintainability
- Occurrences
- 12
- Severity
- error
Sample message
Scripts must be registered/enqueued via wp_enqueue_script()
Score History
First score snapshot
v2.7.0.1
22
Latest
- Findings
- 4,533
- Errors
- 2,586
- Warnings
- 1,947
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 22 | 4,533 | 2,586 | 1,947 | v2.7.0.1 | 2.0.0 |