Accept donations and begin fundraising with GiveWP, the highest rated WordPress donation plugin for online giving.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Security
4,429
12 issue groups
Maintainability
1,787
12 issue groups
I18n
461
1 issue group
ERRORSecurityOutput Not EscapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" data-rf-row-count=\"{$fields_count}\""'.1,558
- Category
- Security
- Occurrences
- 1,558
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" data-rf-row-count=\"{$fields_count}\""'.
WARNINGSecurityRecommendedProcessing form data without nonce verification.722
- Category
- Security
- Occurrences
- 722
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGMaintainabilityNon Prefixed Variable FoundGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$actionText".660
- Category
- Maintainability
- Occurrences
- 660
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$actionText".
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.461
- Category
- I18n
- Occurrences
- 461
- 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.
ERRORSecurityUnsafe Printing FunctionAll output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.458
- Category
- Security
- Occurrences
- 458
- Severity
- error
Sample message
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
WARNINGSecurityMissing Unslash$_COOKIE['give_nl'] not unslashed before sanitization. Use wp_unslash() or similar394
- Category
- Security
- Occurrences
- 394
- Severity
- warning
Sample message
$_COOKIE['give_nl'] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGSecurityInput Not SanitizedDetected usage of a non-sanitized input variable: $_COOKIE['give_nl']368
- Category
- Security
- Occurrences
- 368
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_COOKIE['give_nl']
WARNINGSecurityMissingProcessing form data without nonce verification.315
- Category
- Security
- Occurrences
- 315
- Severity
- warning
Sample message
Processing form data without nonce verification.
ERRORMaintainabilitydate datedate() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.266
- Category
- Maintainability
- Occurrences
- 266
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.218
- Category
- Maintainability
- Occurrences
- 218
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
Show 15 moreShow less
ERRORSecurityException Not Escaped211
- Category
- Security
- Occurrences
- 211
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"$eagerLoadedModelClass must be an instance of "'.
WARNINGMaintainabilityNo Caching207
- Category
- Maintainability
- Occurrences
- 207
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
WARNINGSecurityInput Not Validated162
- Category
- Security
- Occurrences
- 162
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_FILES[$this->field->getName()]. Check that the array index exists before using it.
ERRORMaintainabilitymissing direct file access protection137
- Category
- Maintainability
- Occurrences
- 137
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
WARNINGSecurityInterpolated Not Prepared103
- Category
- Security
- Occurrences
- 103
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable $column at "SELECT $column FROM $this->table_name WHERE $column_where = %s LIMIT 1;"
ERRORMaintainabilityEcho Found73
- Category
- Maintainability
- Occurrences
- 73
- Severity
- error
Sample message
Short PHP opening tag used with echo; expected "<?php echo $accessibleLabel ..." but found "<?= $accessibleLabel ..."
ERRORSecurityNot Prepared62
- Category
- Security
- Occurrences
- 62
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $comment_args
WARNINGMaintainabilityNon Prefixed Function Found53
- Category
- Maintainability
- Occurrences
- 53
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "_give_20_bc_get_new_payment_meta".
ERRORSecurityUnescaped DBParameter48
- Category
- Security
- Occurrences
- 48
- Severity
- error
Sample message
Unescaped parameter $auto_increment used in $wpdb->query()\n$auto_increment assigned unsafely at line 112.
WARNINGMaintainabilityerror log debug backtrace44
- Category
- Maintainability
- Occurrences
- 44
- Severity
- warning
Sample message
debug_backtrace() found. Debug code should not normally be used in production.
WARNINGMaintainabilityslow db query meta key39
- Category
- Maintainability
- Occurrences
- 39
- Severity
- warning
Sample message
Detected usage of meta_key, possible slow query.
WARNINGMaintainabilityslow db query meta value34
- Category
- Maintainability
- Occurrences
- 34
- Severity
- warning
Sample message
Detected usage of meta_value, possible slow query.
WARNINGMaintainabilityDynamic Hookname Found29
- Category
- Maintainability
- Occurrences
- 29
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "$_post['hook']".
WARNINGSecuritywp redirect wp redirect28
- Category
- Security
- Occurrences
- 28
- 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.
WARNINGMaintainabilityMissing Version27
- Category
- Maintainability
- Occurrences
- 27
- 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.
Score History
First score snapshot
v4.15.4
20
Latest
- Findings
- 7,015
- Errors
- 3,435
- Warnings
- 3,580
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 20 | 7,015 | 3,435 | 3,580 | v4.15.4 | 2.0.0 |