The easiest & fastest Contact Form on WordPress. Multiple templates, drag-&-drop live builder, submission listing, reCaptcha & more!
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Security
648
6 issue groups
Maintainability
406
12 issue groups
I18n
204
7 issue groups
ERRORSecurityOutput Not EscapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" ⚠️ FOUND: {$file} still uses maybe_unserialize()\n"'.334
- Category
- Security
- Occurrences
- 334
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" ⚠️ FOUND: {$file} still uses maybe_unserialize()\n"'.
ERRORSecurityUnsafe Printing FunctionAll output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.206
- Category
- Security
- Occurrences
- 206
- 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: "$base".130
- Category
- Maintainability
- Occurrences
- 130
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$base".
WARNINGSecurityRecommendedProcessing form data without nonce verification.64
- Category
- Security
- Occurrences
- 64
- 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.58
- Category
- I18n
- Occurrences
- 58
- 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;50
- Category
- Maintainability
- Occurrences
- 50
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.48
- Category
- Maintainability
- Occurrences
- 48
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
ERRORI18nText Domain MismatchMismatched text domain. Expected 'weforms' but got 'Share'.48
- Category
- I18n
- Occurrences
- 48
- Severity
- error
Sample message
Mismatched text domain. Expected 'weforms' but got 'Share'.
WARNINGMaintainabilityNo CachingDirect database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().42
- Category
- Maintainability
- Occurrences
- 42
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
WARNINGMaintainabilityNon Prefixed Hookname FoundHook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "dokan_dashboard_content_after".38
- Category
- Maintainability
- Occurrences
- 38
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "dokan_dashboard_content_after".
Show 15 moreShow less
WARNINGMaintainabilityNon Prefixed Function Found36
- Category
- Maintainability
- Occurrences
- 36
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "_recaptcha_aes_encrypt".
ERRORI18nUnordered Placeholders Text32
- Category
- I18n
- Occurrences
- 32
- Severity
- error
Sample message
Multiple placeholders in translatable strings should be ordered. Expected "%1$d, %2$s", but got "%d, %s" in '#%d New submission on %s'.
ERRORSecurityNot Prepared24
- Category
- Security
- Occurrences
- 24
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $query
ERRORI18nNon Singular String Literal Text24
- Category
- I18n
- Occurrences
- 24
- Severity
- error
Sample message
The $text parameter must be a single text string literal. Found: $client_name
ERRORI18nNo Empty Strings22
- Category
- I18n
- Occurrences
- 22
- Severity
- error
Sample message
The $text text string should have translatable content. Found: ''
ERRORMaintainabilitydate date12
- Category
- Maintainability
- Occurrences
- 12
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
ERRORMaintainabilitystrip tags strip tags12
- Category
- Maintainability
- Occurrences
- 12
- Severity
- error
Sample message
strip_tags() is discouraged. Use the more comprehensive wp_strip_all_tags() instead.
WARNINGMaintainabilityMissing Version12
- Category
- Maintainability
- Occurrences
- 12
- 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.
ERRORI18nInterpolated Variable Text12
- Category
- I18n
- Occurrences
- 12
- Severity
- error
Sample message
The $text parameter must not contain interpolated variables or expressions. Found: {$remaining_entries}
ERRORSecurityException Not Escaped10
- Category
- Security
- Occurrences
- 10
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$context['cssRule']['selector']'.
WARNINGSecurityInput Not Sanitized10
- Category
- Security
- Occurrences
- 10
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_FILES['importFile']
ERRORMaintainabilityNon Enqueued Script10
- Category
- Maintainability
- Occurrences
- 10
- Severity
- error
Sample message
Scripts must be registered/enqueued via wp_enqueue_script()
WARNINGMaintainabilityNon Prefixed Class Found8
- Category
- Maintainability
- Occurrences
- 8
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "Emogrifier".
ERRORMaintainabilityunlink unlink8
- Category
- Maintainability
- Occurrences
- 8
- Severity
- error
Sample message
unlink() is discouraged. Use wp_delete_file() to delete a file.
ERRORI18nNon Singular String Literal Domain8
- Category
- I18n
- Occurrences
- 8
- Severity
- error
Sample message
The $domain parameter must be a single text string literal. Found: $field['weforms']
Score History
First score snapshot
v1.6.28
25
Latest
- Findings
- 1,366
- Errors
- 916
- Warnings
- 450
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 25 | 1,366 | 916 | 450 | v1.6.28 | 2.0.0 |