Frontend Dashboard is bundled with huge list of custom features which can easily customise the User profile, Posts, Login, Register, Custom roles.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Maintainability
784
9 issue groups
Security
422
11 issue groups
I18n
87
5 issue groups
WARNINGMaintainabilityNon-prefixed functionFunctions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "bcdump".393
- Category
- Maintainability
- Occurrences
- 393
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "bcdump".
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"$error\n"'.192
- Category
- Security
- Occurrences
- 192
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"$error\n"'.
WARNINGMaintainabilityNon-prefixed hook nameHook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'fed_dashboard_content_bottom_' . fed_get_data( 'menu_request.menu_slug', $menu )".153
- Category
- Maintainability
- Occurrences
- 153
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'fed_dashboard_content_bottom_' . fed_get_data( 'menu_request.menu_slug', $menu )".
WARNINGSecurityInterpolated SQL is not preparedUse placeholders and $wpdb->prepare(); found interpolated variable $column at WHERE payment.$column = $id\t \r\n78
- Category
- Security
- Occurrences
- 78
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable $column at WHERE payment.$column = $id\t \r\n
WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.66
- Category
- Maintainability
- Occurrences
- 66
- 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().60
- Category
- Maintainability
- Occurrences
- 60
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.59
- Category
- Security
- Occurrences
- 59
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$content".42
- Category
- Maintainability
- Occurrences
- 42
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$content".
ERRORI18nMissing Arg DomainMissing $domain parameter in function call to __().36
- Category
- I18n
- Occurrences
- 36
- Severity
- error
Sample message
Missing $domain parameter in function call to __().
ERRORSecurityUnsafe printing functionAll output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.34
- Category
- Security
- Occurrences
- 34
- Severity
- error
Sample message
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
Show 15 moreShow less
WARNINGMaintainabilityNon-prefixed class25
- Category
- Maintainability
- Occurrences
- 25
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "FEDCustomCSS".
ERRORMaintainabilityMissing direct file access protection25
- Category
- Maintainability
- Occurrences
- 25
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
ERRORI18nNon Singular String Literal Text20
- Category
- I18n
- Occurrences
- 20
- Severity
- error
Sample message
The $text parameter must be a single text string literal. Found: $active
ERRORSecurityDatabase parameter is not escaped15
- Category
- Security
- Occurrences
- 15
- Severity
- error
Sample message
Unescaped parameter $column used in $wpdb->get_results()\n$column assigned unsafely at line 272.
ERRORI18nText Domain Mismatch12
- Category
- I18n
- Occurrences
- 12
- Severity
- error
Sample message
Mismatched text domain. Expected 'frontend-dashboard' but got 'fed'.
WARNINGSecurityDatabase parameter is not escaped10
- Category
- Security
- Occurrences
- 10
- Severity
- warning
Sample message
Unescaped parameter $table used in $wpdb->get_results()\n$table assigned unsafely at line 19.
WARNINGMaintainabilitySchema Change10
- Category
- Maintainability
- Occurrences
- 10
- Severity
- warning
Sample message
Attempting a database schema change is discouraged.
ERRORMaintainabilitydate date10
- Category
- Maintainability
- Occurrences
- 10
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
ERRORI18nMissing Translators Comment10
- Category
- I18n
- Occurrences
- 10
- 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.
WARNINGSecurityRequest data is not unslashed9
- Category
- Security
- Occurrences
- 9
- Severity
- warning
Sample message
$_POST[$default_value['input_meta']] not unslashed before sanitization. Use wp_unslash() or similar
ERRORI18nNo Empty Strings9
- Category
- I18n
- Occurrences
- 9
- Severity
- error
Sample message
The $text text string should have translatable content. Found: '%s '
ERRORSecuritySQL query is not prepared7
- Category
- Security
- Occurrences
- 7
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $query
WARNINGSecurityInput is not sanitized7
- Category
- Security
- Occurrences
- 7
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_POST['slug']
WARNINGSecurityInput is not validated6
- Category
- Security
- Occurrences
- 6
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_POST[$default_value['input_meta']]. Check that the array index exists before using it.
WARNINGSecurityMissing nonce verification5
- Category
- Security
- Occurrences
- 5
- Severity
- warning
Sample message
Processing form data without nonce verification.
External Connections
Potential connections found in static code analysis.
Outbound calls
182
External assets
8
Incoming endpoints
35
Notable Domains
Platform / Reference Domains
External Asset Domains
Incoming Endpoints
register_rest_route
register_rest_route
admin_post
wp_ajax
wp_ajax
wp_ajax
Admin AJAX endpoints25
admin_post
admin_post
admin_post
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
13 more hidden
Score History
First score snapshot
v2.2.10
21
Latest
- Findings
- 1,329
- Errors
- 384
- Warnings
- 945
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 21 | 1,329 | 384 | 945 | v2.2.10 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.