The best BuddyPress plugin for building online communities, user profile, social networks, and membership sites on WordPress with tons of features.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Security
2,674
12 issue groups
Maintainability
1,056
11 issue groups
I18n
198
2 issue groups
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"$selector { $property: $color !important; }"'.1,423
- Category
- Security
- Occurrences
- 1,423
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"$selector { $property: $color !important; }"'.
ERRORSecurityUnsafe printing functionAll output should be run through an escaping function (like echo esc_html_x() or echo esc_attr_x()), found '_ex'.497
- Category
- Security
- Occurrences
- 497
- 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 hook nameHook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "".476
- Category
- Maintainability
- Occurrences
- 476
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "".
WARNINGMaintainabilityMixed line endingsFile has mixed line endings; this may cause incorrect results267
- Category
- Maintainability
- Occurrences
- 267
- Severity
- warning
Sample message
File has mixed line endings; this may cause incorrect results
WARNINGSecurityMissing nonce verificationProcessing form data without nonce verification.188
- Category
- Security
- Occurrences
- 188
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityRequest data is not unslashed$_COOKIE[$cookie_msg_name] not unslashed before sanitization. Use wp_unslash() or similar166
- Category
- Security
- Occurrences
- 166
- Severity
- warning
Sample message
$_COOKIE[$cookie_msg_name] not unslashed before sanitization. Use wp_unslash() or similar
ERRORI18nText Domain MismatchMismatched text domain. Expected 'youzify' but got 'bp-activity-shortcode'.153
- Category
- I18n
- Occurrences
- 153
- Severity
- error
Sample message
Mismatched text domain. Expected 'youzify' but got 'bp-activity-shortcode'.
WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.105
- Category
- Security
- Occurrences
- 105
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityInput is not validatedDetected usage of a possibly undefined superglobal array index: $_POST['activity_id']. Check that the array index exists before using it.105
- Category
- Security
- Occurrences
- 105
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_POST['activity_id']. Check that the array index exists before using it.
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$_product".99
- Category
- Maintainability
- Occurrences
- 99
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$_product".
Show 15 moreShow less
WARNINGSecurityInput is not sanitized77
- Category
- Security
- Occurrences
- 77
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_COOKIE[$cookie_msg_name]
WARNINGMaintainabilityDirect Query50
- Category
- Maintainability
- Occurrences
- 50
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
WARNINGMaintainabilityNo Caching47
- Category
- Maintainability
- Occurrences
- 47
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
ERRORI18nMissing Translators Comment45
- Category
- I18n
- Occurrences
- 45
- 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.
ERRORMaintainabilitystrip tags strip tags33
- Category
- Maintainability
- Occurrences
- 33
- Severity
- error
Sample message
strip_tags() is discouraged. Use the more comprehensive wp_strip_all_tags() instead.
ERRORSecurityException output is not escaped28
- Category
- Security
- Occurrences
- 28
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"Could not connect to $url."'.
WARNINGSecurityInterpolated SQL is not prepared24
- Category
- Security
- Occurrences
- 24
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable $Youzify_media_table at "SELECT $field FROM $Youzify_media_table WHERE item_id = %d AND component = '%s'"
WARNINGSecuritywp redirect wp redirect24
- Category
- Security
- Occurrences
- 24
- 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.
ERRORMaintainabilitycurl curl setopt23
- Category
- Maintainability
- Occurrences
- 23
- Severity
- error
Sample message
Using cURL functions is highly discouraged. Use wp_remote_get() instead.
ERRORSecuritySQL query is not prepared22
- Category
- Security
- Occurrences
- 22
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $request
WARNINGMaintainabilityNon-prefixed function22
- Category
- Maintainability
- Occurrences
- 22
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "form".
ERRORMaintainabilityparse url parse url19
- Category
- Maintainability
- Occurrences
- 19
- Severity
- error
Sample message
parse_url() is discouraged because of inconsistency in the output across PHP versions; use wp_parse_url() instead.
ERRORSecurityDatabase parameter is not escaped15
- Category
- Security
- Occurrences
- 15
- Severity
- error
Sample message
Unescaped parameter $request used in $wpdb->get_results()\n$request assigned unsafely at line 56.
ERRORMaintainabilitydate date12
- Category
- Maintainability
- Occurrences
- 12
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
WARNINGMaintainabilityNon-prefixed class8
- Category
- Maintainability
- Occurrences
- 8
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "Content".
External Connections
Not analyzed yet.
Score History
First score snapshot
v1.3.7
23
Latest
- Findings
- 4,031
- Errors
- 2,317
- Warnings
- 1,714
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 23 | 4,031 | 2,317 | 1,714 | v1.3.7 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.