Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Security
1,468
9 issue groups
Maintainability
1,449
13 issue groups
I18n
262
3 issue groups
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"\r\n'.962
- Category
- Security
- Occurrences
- 962
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"\r\n'.
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$_topic_id".620
- Category
- Maintainability
- Occurrences
- 620
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$_topic_id".
WARNINGMaintainabilityNon-prefixed functionFunctions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "bb_theme_reply_link_attribute_change".438
- Category
- Maintainability
- Occurrences
- 438
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "bb_theme_reply_link_attribute_change".
WARNINGMaintainabilityNon-prefixed hook nameHook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "active_plugins".261
- Category
- Maintainability
- Occurrences
- 261
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "active_plugins".
ERRORI18nText Domain MismatchMismatched text domain. Expected 'bbp-style-pack' but got 'bbp-topic count'.252
- Category
- I18n
- Occurrences
- 252
- Severity
- error
Sample message
Mismatched text domain. Expected 'bbp-style-pack' but got 'bbp-topic count'.
ERRORSecurityUnsafe printing functionAll output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.117
- Category
- Security
- Occurrences
- 117
- Severity
- error
Sample message
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.115
- Category
- Security
- Occurrences
- 115
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityRequest data is not unslashed$_GET[$this->plugin_slug . '-wp_nonce'] not unslashed before sanitization. Use wp_unslash() or similar87
- Category
- Security
- Occurrences
- 87
- Severity
- warning
Sample message
$_GET[$this->plugin_slug . '-wp_nonce'] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGSecurityInput is not sanitizedDetected usage of a non-sanitized input variable: $_GET[$this->plugin_slug . '-wp_nonce']59
- Category
- Security
- Occurrences
- 59
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_GET[$this->plugin_slug . '-wp_nonce']
WARNINGSecurityInput is not validatedDetected usage of a possibly undefined superglobal array index: $_GET['forum_id']. Check that the array index exists before using it.54
- Category
- Security
- Occurrences
- 54
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_GET['forum_id']. Check that the array index exists before using it.
Show 15 moreShow less
WARNINGSecurityMissing nonce verification51
- Category
- Security
- Occurrences
- 51
- Severity
- warning
Sample message
Processing form data without nonce verification.
ERRORMaintainabilitystrip tags strip tags31
- Category
- Maintainability
- Occurrences
- 31
- Severity
- error
Sample message
strip_tags() is discouraged. Use the more comprehensive wp_strip_all_tags() instead.
WARNINGMaintainabilityNot In Footer23
- Category
- Maintainability
- Occurrences
- 23
- 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.
WARNINGMaintainabilityNon-prefixed class18
- Category
- Maintainability
- Occurrences
- 18
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "BBP_Admin".
WARNINGSecuritywp redirect wp redirect16
- Category
- Security
- Occurrences
- 16
- 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.
ERRORMaintainabilityMissing direct file access protection15
- Category
- Maintainability
- Occurrences
- 15
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
WARNINGMaintainabilityslow db query meta key11
- Category
- Maintainability
- Occurrences
- 11
- Severity
- warning
Sample message
Detected usage of meta_key, possible slow query.
WARNINGMaintainabilityNon-prefixed constant10
- Category
- Maintainability
- Occurrences
- 10
- Severity
- warning
Sample message
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "BP_FORUMS_PARENT_FORUM_ID".
WARNINGMaintainabilityDirect Query8
- Category
- Maintainability
- Occurrences
- 8
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
WARNINGMaintainabilityNo Caching7
- Category
- Maintainability
- Occurrences
- 7
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
WARNINGSecurityInterpolated SQL is not prepared7
- Category
- Security
- Occurrences
- 7
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable $forum at AND $wpdb->postmeta.meta_value = '$forum' "
ERRORI18nMissing Translators Comment5
- Category
- I18n
- Occurrences
- 5
- 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.
ERRORI18nNon Singular String Literal Text5
- Category
- I18n
- Occurrences
- 5
- Severity
- error
Sample message
The $text parameter must be a single text string literal. Found: $bsp_style_settings_email[$type]
ERRORMaintainabilitydate date4
- Category
- Maintainability
- Occurrences
- 4
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
ERRORMaintainabilityOffloaded Content3
- Category
- Maintainability
- Occurrences
- 3
- Severity
- error
Sample message
Offloading images, js, css, and other scripts to your servers or any remote service is disallowed.
External Connections
Not analyzed yet.
Score History
First score snapshot
v6.4.5
25
Latest
- Findings
- 3,211
- Errors
- 1,419
- Warnings
- 1,792
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 25 | 3,211 | 1,419 | 1,792 | v6.4.5 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.