A page builder that is fast & easy, Brizy is a next-gen website builder that anyone can use. No designer or developer skills required.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Security
820
12 issue groups
Maintainability
275
10 issue groups
I18n
112
3 issue groups
ERRORSecurityOutput Not EscapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$apost['date']'.222
- Category
- Security
- Occurrences
- 222
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$apost['date']'.
WARNINGSecurityRecommendedProcessing form data without nonce verification.128
- Category
- Security
- Occurrences
- 128
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityInput Not SanitizedDetected usage of a non-sanitized input variable: $_FILES[$field->name]86
- Category
- Security
- Occurrences
- 86
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_FILES[$field->name]
WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.83
- Category
- Maintainability
- Occurrences
- 83
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
WARNINGSecurityMissing Unslash$_GET['action'] not unslashed before sanitization. Use wp_unslash() or similar80
- Category
- Security
- Occurrences
- 80
- Severity
- warning
Sample message
$_GET['action'] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGMaintainabilityNo CachingDirect database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().71
- Category
- Maintainability
- Occurrences
- 71
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
WARNINGSecurityInput Not ValidatedDetected usage of a possibly undefined superglobal array index: $_FILES[$field->name]['error'][$index]. Check that the array index exists before using it.62
- Category
- Security
- Occurrences
- 62
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_FILES[$field->name]['error'][$index]. Check that the array index exists before using it.
ERRORSecurityException Not EscapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"Brizy editor doesn't support '{$type}' post type"'.58
- Category
- Security
- Occurrences
- 58
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"Brizy editor doesn't support '{$type}' post type"'.
ERRORI18nMissing Arg DomainMissing $domain parameter in function call to __().54
- Category
- I18n
- Occurrences
- 54
- Severity
- error
Sample message
Missing $domain parameter in function call to __().
WARNINGSecurityMissingProcessing form data without nonce verification.50
- Category
- Security
- Occurrences
- 50
- Severity
- warning
Sample message
Processing form data without nonce verification.
Show 15 moreShow less
ERRORSecurityUnsafe Printing Function47
- Category
- Security
- Occurrences
- 47
- Severity
- error
Sample message
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
ERRORI18nMissing Translators Comment44
- Category
- I18n
- Occurrences
- 44
- 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.
WARNINGSecurityInterpolated Not Prepared34
- Category
- Security
- Occurrences
- 34
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable $id_placeholders at WHERE p.ID IN ($id_placeholders) OR (p.post_type = 'revision' AND p.post_parent IN ($id_placeholders))"
ERRORSecurityNot Prepared33
- Category
- Security
- Occurrences
- 33
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $brzPostTypes
WARNINGMaintainabilityNon Prefixed Hookname Found27
- Category
- Maintainability
- Occurrences
- 27
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "active_plugins".
WARNINGMaintainabilityNon Prefixed Variable Found25
- Category
- Maintainability
- Occurrences
- 25
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$ai_button_label".
ERRORMaintainabilitywp function not compatible with requires wp18
- Category
- Maintainability
- Occurrences
- 18
- Severity
- error
Sample message
Function "excerpt_remove_blocks()" requires WordPress 5.0.0, but your plugin minimum supported version is WordPress 4.5.0.
ERRORI18nUnordered Placeholders Text14
- Category
- I18n
- Occurrences
- 14
- Severity
- error
Sample message
Multiple placeholders in translatable strings should be ordered. Expected "%1$s, %2$s", but got "%s, %s" in 'Add a new page by pressing the %s Add New %s button from the top of the page.'.
ERRORMaintainabilitymissing direct file access protection13
- Category
- Maintainability
- Occurrences
- 13
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
ERRORSecurityUnescaped DBParameter11
- Category
- Security
- Occurrences
- 11
- Severity
- error
Sample message
Unescaped parameter $limitQuery used in $wpdb->get_results()\n$limitQuery assigned unsafely at line 113.
ERRORMaintainabilitydate date11
- Category
- Maintainability
- Occurrences
- 11
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
ERRORMaintainabilityunlink unlink11
- Category
- Maintainability
- Occurrences
- 11
- Severity
- error
Sample message
unlink() is discouraged. Use wp_delete_file() to delete a file.
WARNINGSecuritywp redirect wp redirect9
- Category
- Security
- Occurrences
- 9
- 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.
WARNINGMaintainabilityslow db query meta key8
- Category
- Maintainability
- Occurrences
- 8
- Severity
- warning
Sample message
Detected usage of meta_key, possible slow query.
WARNINGMaintainabilityMissing Version8
- Category
- Maintainability
- Occurrences
- 8
- 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.
Score History
First score snapshot
v2.8.16
20
Latest
- Findings
- 1,309
- Errors
- 589
- Warnings
- 720
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 20 | 1,309 | 589 | 720 | v2.8.16 | 2.0.0 |