The 100% beginner friendly WordPress form builder. Drag & drop form fields to build beautiful, professional contact forms in minutes.
Category Scores
Top Issues by Category
security1,005
maintainability848
Issues Details
2,291 issues found in latest scan
Processing form data without nonce verification.
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "EDD_SL_Plugin_Updater".
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<div id='$error_id' class='error'><p>$error</p></div>"'.
$_COOKIE[WP_SESSION_COOKIE] not unslashed before sanitization. Use wp_unslash() or similar
Detected usage of a non-sanitized input variable: $_COOKIE[WP_SESSION_COOKIE]
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.
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
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.
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'nf_services_installed_' . $plugin".
Multiple placeholders in translatable strings should be ordered. Expected "%1$d, %2$d", but got "%d, %d" in 'Action with ID %d not found in form %d'.
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$addon".
Detected usage of a possibly undefined superglobal array index: $_FILES['nf_import_fields']['tmp_name']. Check that the array index exists before using it.
Mismatched text domain. Expected 'ninja-forms' but got "ninja-froms".
Use placeholders and $wpdb->prepare(); found $anon_subs_query
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.
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
Unescaped parameter $actions_meta_sql[ 'insert' ] used in $wpdb->query()\n$actions_meta_sql[ 'insert' ] used without escaping.
Processing form data without nonce verification.
Use placeholders and $wpdb->prepare(); found interpolated variable $entriesTable at $entriesTable \n
Function "wp_get_abilities()" requires WordPress 6.9.0, but your plugin minimum supported version is WordPress 6.7.0.
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"' in '{$infix}'."'.
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "NF_Abstracts_Extension".
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
error_log() found. Debug code should not normally be used in production.
| Code | Type | Message | Count |
|---|---|---|---|
| WordPress.Security.NonceVerification.Recommended | WARNING | Processing form data without nonce verification. | 281 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound | WARNING | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "EDD_SL_Plugin_Updater". | 214 |
| WordPress.Security.EscapeOutput.OutputNotEscaped | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<div id='$error_id' class='error'><p>$error</p></div>"'. | 165 |
| WordPress.Security.ValidatedSanitizedInput.MissingUnslash | WARNING | $_COOKIE[WP_SESSION_COOKIE] not unslashed before sanitization. Use wp_unslash() or similar | 150 |
| WordPress.Security.ValidatedSanitizedInput.InputNotSanitized | WARNING | Detected usage of a non-sanitized input variable: $_COOKIE[WP_SESSION_COOKIE] | 146 |
| WordPress.WP.I18n.MissingTranslatorsComment | ERROR | 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. | 138 |
| WordPress.DB.DirectDatabaseQuery.DirectQuery | WARNING | Use of a direct database call is discouraged. | 108 |
| WordPress.DB.DirectDatabaseQuery.NoCaching | WARNING | Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete(). | 106 |
| WordPress.WP.EnqueuedResourceParameters.MissingVersion | WARNING | 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. | 87 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound | WARNING | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'nf_services_installed_' . $plugin". | 73 |
| WordPress.WP.I18n.UnorderedPlaceholdersText | ERROR | Multiple placeholders in translatable strings should be ordered. Expected "%1$d, %2$d", but got "%d, %d" in 'Action with ID %d not found in form %d'. | 70 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound | WARNING | Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$addon". | 63 |
| WordPress.Security.ValidatedSanitizedInput.InputNotValidated | WARNING | Detected usage of a possibly undefined superglobal array index: $_FILES['nf_import_fields']['tmp_name']. Check that the array index exists before using it. | 63 |
| WordPress.WP.I18n.TextDomainMismatch | ERROR | Mismatched text domain. Expected 'ninja-forms' but got "ninja-froms". | 59 |
| WordPress.DB.PreparedSQL.NotPrepared | ERROR | Use placeholders and $wpdb->prepare(); found $anon_subs_query | 55 |
| WordPress.WP.EnqueuedResourceParameters.NotInFooter | WARNING | 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. | 55 |
| missing_direct_file_access_protection | ERROR | PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit; | 47 |
| PluginCheck.Security.DirectDB.UnescapedDBParameter | ERROR | Unescaped parameter $actions_meta_sql[ 'insert' ] used in $wpdb->query()\n$actions_meta_sql[ 'insert' ] used without escaping. | 39 |
| WordPress.Security.NonceVerification.Missing | WARNING | Processing form data without nonce verification. | 39 |
| WordPress.DB.PreparedSQL.InterpolatedNotPrepared | WARNING | Use placeholders and $wpdb->prepare(); found interpolated variable $entriesTable at $entriesTable \n | 37 |
| wp_function_not_compatible_with_requires_wp | ERROR | Function "wp_get_abilities()" requires WordPress 6.9.0, but your plugin minimum supported version is WordPress 6.7.0. | 34 |
| WordPress.Security.EscapeOutput.ExceptionNotEscaped | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"' in '{$infix}'."'. | 30 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound | WARNING | Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "NF_Abstracts_Extension". | 24 |
| WordPress.DateTime.RestrictedFunctions.date_date | ERROR | date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead. | 23 |
| WordPress.PHP.DevelopmentFunctions.error_log_error_log | WARNING | error_log() found. Debug code should not normally be used in production. | 14 |
Latest Snapshot
Findings
2,291
Errors
755
Warnings
1,536
Score History
First score snapshot
First scan completed Jun 19, 2026
v3.14.6 · Plugin Check 2.0.0 · Model 2026.06-mvp-static-v2
Jun 19, 2026
v3.14.6
23
Latest
- Findings
- 2,291
- Errors
- 755
- Warnings
- 1,536
- Plugin Check
- 2.0.0
- Model
- 2026.06-mvp-static-v2
| Scan | Score | Findings | Errors | Warnings | Plugin | Plugin Check | Model |
|---|---|---|---|---|---|---|---|
| Jun 19, 2026Latest | 23 | 2,291 | 755 | 1,536 | v3.14.6 | 2.0.0 | 2026.06-mvp-static-v2 |