Advanced form builder plugin for Gutenberg. Create forms from the ground up, customize the existing ones, and style them up – all in one editor.
Category Scores
Top Issues by Category
i18n2,027
maintainability1,575
security58
supply_chain6
Issues Details
3,682 issues found in latest scan
Mismatched text domain. Expected 'jetformbuilder' but got 'jet-engine'.
Namespaces declared by a theme/plugin should start with the theme/plugin prefix. Found: "JFB_Compatibility".
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'jet-form-builder/action/after-post-' . $this->get_id()".
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$$global_key".
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
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.
Unescaped parameter $actions used in $wpdb->query()\n$actions assigned unsafely at line 16.
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "jet_fb_action_handler".
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"Parent control `$parent` not found in the controls stack."'.
Processing form data without nonce verification.
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "DOING_AJAX".
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
The "jfb/bricks/form/after" prefix is not a valid namespace/function/class/variable/constant prefix in PHP.
A function call to esc_html__() 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.
Detected usage of meta_key, possible slow query.
Detected usage of a non-sanitized input variable: $_REQUEST['_wpnonce']
Detected usage of a possibly undefined superglobal array index: $_REQUEST['_wpnonce']. Check that the array index exists before using it.
$_REQUEST['_wpnonce'] not unslashed before sanitization. Use wp_unslash() or similar
Using exclusionary parameters, like exclude, in calls to get_posts() should be done with caution, see https://wpvip.com/documentation/performance-improvements-by-removing-usage-of-post__not_in/ for more information.
Use placeholders and $wpdb->prepare(); found interpolated variable $limit at "SELECT post_id, meta_value FROM {$wpdb->postmeta} WHERE meta_key = '_jet_sm_controls_values' LIMIT $limit OFFSET $offset"
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "CX_Vue_UI".
| Code | Type | Message | Count |
|---|---|---|---|
| WordPress.WP.I18n.TextDomainMismatch | ERROR | Mismatched text domain. Expected 'jetformbuilder' but got 'jet-engine'. | 2,023 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedNamespaceFound | WARNING | Namespaces declared by a theme/plugin should start with the theme/plugin prefix. Found: "JFB_Compatibility". | 1,070 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound | WARNING | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'jet-form-builder/action/after-post-' . $this->get_id()". | 254 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound | WARNING | Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$$global_key". | 132 |
| missing_direct_file_access_protection | ERROR | PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit; | 30 |
| Internal.NoCodeFound | WARNING | 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. | 26 |
| PluginCheck.Security.DirectDB.UnescapedDBParameter | WARNING | Unescaped parameter $actions used in $wpdb->query()\n$actions assigned unsafely at line 16. | 19 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound | WARNING | Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "jet_fb_action_handler". | 18 |
| WordPress.Security.EscapeOutput.OutputNotEscaped | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"Parent control `$parent` not found in the controls stack."'. | 14 |
| WordPress.Security.NonceVerification.Recommended | WARNING | Processing form data without nonce verification. | 14 |
| badly_named_files | ERROR | File and folder names must not contain spaces or special characters. | 13 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedConstantFound | WARNING | Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "DOING_AJAX". | 7 |
| WordPress.DB.DirectDatabaseQuery.DirectQuery | WARNING | Use of a direct database call is discouraged. | 6 |
| hidden_files | ERROR | Hidden files are not permitted. | 6 |
| Squiz.PHP.DiscouragedFunctions.Discouraged | WARNING | The use of function ini_set() is discouraged | 5 |
| WordPress.DB.DirectDatabaseQuery.NoCaching | WARNING | Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete(). | 5 |
| WordPress.NamingConventions.PrefixAllGlobals.InvalidPrefixPassed | WARNING | The "jfb/bricks/form/after" prefix is not a valid namespace/function/class/variable/constant prefix in PHP. | 4 |
| WordPress.WP.I18n.MissingTranslatorsComment | ERROR | A function call to esc_html__() 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. | 4 |
| WordPress.DB.SlowDBQuery.slow_db_query_meta_key | WARNING | Detected usage of meta_key, possible slow query. | 3 |
| WordPress.Security.ValidatedSanitizedInput.InputNotSanitized | WARNING | Detected usage of a non-sanitized input variable: $_REQUEST['_wpnonce'] | 3 |
| WordPress.Security.ValidatedSanitizedInput.InputNotValidated | WARNING | Detected usage of a possibly undefined superglobal array index: $_REQUEST['_wpnonce']. Check that the array index exists before using it. | 3 |
| WordPress.Security.ValidatedSanitizedInput.MissingUnslash | WARNING | $_REQUEST['_wpnonce'] not unslashed before sanitization. Use wp_unslash() or similar | 3 |
| WordPressVIPMinimum.Performance.WPQueryParams.PostNotIn_exclude | WARNING | Using exclusionary parameters, like exclude, in calls to get_posts() should be done with caution, see https://wpvip.com/documentation/performance-improvements-by-removing-usage-of-post__not_in/ for more information. | 3 |
| WordPress.DB.PreparedSQL.InterpolatedNotPrepared | WARNING | Use placeholders and $wpdb->prepare(); found interpolated variable $limit at "SELECT post_id, meta_value FROM {$wpdb->postmeta} WHERE meta_key = '_jet_sm_controls_values' LIMIT $limit OFFSET $offset" | 2 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound | WARNING | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "CX_Vue_UI". | 2 |
Latest Snapshot
Findings
3,682
Errors
2,094
Warnings
1,588
Score History
First score snapshot
First scan completed Jun 20, 2026
v3.6.2.1 · Plugin Check 2.0.0 · Model 2026.06-mvp-static-v2
Jun 20, 2026
v3.6.2.1
17
Latest
- Findings
- 3,682
- Errors
- 2,094
- Warnings
- 1,588
- Plugin Check
- 2.0.0
- Model
- 2026.06-mvp-static-v2
| Scan | Score | Findings | Errors | Warnings | Plugin | Plugin Check | Model |
|---|---|---|---|---|---|---|---|
| Jun 20, 2026Latest | 17 | 3,682 | 2,094 | 1,588 | v3.6.2.1 | 2.0.0 | 2026.06-mvp-static-v2 |