Sender is an all-in-one email & SMS marketing platform designed keeping the challenges of ecommerce and small businesses in mind.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Security
238
12 issue groups
Maintainability
137
12 issue groups
I18n
5
1 issue group
ERRORSecurityUnsafe Printing FunctionAll output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.58
- Category
- Security
- Occurrences
- 58
- 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 Variable FoundGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$availableSettings".40
- Category
- Maintainability
- Occurrences
- 40
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$availableSettings".
WARNINGSecurityMissingProcessing form data without nonce verification.36
- Category
- Security
- Occurrences
- 36
- Severity
- warning
Sample message
Processing form data without nonce verification.
ERRORSecurityOutput Not EscapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<div class='sender-form-field' data-sender-form-id='$code'></div>"'.33
- Category
- Security
- Occurrences
- 33
- 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='sender-form-field' data-sender-form-id='$code'></div>"'.
WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.31
- Category
- Maintainability
- Occurrences
- 31
- 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().31
- Category
- Maintainability
- Occurrences
- 31
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
WARNINGSecurityMissing Unslash$_COOKIE['sender_recovered_cart'] not unslashed before sanitization. Use wp_unslash() or similar26
- Category
- Security
- Occurrences
- 26
- Severity
- warning
Sample message
$_COOKIE['sender_recovered_cart'] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGSecurityInterpolated Not PreparedUse placeholders and $wpdb->prepare(); found interpolated variable $chunkSize at LIMIT $chunkSize\n24
- Category
- Security
- Occurrences
- 24
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable $chunkSize at LIMIT $chunkSize\n
WARNINGSecurityInput Not SanitizedDetected usage of a non-sanitized input variable: $_COOKIE['sender_recovered_cart']24
- Category
- Security
- Occurrences
- 24
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_COOKIE['sender_recovered_cart']
ERRORSecurityUnescaped DBParameterUnescaped parameter $cartsSql used in $wpdb->query()\n$cartsSql assigned unsafely at line 23.11
- Category
- Security
- Occurrences
- 11
- Severity
- error
Sample message
Unescaped parameter $cartsSql used in $wpdb->query()\n$cartsSql assigned unsafely at line 23.
Show 15 moreShow less
ERRORMaintainabilityEcho Found9
- Category
- Maintainability
- Occurrences
- 9
- Severity
- error
Sample message
Short PHP opening tag used with echo; expected "<?php echo $groupId ..." but found "<?= $groupId ..."
WARNINGSecurityUnescaped DBParameter7
- Category
- Security
- Occurrences
- 7
- Severity
- warning
Sample message
Unescaped parameter $sender_carts used in $wpdb->get_results()\n$sender_carts assigned unsafely at line 21.
ERRORSecurityNot Prepared7
- Category
- Security
- Occurrences
- 7
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $cartsSql
WARNINGMaintainabilitySchema Change5
- Category
- Maintainability
- Occurrences
- 5
- Severity
- warning
Sample message
Attempting a database schema change is discouraged.
WARNINGSecurityRecommended5
- Category
- Security
- Occurrences
- 5
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityInput Not Validated5
- Category
- Security
- Occurrences
- 5
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_POST['billing_first_name']. Check that the array index exists before using it.
ERRORI18nMissing Arg Domain5
- Category
- I18n
- Occurrences
- 5
- Severity
- error
Sample message
Missing $domain parameter in function call to __().
ERRORMaintainabilitymissing direct file access protection5
- Category
- Maintainability
- Occurrences
- 5
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
ERRORMaintainabilitydate date3
- Category
- Maintainability
- Occurrences
- 3
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
WARNINGMaintainabilityerror log error log3
- Category
- Maintainability
- Occurrences
- 3
- Severity
- warning
Sample message
error_log() found. Debug code should not normally be used in production.
ERRORMaintainabilitystrip tags strip tags3
- Category
- Maintainability
- Occurrences
- 3
- Severity
- error
Sample message
strip_tags() is discouraged. Use the more comprehensive wp_strip_all_tags() instead.
ERRORMaintainabilityNon Enqueued Stylesheet3
- Category
- Maintainability
- Occurrences
- 3
- Severity
- error
Sample message
Stylesheets must be registered/enqueued via wp_enqueue_style()
ERRORMaintainabilityOffloaded Content2
- Category
- Maintainability
- Occurrences
- 2
- Severity
- error
Sample message
Offloading images, js, css, and other scripts to your servers or any remote service is disallowed.
WARNINGMaintainabilityNon Prefixed Hookname Found2
- Category
- Maintainability
- Occurrences
- 2
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "admin_notices".
WARNINGSecuritywp redirect wp redirect2
- Category
- Security
- Occurrences
- 2
- 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.
Score History
First score snapshot
v2.10.19
29
Latest
- Findings
- 392
- Errors
- 146
- Warnings
- 246
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 29 | 392 | 146 | 246 | v2.10.19 | 2.0.0 |