Payments & Invoicing plugin for WordPress to quickly and easily sell online. Create Buy Now buttons or inline checkout forms in seconds to accept …
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Maintainability
705
8 issue groups
Security
629
13 issue groups
I18n
201
4 issue groups
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$_id".456
- Category
- Maintainability
- Occurrences
- 456
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$_id".
WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.177
- Category
- Security
- Occurrences
- 177
- Severity
- warning
Sample message
Processing form data without nonce verification.
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.155
- Category
- I18n
- Occurrences
- 155
- 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.
WARNINGSecurityRequest data is not unslashed$_GET[$element_id] not unslashed before sanitization. Use wp_unslash() or similar110
- Category
- Security
- Occurrences
- 110
- Severity
- warning
Sample message
$_GET[$element_id] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.84
- Category
- Maintainability
- Occurrences
- 84
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
WARNINGSecurityMissing nonce verificationProcessing form data without nonce verification.83
- Category
- Security
- Occurrences
- 83
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGMaintainabilityNo CachingDirect database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().64
- Category
- Maintainability
- Occurrences
- 64
- 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['file']['name']58
- Category
- Security
- Occurrences
- 58
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_FILES['file']['name']
WARNINGSecurityInterpolated SQL is not preparedUse placeholders and $wpdb->prepare(); found interpolated variable $column at "SELECT $column FROM $this->table_name WHERE $column_where = %s LIMIT 1;"55
- Category
- Security
- Occurrences
- 55
- 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;"
ERRORMaintainabilitydate datedate() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.38
- Category
- Maintainability
- Occurrences
- 38
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
Show 15 moreShow less
ERRORSecuritySQL query is not prepared35
- Category
- Security
- Occurrences
- 35
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $found_customers_query
WARNINGMaintainabilityNon-prefixed hook name32
- Category
- Maintainability
- Occurrences
- 32
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'get_template_part_' . $slug".
WARNINGSecurityDatabase parameter is not escaped25
- Category
- Security
- Occurrences
- 25
- Severity
- warning
Sample message
Unescaped parameter $customers_table used in $wpdb->get_results()\n$customers_table assigned unsafely at line 677.
ERRORSecurityException output is not escaped25
- Category
- Security
- Occurrences
- 25
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$key'.
ERRORI18nNon Singular String Literal Text25
- Category
- I18n
- Occurrences
- 25
- Severity
- error
Sample message
The $text parameter must be a single text string literal. Found: $body
WARNINGSecurityInput is not validated19
- Category
- Security
- Occurrences
- 19
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_FILES['file']['name']. Check that the array index exists before using it.
WARNINGMaintainabilityslow db query meta query12
- Category
- Maintainability
- Occurrences
- 12
- Severity
- warning
Sample message
Detected usage of meta_query, possible slow query.
ERRORSecurityOutput is not escaped12
- Category
- Security
- Occurrences
- 12
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<div class='notice notice-{$type} is-dismissible'><p>{$message}</p></div>"'.
ERRORI18nMissing Singular Placeholder12
- Category
- I18n
- Occurrences
- 12
- Severity
- error
Sample message
Missing singular placeholder, needed for some languages. See https://codex.wordpress.org/I18n_for_WordPress_Developers#Plurals
ERRORSecurityUnsafe printing function11
- Category
- Security
- Occurrences
- 11
- Severity
- error
Sample message
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
ERRORMaintainabilitystrip tags strip tags11
- Category
- Maintainability
- Occurrences
- 11
- Severity
- error
Sample message
strip_tags() is discouraged. Use the more comprehensive wp_strip_all_tags() instead.
WARNINGSecuritywp redirect wp redirect10
- Category
- Security
- Occurrences
- 10
- 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.
ERRORSecurityDatabase parameter is not escaped9
- Category
- Security
- Occurrences
- 9
- Severity
- error
Sample message
Unescaped parameter $db_info['meta_id_field'] used in $wpdb->get_results()\n$db_info['meta_id_field'] used without escaping.
ERRORI18nMissing Arg Domain9
- Category
- I18n
- Occurrences
- 9
- Severity
- error
Sample message
Missing $domain parameter in function call to __().
WARNINGMaintainabilityNo PHP code found8
- Category
- Maintainability
- Occurrences
- 8
- 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.
Score History
First score snapshot
v2.8.52
23
Latest
- Findings
- 1,628
- Errors
- 370
- Warnings
- 1,258
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 23 | 1,628 | 370 | 1,258 | v2.8.52 | 2.0.0 |