Bring Builderall’s powerful tools to your WordPress site a drag and drop page builder, popups, social proof, and more.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
I18n
3,273
4 issue groups
Maintainability
1,387
13 issue groups
Security
1,363
8 issue groups
ERRORI18nText Domain MismatchMismatched text domain. Expected 'builderall-cheetah-for-wp' but got 'Link to learn more about Builderall Builder Pro'.3,187
- Category
- I18n
- Occurrences
- 3,187
- Severity
- error
Sample message
Mismatched text domain. Expected 'builderall-cheetah-for-wp' but got 'Link to learn more about Builderall Builder Pro'.
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"#tab-$tab_node_id-$key"'.749
- Category
- Security
- Occurrences
- 749
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"#tab-$tab_node_id-$key"'.
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$accordion_node_id".344
- Category
- Maintainability
- Occurrences
- 344
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$accordion_node_id".
ERRORMaintainabilityMissing direct file access protectionPHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;329
- Category
- Maintainability
- Occurrences
- 329
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
WARNINGMaintainabilityNon-prefixed hook nameHook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'ba_cheetah_after_control_' . $field['type']".304
- Category
- Maintainability
- Occurrences
- 304
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'ba_cheetah_after_control_' . $field['type']".
ERRORSecurityUnsafe printing functionAll output should be run through an escaping function (like echo esc_html_x() or echo esc_attr_x()), found '_ex'.276
- Category
- Security
- Occurrences
- 276
- Severity
- error
Sample message
All output should be run through an escaping function (like echo esc_html_x() or echo esc_attr_x()), found '_ex'.
WARNINGMaintainabilityNon-prefixed classClasses declared by a theme/plugin should start with the theme/plugin prefix. Found: "BACheetah".121
- Category
- Maintainability
- Occurrences
- 121
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "BACheetah".
WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.119
- Category
- Security
- Occurrences
- 119
- Severity
- warning
Sample message
Processing form data without nonce verification.
ERRORMaintainabilityShort PHP open tag foundShort PHP opening tag used with echo; expected "<?php echo ! ..." but found "<?= ! ..."112
- Category
- Maintainability
- Occurrences
- 112
- Severity
- error
Sample message
Short PHP opening tag used with echo; expected "<?php echo ! ..." but found "<?= ! ..."
WARNINGSecurityRequest data is not unslashed$_GET['page'] not unslashed before sanitization. Use wp_unslash() or similar70
- Category
- Security
- Occurrences
- 70
- Severity
- warning
Sample message
$_GET['page'] not unslashed before sanitization. Use wp_unslash() or similar
Show 15 moreShow less
WARNINGSecurityMissing nonce verification58
- Category
- Security
- Occurrences
- 58
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityInput is not sanitized54
- Category
- Security
- Occurrences
- 54
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_GET['post']
WARNINGMaintainabilityNot In Footer51
- Category
- Maintainability
- Occurrences
- 51
- 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.
ERRORI18nMissing Arg Domain43
- Category
- I18n
- Occurrences
- 43
- Severity
- error
Sample message
Missing $domain parameter in function call to __().
WARNINGMaintainabilityNon-prefixed constant37
- Category
- Maintainability
- Occurrences
- 37
- Severity
- warning
Sample message
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "BA_CHEETAH_AUTENTICATED".
ERRORI18nMissing Translators Comment36
- Category
- I18n
- Occurrences
- 36
- 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.
WARNINGMaintainabilityNo PHP code found31
- Category
- Maintainability
- Occurrences
- 31
- 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.
WARNINGSecurityInput is not validated26
- Category
- Security
- Occurrences
- 26
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_GET['ba-cheetah-template-type']. Check that the array index exists before using it.
WARNINGMaintainabilityNon-prefixed function23
- Category
- Maintainability
- Occurrences
- 23
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "ba_cheetah_filesystem".
WARNINGSecuritywp redirect wp redirect11
- Category
- Security
- Occurrences
- 11
- Severity
- warning
Sample message
wp_redirect() found. Using wp_safe_redirect(), along with the "allowed_redirect_hosts" filter if needed, can help avoid any chances of malicious redirects within code. It is also important to remember to call exit() after a redirect so that no other unwanted code is executed.
WARNINGMaintainabilityMissing Version10
- Category
- Maintainability
- Occurrences
- 10
- 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.
WARNINGMaintainabilityDirect Query9
- Category
- Maintainability
- Occurrences
- 9
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
WARNINGMaintainabilityNo Caching9
- Category
- Maintainability
- Occurrences
- 9
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
ERRORI18nNon Singular String Literal Text7
- Category
- I18n
- Occurrences
- 7
- Severity
- error
Sample message
The $text parameter must be a single text string literal. Found: $label
ERRORMaintainabilitywp function not compatible with requires wp7
- Category
- Maintainability
- Occurrences
- 7
- Severity
- error
Sample message
Function "get_user_locale()" requires WordPress 4.7.0, but your plugin minimum supported version is WordPress 4.6.0.
External Connections
Potential connections found in static code analysis.
Outbound calls
290
External assets
1
Incoming endpoints
9
Notable Domains
Platform / Reference Domains
External Asset Domains
Incoming Endpoints
register_rest_route
register_rest_route
register_rest_route
register_rest_route
register_rest_route
register_rest_route
Admin AJAX endpoints3
wp_ajax
wp_ajax
wp_ajax
Score History
First score snapshot
v3.0.1
23
Latest
- Findings
- 6,090
- Errors
- 4,782
- Warnings
- 1,308
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 23 | 6,090 | 4,782 | 1,308 | v3.0.1 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.