This plugin implements Servebolt's WordPress best practices, and connects your site to the Servebolt Admin Panel.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
I18n
1,027
4 issue groups
Security
1,009
13 issue groups
Maintainability
551
8 issue groups
ERRORI18nText Domain MismatchMismatched text domain. Expected 'servebolt-optimizer' but got 'servebolt-wp'.844
- Category
- I18n
- Occurrences
- 844
- Severity
- error
Sample message
Mismatched text domain. Expected 'servebolt-optimizer' but got 'servebolt-wp'.
ERRORSecurityUnsafe printing functionAll output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.423
- Category
- Security
- Occurrences
- 423
- Severity
- error
Sample message
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
WARNINGMaintainabilityNon-prefixed hook nameHook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'sb_optimizer_add_version_parameter_to_' . $type . '_src_' . $handle".296
- Category
- Maintainability
- Occurrences
- 296
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'sb_optimizer_add_version_parameter_to_' . $type . '_src_' . $handle".
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"Call to undefined method $class::$name() in $file on line $line"'.296
- Category
- Security
- Occurrences
- 296
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"Call to undefined method $class::$name() in $file on line $line"'.
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$$key".172
- Category
- Maintainability
- Occurrences
- 172
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$$key".
ERRORSecurityException output is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"$name not found on class"'.129
- Category
- Security
- Occurrences
- 129
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"$name not found on class"'.
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.118
- Category
- I18n
- Occurrences
- 118
- 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.
ERRORI18nUnordered Placeholders TextMultiple placeholders in translatable strings should be ordered. Expected "%1$s, %2$s", but got "%s, %s" in '%sGet in touch with Servebolt Support%s to get Cloudflare added to your domain and set up correctly.'.48
- Category
- I18n
- Occurrences
- 48
- Severity
- error
Sample message
Multiple placeholders in translatable strings should be ordered. Expected "%1$s, %2$s", but got "%s, %s" in '%sGet in touch with Servebolt Support%s to get Cloudflare added to your domain and set up correctly.'.
WARNINGSecurityRequest data is not unslashed$_GET['deprecations'] not unslashed before sanitization. Use wp_unslash() or similar30
- Category
- Security
- Occurrences
- 30
- Severity
- warning
Sample message
$_GET['deprecations'] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.29
- Category
- Security
- Occurrences
- 29
- Severity
- warning
Sample message
Processing form data without nonce verification.
Show 15 moreShow less
WARNINGSecurityInput is not sanitized26
- Category
- Security
- Occurrences
- 26
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_GET['deprecations']
WARNINGSecurityMissing nonce verification21
- Category
- Security
- Occurrences
- 21
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGMaintainabilityDirect Query17
- Category
- Maintainability
- Occurrences
- 17
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
ERRORMaintainabilityparse url parse url17
- Category
- Maintainability
- Occurrences
- 17
- Severity
- error
Sample message
parse_url() is discouraged because of inconsistency in the output across PHP versions; use wp_parse_url() instead.
ERRORI18nMissing Arg Domain17
- Category
- I18n
- Occurrences
- 17
- Severity
- error
Sample message
Missing $domain parameter in function call to __().
WARNINGMaintainabilityNo Caching16
- Category
- Maintainability
- Occurrences
- 16
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
WARNINGMaintainabilityerror log error log16
- Category
- Maintainability
- Occurrences
- 16
- Severity
- warning
Sample message
error_log() found. Debug code should not normally be used in production.
ERRORSecuritySQL query is not prepared15
- Category
- Security
- Occurrences
- 15
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $sql
WARNINGSecurityInput is not validated11
- Category
- Security
- Occurrences
- 11
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_POST['auth_type']. Check that the array index exists before using it.
WARNINGMaintainabilityerror log trigger error9
- Category
- Maintainability
- Occurrences
- 9
- Severity
- warning
Sample message
trigger_error() found. Debug code should not normally be used in production.
ERRORSecuritySetting is missing a sanitization callback8
- Category
- Security
- Occurrences
- 8
- Severity
- error
Sample message
Sanitization missing for register_setting().
WARNINGSecurityInterpolated SQL is not prepared8
- Category
- Security
- Occurrences
- 8
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable {$columnName} at "SHOW COLUMNS FROM {$tableName} LIKE '{$columnName}'"
WARNINGMaintainabilityNon-prefixed function8
- Category
- Maintainability
- Occurrences
- 8
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "sb_drop_index".
WARNINGSecurityDatabase parameter is not escaped7
- Category
- Security
- Occurrences
- 7
- Severity
- warning
Sample message
Unescaped parameter $dbTable used in $wpdb->get_results()\n$dbTable assigned unsafely at line 112.
ERRORSecurityDatabase parameter is not escaped6
- Category
- Security
- Occurrences
- 6
- Severity
- error
Sample message
Unescaped parameter $sql used in $wpdb->get_results()\n$sql used without escaping.
External Connections
Potential connections found in static code analysis.
Outbound calls
145
External assets
0
Incoming endpoints
32
Notable Domains
Platform / Reference Domains
External Asset Domains
No external asset domains detected.
Incoming Endpoints
No public endpoints detected.
Admin AJAX endpoints32
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
20 more hidden
Score History
First score snapshot
v3.6.4
24
Latest
- Findings
- 2,639
- Errors
- 1,958
- Warnings
- 681
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 24 | 2,639 | 1,958 | 681 | v3.6.4 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.