Create flexible contact forms, survey forms, payment forms, and user authentication forms using a drag-and-drop form builder plugin for WordPress.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Security
247
10 issue groups
Maintainability
223
13 issue groups
I18n
55
2 issue groups
WARNINGSecurityRecommendedProcessing form data without nonce verification.72
- Category
- Security
- Occurrences
- 72
- Severity
- warning
Sample message
Processing form data without nonce verification.
ERRORMaintainabilitywp function not compatible with requires wpFunction "wp_cache_flush_group()" requires WordPress 6.1.0, but your plugin minimum supported version is WordPress 5.0.0.48
- Category
- Maintainability
- Occurrences
- 48
- Severity
- error
Sample message
Function "wp_cache_flush_group()" requires WordPress 6.1.0, but your plugin minimum supported version is WordPress 5.0.0.
WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.45
- Category
- Maintainability
- Occurrences
- 45
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
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.38
- Category
- I18n
- Occurrences
- 38
- 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.
ERRORSecurityOutput Not EscapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$args['after_title']'.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 '$args['after_title']'.
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().
WARNINGMaintainabilityNon Prefixed Hookname FoundHook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "breeze_clear_all_cache".29
- Category
- Maintainability
- Occurrences
- 29
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "breeze_clear_all_cache".
WARNINGSecurityInterpolated Not PreparedUse placeholders and $wpdb->prepare(); found interpolated variable $table_name at "SELECT content FROM $table_name WHERE form_id = %d"28
- Category
- Security
- Occurrences
- 28
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable $table_name at "SELECT content FROM $table_name WHERE form_id = %d"
WARNINGSecurityUnescaped DBParameterUnescaped parameter $pay_table used in $wpdb->get_row()\n$pay_table assigned unsafely at line 3937.25
- Category
- Security
- Occurrences
- 25
- Severity
- warning
Sample message
Unescaped parameter $pay_table used in $wpdb->get_row()\n$pay_table assigned unsafely at line 3937.
WARNINGSecurityMissingProcessing form data without nonce verification.25
- Category
- Security
- Occurrences
- 25
- Severity
- warning
Sample message
Processing form data without nonce verification.
Show 15 moreShow less
WARNINGSecurityInput Not Validated21
- Category
- Security
- Occurrences
- 21
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_FILES['async-upload']['name']. Check that the array index exists before using it.
WARNINGSecurityMissing Unslash19
- Category
- Security
- Occurrences
- 19
- Severity
- warning
Sample message
$_GET['sc'] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGMaintainabilityNot In Footer17
- Category
- Maintainability
- Occurrences
- 17
- Severity
- warning
Sample message
In footer ($in_footer) is not set explicitly wp_enqueue_script; It is recommended to load scripts in the footer. Please set this value to `true` to load it in the footer, or explicitly `false` if it should be loaded in the header.
ERRORI18nUnordered Placeholders Text17
- Category
- I18n
- Occurrences
- 17
- Severity
- error
Sample message
Multiple placeholders in translatable strings should be ordered. Expected "%1$s, %2$s", but got "%s, %s" in 'Error: server (%s) responded with an invalid request. responded code : %s '.
ERRORMaintainabilitydate date13
- Category
- Maintainability
- Occurrences
- 13
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
WARNINGSecurityInput Not Sanitized13
- Category
- Security
- Occurrences
- 13
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_FILES['async-upload']['tmp_name']
WARNINGMaintainabilityMissing Version12
- Category
- Maintainability
- Occurrences
- 12
- Severity
- warning
Sample message
Resource version not set in call to wp_register_script(). This means new versions of the script may not always be loaded due to browser caching.
WARNINGMaintainabilityNon Prefixed Variable Found7
- Category
- Maintainability
- Occurrences
- 7
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$dev_mode".
ERRORSecurityNot Prepared6
- Category
- Security
- Occurrences
- 6
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $query
ERRORSecurityUnescaped DBParameter5
- Category
- Security
- Occurrences
- 5
- Severity
- error
Sample message
Unescaped parameter $query used in $wpdb->get_results()\n$query assigned unsafely at line 5536.
WARNINGMaintainabilityNon Prefixed Function Found5
- Category
- Maintainability
- Occurrences
- 5
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "efb_get_addon_phrases".
ERRORMaintainabilityunlink unlink5
- Category
- Maintainability
- Occurrences
- 5
- Severity
- error
Sample message
unlink() is discouraged. Use wp_delete_file() to delete a file.
ERRORMaintainabilityOffloaded Content4
- Category
- Maintainability
- Occurrences
- 4
- Severity
- error
Sample message
Found call to wp_register_script() with external resource. Offloading scripts to your servers or any remote service is disallowed.
ERRORMaintainabilityfile system operations is writable4
- Category
- Maintainability
- Occurrences
- 4
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: is_writable().
WARNINGMaintainabilityDiscouraged3
- Category
- Maintainability
- Occurrences
- 3
- Severity
- warning
Sample message
The use of function ini_set() is discouraged
Score History
First score snapshot
v4.0.10
24
Latest
- Findings
- 556
- Errors
- 193
- Warnings
- 363
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 24 | 556 | 193 | 363 | v4.0.10 | 2.0.0 |