Powerful, highly customizable and versatile ratings plugin to allow your users to vote for anything you want.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Security
1,667
11 issue groups
Maintainability
706
11 issue groups
I18n
122
3 issue groups
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<li><strong>Group:</strong> $group - ( "'.744
- Category
- Security
- Occurrences
- 744
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<li><strong>Group:</strong> $group - ( "'.
ERRORSecurityUnsafe printing functionAll output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.532
- Category
- Security
- Occurrences
- 532
- Severity
- error
Sample message
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$__gdrts_addon_comments".387
- Category
- Maintainability
- Occurrences
- 387
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$__gdrts_addon_comments".
WARNINGMaintainabilityNon-prefixed functionFunctions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "_gdrts_embed_like_this".141
- Category
- Maintainability
- Occurrences
- 141
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "_gdrts_embed_like_this".
WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.129
- Category
- Security
- Occurrences
- 129
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityRequest data is not unslashed$_COOKIE[$key] not unslashed before sanitization. Use wp_unslash() or similar74
- Category
- Security
- Occurrences
- 74
- Severity
- warning
Sample message
$_COOKIE[$key] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGSecurityInput is not sanitizedDetected usage of a non-sanitized input variable: $_COOKIE[$key]73
- Category
- Security
- Occurrences
- 73
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_COOKIE[$key]
ERRORI18nText Domain MismatchMismatched text domain. Expected 'gd-rating-system' but got "d4plib".59
- Category
- I18n
- Occurrences
- 59
- Severity
- error
Sample message
Mismatched text domain. Expected 'gd-rating-system' but got "d4plib".
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.50
- Category
- I18n
- Occurrences
- 50
- 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;43
- Category
- Maintainability
- Occurrences
- 43
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
Show 15 moreShow less
WARNINGSecurityInput is not validated36
- Category
- Security
- Occurrences
- 36
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_FILES['import_file']['tmp_name']. Check that the array index exists before using it.
WARNINGSecurityMissing nonce verification34
- Category
- Security
- Occurrences
- 34
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGMaintainabilityNon-prefixed class32
- Category
- Maintainability
- Occurrences
- 32
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "d4pCheckboxRadioWalker".
ERRORMaintainabilitydate date21
- Category
- Maintainability
- Occurrences
- 21
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
WARNINGSecuritywp redirect wp redirect20
- Category
- Security
- Occurrences
- 20
- 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.
WARNINGMaintainabilityDynamic hook name17
- Category
- Maintainability
- Occurrences
- 17
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "$this->base.'_'.$this->scope.'_settings_get'".
WARNINGMaintainabilityNon-prefixed constant17
- Category
- Maintainability
- Occurrences
- 17
- Severity
- warning
Sample message
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "D4PLIB_CACERT_PATH".
WARNINGMaintainabilityDirect Query13
- Category
- Maintainability
- Occurrences
- 13
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
WARNINGMaintainabilityNo Caching13
- Category
- Maintainability
- Occurrences
- 13
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
ERRORI18nUnordered Placeholders Text13
- Category
- I18n
- Occurrences
- 13
- Severity
- error
Sample message
Multiple placeholders in translatable strings should be ordered. Expected "%1$s, %2$s", but got "%s, %s" in '%s %s'.
WARNINGMaintainabilityDiscouraged PHP function12
- Category
- Maintainability
- Occurrences
- 12
- Severity
- warning
Sample message
The use of function ini_set() is discouraged
WARNINGMaintainabilityNon-prefixed hook name10
- Category
- Maintainability
- Occurrences
- 10
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "check_ajax_referer".
WARNINGSecurityDatabase parameter is not escaped9
- Category
- Security
- Occurrences
- 9
- Severity
- warning
Sample message
Unescaped parameter $table used in $wpdb->get_results()
ERRORSecuritySQL query is not prepared9
- Category
- Security
- Occurrences
- 9
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $query
ERRORSecurityDatabase parameter is not escaped7
- Category
- Security
- Occurrences
- 7
- Severity
- error
Sample message
Unescaped parameter $query used in $wpdb->get_results()\n$query used without escaping.
External Connections
Potential connections found in static code analysis.
Outbound calls
130
External assets
2
Incoming endpoints
5
Notable Domains
Platform / Reference Domains
External Asset Domains
Incoming Endpoints
wp_ajax
Admin AJAX endpoints4
wp_ajax
wp_ajax
wp_ajax
wp_ajax
Score History
First score snapshot
v3.7
25
Latest
- Findings
- 2,554
- Errors
- 1,511
- Warnings
- 1,043
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 25 | 2,554 | 1,511 | 1,043 | v3.7 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.