Add modules: share buttons, header/footer scripts, disable comments, reading progress, custom fonts, custom login & more in one plugin.
Category Scores
Top Issues by Category
maintainability497
security86
Issues Details
595 issues found in latest scan
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$active".
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "Autoloader".
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'content_forms_submit_' . $form_type".
strip_tags() is discouraged. Use the more comprehensive wp_strip_all_tags() instead.
$_GET['duplicate_nonce'] not unslashed before sanitization. Use wp_unslash() or similar
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "BEAVER_WIDGETS_PATH".
Processing form data without nonce verification.
Detected usage of a non-sanitized input variable: $_GET['obfx-login']
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "$module->get_slug() . '_activate'".
Mismatched text domain. Expected 'themeisle-companion' but got 'plugin-domain'.
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "activate_orbit_fox".
Detected usage of meta_value, possible slow query.
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.
The parameter "array(\n\t\t\t\t'hide_empty' => false,\n\t\t\t)" at position #2 of get_terms() has been deprecated since WordPress version 4.5.0. Instead do not pass the parameter.
The use of function wp_get_sidebars_widgets() is forbidden
load_plugin_textdomain() has been discouraged since WordPress version 4.6. When your plugin is hosted on WordPress.org, you no longer need to manually include this function call for translations under your plugin slug. WordPress will automatically load the translations for you as needed.
Detected usage of tax_query, possible slow query.
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'get_the_ID'.
rand() is discouraged. Use the far less predictable wp_rand() instead.
Scripts must be registered/enqueued via wp_enqueue_script()
Plugin name "Orbit Fox: Duplicate Page, Menu Icons, SVG Support, Cookie Notice, Custom Fonts & More" is different from the name declared in plugin header "Orbit Fox Companion".
| Code | Type | Message | Count |
|---|---|---|---|
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound | WARNING | Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$active". | 298 |
| missing_direct_file_access_protection | ERROR | PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit; | 67 |
| WordPress.Security.EscapeOutput.UnsafePrintingFunction | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. | 52 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound | WARNING | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "Autoloader". | 40 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound | WARNING | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'content_forms_submit_' . $form_type". | 34 |
| WordPress.WP.AlternativeFunctions.strip_tags_strip_tags | ERROR | strip_tags() is discouraged. Use the more comprehensive wp_strip_all_tags() instead. | 29 |
| WordPress.Security.ValidatedSanitizedInput.MissingUnslash | WARNING | $_GET['duplicate_nonce'] not unslashed before sanitization. Use wp_unslash() or similar | 12 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedConstantFound | WARNING | Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "BEAVER_WIDGETS_PATH". | 10 |
| WordPress.Security.NonceVerification.Recommended | WARNING | Processing form data without nonce verification. | 10 |
| WordPress.Security.ValidatedSanitizedInput.InputNotSanitized | WARNING | Detected usage of a non-sanitized input variable: $_GET['obfx-login'] | 9 |
| WordPress.NamingConventions.PrefixAllGlobals.DynamicHooknameFound | WARNING | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "$module->get_slug() . '_activate'". | 6 |
| WordPress.WP.I18n.TextDomainMismatch | ERROR | Mismatched text domain. Expected 'themeisle-companion' but got 'plugin-domain'. | 5 |
| WordPress.WP.I18n.MissingArgDomain | ERROR | Missing $domain parameter in function call to esc_html__(). | 4 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound | WARNING | Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "activate_orbit_fox". | 3 |
| WordPress.DB.SlowDBQuery.slow_db_query_meta_value | WARNING | Detected usage of meta_value, possible slow query. | 2 |
| WordPress.Security.SafeRedirect.wp_redirect_wp_redirect | WARNING | 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. | 2 |
| WordPress.WP.DeprecatedParameters.Get_termsParam2Found | ERROR | The parameter "array(\n\t\t\t\t'hide_empty' => false,\n\t\t\t)" at position #2 of get_terms() has been deprecated since WordPress version 4.5.0. Instead do not pass the parameter. | 2 |
| Generic.PHP.ForbiddenFunctions.Found | ERROR | The use of function wp_get_sidebars_widgets() is forbidden | 1 |
| PluginCheck.CodeAnalysis.DiscouragedFunctions.load_plugin_textdomainFound | WARNING | load_plugin_textdomain() has been discouraged since WordPress version 4.6. When your plugin is hosted on WordPress.org, you no longer need to manually include this function call for translations under your plugin slug. WordPress will automatically load the translations for you as needed. | 1 |
| WordPress.DB.SlowDBQuery.slow_db_query_tax_query | WARNING | Detected usage of tax_query, possible slow query. | 1 |
| WordPress.Security.EscapeOutput.OutputNotEscaped | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'get_the_ID'. | 1 |
| WordPress.WP.AlternativeFunctions.rand_rand | ERROR | rand() is discouraged. Use the far less predictable wp_rand() instead. | 1 |
| WordPress.WP.EnqueuedResources.NonEnqueuedScript | ERROR | Scripts must be registered/enqueued via wp_enqueue_script() | 1 |
| library_core_files | ERROR | Library files that are already in the WordPress core are not permitted. | 1 |
| mismatched_plugin_name | WARNING | Plugin name "Orbit Fox: Duplicate Page, Menu Icons, SVG Support, Cookie Notice, Custom Fonts & More" is different from the name declared in plugin header "Orbit Fox Companion". | 1 |
Latest Snapshot
Findings
595
Errors
165
Warnings
430
Score History
First score snapshot
First scan completed
v3.0.7 · Plugin Check 2.0.0 · Model 2026.06-mvp-static-v2
v3.0.7
27
Latest
- Findings
- 595
- Errors
- 165
- Warnings
- 430
- Plugin Check
- 2.0.0
- Model
- 2026.06-mvp-static-v2
| Scan | Score | Findings | Errors | Warnings | Plugin | Plugin Check | Model |
|---|---|---|---|---|---|---|---|
| Latest | 27 | 595 | 165 | 430 | v3.0.7 | 2.0.0 | 2026.06-mvp-static-v2 |