User Profile Builder – Beautiful User Registration Forms, User Profiles & User Role Editor

Powerful user profile plugin to create front-end user registration forms, login & user profile forms. Includes user role editor & content restriction.

v3.16.2CozmoslabsUpdated Added 50k+ installs94% rating100% support resolved
21
Score
696
Errors
1,483
Warnings
+0
Change

Category Scores

Security0
Repo86
Performance80
Maintainability0

Issues to Review

Prioritized issue groups from the latest Plugin Check scan

2,179 findings

Maintainability

998

15 issue groups

Security

764

8 issue groups

I18n

321

2 issue groups

WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.288
Category
Security
Occurrences
288
Severity
warning

Sample message

Processing form data without nonce verification.

ERRORI18nMissing Translators CommentA 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.286
Category
I18n
Occurrences
286
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.

WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$_wppb_le_potx_install".274
Category
Maintainability
Occurrences
274
Severity
warning

Sample message

Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$_wppb_le_potx_install".

WARNINGSecurityRequest data is not unslashed$_GET[$this->prefix.'_dismiss_admin_notification'] not unslashed before sanitization. Use wp_unslash() or similar256
Category
Security
Occurrences
256
Severity
warning

Sample message

$_GET[$this->prefix.'_dismiss_admin_notification'] not unslashed before sanitization. Use wp_unslash() or similar

ERRORMaintainabilitywp function not compatible with requires wpFunction "add_term_meta()" requires WordPress 4.4.0, but your plugin minimum supported version is WordPress 3.1.0.204
Category
Maintainability
Occurrences
204
Severity
error

Sample message

Function "add_term_meta()" requires WordPress 4.4.0, but your plugin minimum supported version is WordPress 3.1.0.

WARNINGMaintainabilityNon-prefixed hook nameHook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'wck_metabox_content_'.$meta".139
Category
Maintainability
Occurrences
139
Severity
warning

Sample message

Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'wck_metabox_content_'.$meta".

WARNINGSecurityMissing nonce verificationProcessing form data without nonce verification.122
Category
Security
Occurrences
122
Severity
warning

Sample message

Processing form data without nonce verification.

WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.74
Category
Maintainability
Occurrences
74
Severity
warning

Sample message

Use of a direct database call is discouraged.

WARNINGMaintainabilityNo CachingDirect database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().67
Category
Maintainability
Occurrences
67
Severity
warning

Sample message

Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().

WARNINGMaintainabilityNon-prefixed functionFunctions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "_wppb_encodeQS".49
Category
Maintainability
Occurrences
49
Severity
warning

Sample message

Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "_wppb_encodeQS".

Show 15 more
ERRORSecurityException output is not escaped39
Category
Security
Occurrences
39
Severity
error

Sample message

All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$baseDir'.

ERRORI18nUnordered Placeholders Text35
Category
I18n
Occurrences
35
Severity
error

Sample message

Multiple placeholders in translatable strings should be ordered. Expected "%1$1s, %2$2s", but got "%1s, %2s" in '%1s registered as a %2s role'.

WARNINGMaintainabilityNot In Footer33
Category
Maintainability
Occurrences
33
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.

ERRORMaintainabilityMissing direct file access protection29
Category
Maintainability
Occurrences
29
Severity
error

Sample message

PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;

WARNINGMaintainabilityDynamic hook name22
Category
Maintainability
Occurrences
22
Severity
warning

Sample message

Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "$filter".

ERRORMaintainabilitydate date21
Category
Maintainability
Occurrences
21
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 class21
Category
Maintainability
Occurrences
21
Severity
warning

Sample message

Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "CL_Addons_List_Table".

WARNINGSecuritywp redirect wp redirect20
Category
Security
Occurrences
20
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 Version19
Category
Maintainability
Occurrences
19
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.

WARNINGMaintainabilityerror log var export16
Category
Maintainability
Occurrences
16
Severity
warning

Sample message

var_export() found. Debug code should not normally be used in production.

ERRORSecuritySetting is missing a sanitization callback15
Category
Security
Occurrences
15
Severity
error

Sample message

Sanitization missing for register_setting().

WARNINGMaintainabilityNon-prefixed constant15
Category
Maintainability
Occurrences
15
Severity
warning

Sample message

Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "PBGCP_ADD_ON_DIR".

ERRORMaintainabilitystrip tags strip tags15
Category
Maintainability
Occurrences
15
Severity
error

Sample message

strip_tags() is discouraged. Use the more comprehensive wp_strip_all_tags() instead.

WARNINGSecurityInterpolated SQL is not prepared12
Category
Security
Occurrences
12
Severity
warning

Sample message

Use placeholders and $wpdb->prepare(); found interpolated variable $order at "signups WHERE $where ORDER BY $orderby $order LIMIT %d, %d"

WARNINGSecurityInput is not sanitized12
Category
Security
Occurrences
12
Severity
warning

Sample message

Detected usage of a non-sanitized input variable: $_POST['exclude']

External Connections

Not analyzed yet.

Score History

First score snapshot

v3.16.2

21

Latest

Findings
2,179
Errors
696
Warnings
1,483
Check
2.0.0

Relationship Map

Author, categories, issues, domains, and nearby plugins.

29 nodes

Related Plugins

Easy Author Avatar Image

1k+ active installs

100
Ultimate Member – reCAPTCHA

20k+ active installs

98
Users Registration Date

2k+ active installs

98
WP Edit Username

2k+ active installs

98
Clean Login

6k+ active installs

97
Disable WP Registration Page

2k+ active installs

89