Create customized registration forms, Invite through email, Email Notification, User Roles assignment, and more. Pie Register is a User Registration p …
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Security
1,098
9 issue groups
Maintainability
673
15 issue groups
I18n
2
1 issue group
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$PR_Bot_List".310
- Category
- Maintainability
- Occurrences
- 310
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$PR_Bot_List".
WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.278
- Category
- Security
- Occurrences
- 278
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityMissing nonce verificationProcessing form data without nonce verification.241
- Category
- Security
- Occurrences
- 241
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityRequest data is not unslashed$_COOKIE['tab_' . $currentTabId . '_piereg_math_captcha_Login_form'] not unslashed before sanitization. Use wp_unslash() or similar205
- Category
- Security
- Occurrences
- 205
- Severity
- warning
Sample message
$_COOKIE['tab_' . $currentTabId . '_piereg_math_captcha_Login_form'] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGSecurityInput is not validatedDetected usage of a possibly undefined superglobal array index: $_COOKIE['currentTabId']. Check that the array index exists before using it.155
- Category
- Security
- Occurrences
- 155
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_COOKIE['currentTabId']. Check that the array index exists before using it.
WARNINGMaintainabilityNon-prefixed hook nameHook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'Add_payment_option_'.$allowed_payment_gateway_name".129
- Category
- Maintainability
- Occurrences
- 129
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'Add_payment_option_'.$allowed_payment_gateway_name".
WARNINGSecurityInput is not sanitizedDetected usage of a non-sanitized input variable: $_COOKIE['tab_' . $currentTabId . '_piereg_math_captcha_Login_form']124
- Category
- Security
- Occurrences
- 124
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_COOKIE['tab_' . $currentTabId . '_piereg_math_captcha_Login_form']
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().73
- Category
- Maintainability
- Occurrences
- 73
- 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 preparedUse placeholders and $wpdb->prepare(); found interpolated variable $codetable at "DELETE FROM $codetable WHERE `id` IN($format)"42
- Category
- Security
- Occurrences
- 42
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable $codetable at "DELETE FROM $codetable WHERE `id` IN($format)"
Show 15 moreShow less
WARNINGSecurityDatabase parameter is not escaped37
- Category
- Security
- Occurrences
- 37
- Severity
- warning
Sample message
Unescaped parameter $codetable used in $wpdb->get_results()\n$codetable assigned unsafely at line 278.
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: "API_Manager_Example_Password_Management".
WARNINGMaintainabilityNon-prefixed function19
- Category
- Maintainability
- Occurrences
- 19
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "PR_show_renew_account".
WARNINGSecurityUnfinished Prepare13
- Category
- Security
- Occurrences
- 13
- Severity
- warning
Sample message
Replacement variables found, but no valid placeholders found in the query.
WARNINGMaintainabilitySchema Change11
- Category
- Maintainability
- Occurrences
- 11
- Severity
- warning
Sample message
Attempting a database schema change is discouraged.
WARNINGMaintainabilityslow db query meta key7
- Category
- Maintainability
- Occurrences
- 7
- Severity
- warning
Sample message
Detected usage of meta_key, possible slow query.
WARNINGMaintainabilityslow db query meta value7
- Category
- Maintainability
- Occurrences
- 7
- Severity
- warning
Sample message
Detected usage of meta_value, possible slow query.
WARNINGMaintainabilityNon-prefixed constant5
- Category
- Maintainability
- Occurrences
- 5
- Severity
- warning
Sample message
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "OPTION_PIE_REGISTER".
WARNINGMaintainabilityerror log print r5
- Category
- Maintainability
- Occurrences
- 5
- Severity
- warning
Sample message
print_r() found. Debug code should not normally be used in production.
WARNINGMaintainabilityNot In Footer5
- Category
- Maintainability
- Occurrences
- 5
- 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.
WARNINGMaintainabilityslow db query meta query3
- Category
- Maintainability
- Occurrences
- 3
- Severity
- warning
Sample message
Detected usage of meta_query, possible slow query.
WARNINGSecuritywp redirect wp redirect3
- Category
- Security
- Occurrences
- 3
- 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.
WARNINGMaintainabilityerror log error log2
- Category
- Maintainability
- Occurrences
- 2
- Severity
- warning
Sample message
error_log() found. Debug code should not normally be used in production.
WARNINGMaintainabilityMissing Version2
- Category
- Maintainability
- Occurrences
- 2
- 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.
WARNINGI18nNo Html Wrapped Strings2
- Category
- I18n
- Occurrences
- 2
- Severity
- warning
Sample message
Translatable string should not be wrapped in HTML. Found: "<p>You are already logged in.</p>"
External Connections
Not analyzed yet.
Score History
First score snapshot
v3.8.4.11
27
Latest
- Findings
- 1,779
- Errors
- 0
- Warnings
- 1,779
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 27 | 1,779 | 0 | 1,779 | v3.8.4.11 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.