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
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
I18n
2,027
2 issue groups
Maintainability
1,575
14 issue groups
Security
58
7 issue groups
Supply Chain
6
1 issue group
ERRORI18nText Domain MismatchMismatched text domain. Expected 'jetformbuilder' but got 'jet-engine'.2,023
- Category
- I18n
- Occurrences
- 2,023
- Severity
- error
Sample message
Mismatched text domain. Expected 'jetformbuilder' but got 'jet-engine'.
WARNINGMaintainabilityNon Prefixed Namespace FoundNamespaces declared by a theme/plugin should start with the theme/plugin prefix. Found: "JFB_Compatibility".1,070
- Category
- Maintainability
- Occurrences
- 1,070
- Severity
- warning
Sample message
Namespaces declared by a theme/plugin should start with the theme/plugin prefix. Found: "JFB_Compatibility".
WARNINGMaintainabilityNon Prefixed Hookname FoundHook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'jet-form-builder/action/after-post-' . $this->get_id()".254
- Category
- Maintainability
- Occurrences
- 254
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'jet-form-builder/action/after-post-' . $this->get_id()".
WARNINGMaintainabilityNon Prefixed Variable FoundGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$$global_key".132
- Category
- Maintainability
- Occurrences
- 132
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$$global_key".
ERRORMaintainabilitymissing direct file access protectionPHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;30
- Category
- Maintainability
- Occurrences
- 30
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
WARNINGMaintainabilityNo Code FoundNo 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
- Category
- Maintainability
- Occurrences
- 26
- Severity
- warning
Sample message
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.
WARNINGSecurityUnescaped DBParameterUnescaped parameter $actions used in $wpdb->query()\n$actions assigned unsafely at line 16.19
- Category
- Security
- Occurrences
- 19
- Severity
- warning
Sample message
Unescaped parameter $actions used in $wpdb->query()\n$actions assigned unsafely at line 16.
WARNINGMaintainabilityNon Prefixed Function FoundFunctions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "jet_fb_action_handler".18
- Category
- Maintainability
- Occurrences
- 18
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "jet_fb_action_handler".
ERRORSecurityOutput Not EscapedAll 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
- Category
- Security
- Occurrences
- 14
- Severity
- error
Sample message
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."'.
WARNINGSecurityRecommendedProcessing form data without nonce verification.14
- Category
- Security
- Occurrences
- 14
- Severity
- warning
Sample message
Processing form data without nonce verification.
Show 15 moreShow less
ERRORMaintainabilitybadly named files13
- Category
- Maintainability
- Occurrences
- 13
- Severity
- error
Sample message
File and folder names must not contain spaces or special characters.
WARNINGMaintainabilityNon Prefixed Constant Found7
- Category
- Maintainability
- Occurrences
- 7
- Severity
- warning
Sample message
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "DOING_AJAX".
WARNINGMaintainabilityDirect Query6
- Category
- Maintainability
- Occurrences
- 6
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
ERRORSupply Chainhidden files6
- Category
- Supply Chain
- Occurrences
- 6
- Severity
- error
Sample message
Hidden files are not permitted.
WARNINGMaintainabilityDiscouraged5
- Category
- Maintainability
- Occurrences
- 5
- Severity
- warning
Sample message
The use of function ini_set() is discouraged
WARNINGMaintainabilityNo Caching5
- Category
- Maintainability
- Occurrences
- 5
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
WARNINGMaintainabilityInvalid Prefix Passed4
- Category
- Maintainability
- Occurrences
- 4
- Severity
- warning
Sample message
The "jfb/bricks/form/after" prefix is not a valid namespace/function/class/variable/constant prefix in PHP.
ERRORI18nMissing Translators Comment4
- Category
- I18n
- Occurrences
- 4
- Severity
- error
Sample message
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.
WARNINGMaintainabilityslow db query meta key3
- Category
- Maintainability
- Occurrences
- 3
- Severity
- warning
Sample message
Detected usage of meta_key, possible slow query.
WARNINGSecurityInput Not Sanitized3
- Category
- Security
- Occurrences
- 3
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_REQUEST['_wpnonce']
WARNINGSecurityInput Not Validated3
- Category
- Security
- Occurrences
- 3
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_REQUEST['_wpnonce']. Check that the array index exists before using it.
WARNINGSecurityMissing Unslash3
- Category
- Security
- Occurrences
- 3
- Severity
- warning
Sample message
$_REQUEST['_wpnonce'] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGPerformancePost Not In exclude3
- Category
- Performance
- Occurrences
- 3
- Severity
- warning
Sample message
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.
WARNINGSecurityInterpolated Not Prepared2
- Category
- Security
- Occurrences
- 2
- Severity
- warning
Sample message
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"
WARNINGMaintainabilityNon Prefixed Class Found2
- Category
- Maintainability
- Occurrences
- 2
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "CX_Vue_UI".
Score History
First score snapshot
v3.6.2.1
17
Latest
- Findings
- 3,682
- Errors
- 2,094
- Warnings
- 1,588
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 17 | 3,682 | 2,094 | 1,588 | v3.6.2.1 | 2.0.0 |