Title: WebOsmotic Diagnostics Dashboard
Author: sainawebosmotic7
Published: <strong>ସେପ୍ଟେମ୍ବର 2, 2026</strong>
Last modified: ସେପ୍ଟେମ୍ବର 2, 2026

---

Search plugins

![](https://s.w.org/plugins/geopattern-icon/webosmotic-diagnostics-dashboard.svg)

# WebOsmotic Diagnostics Dashboard

 By [sainawebosmotic7](https://profiles.wordpress.org/sainawebosmotic7/)

[Download](https://downloads.wordpress.org/plugin/webosmotic-diagnostics-dashboard.1.0.1.zip)

 * [Details](https://ory.wordpress.org/plugins/webosmotic-diagnostics-dashboard/#description)
 * [Reviews](https://ory.wordpress.org/plugins/webosmotic-diagnostics-dashboard/#reviews)
 * [Development](https://ory.wordpress.org/plugins/webosmotic-diagnostics-dashboard/#developers)

 [Support](https://wordpress.org/support/plugin/webosmotic-diagnostics-dashboard/)

## Description

WebOsmotic Diagnostics Dashboard is a WordPress diagnostics toolkit that goes beyond
the default Site Health screen. It runs a collection of checks across your WordPress
environment and presents the findings through a dedicated dashboard with a health
score and prioritised recommendations.

The plugin helps identify issues related to:

 * PHP version compatibility
 * WordPress core version and pending updates
 * Plugin health, including pending updates and inactive plugins
 * Theme health, including pending updates and unused themes
 * REST API availability
 * File permissions on critical paths
 * WP-Cron and scheduled tasks
 * Server configuration, including memory, execution time, upload limits, and PHP
   extensions
 * Security hardening, including HTTPS, debug output, the file editor, and the default“
   admin” user
 * Database and performance, including object cache, autoloaded options, transients,
   and post revisions
 * Debug log issues
 * WordPress core file integrity
 * Deprecated and incompatible code
 * Known vulnerabilities, when WPScan integration is configured

WebOsmotic Diagnostics Dashboard provides a dedicated dashboard where scan results
are grouped by severity and accompanied by explanations and recommendations.

The plugin also integrates its checks with the native WordPress Site Health screen.

Background scans can be scheduled, and scan results are stored so previous results
can be reviewed and compared.

### Features

 * Dedicated WebOsmotic Diagnostics Dashboard dashboard
 * Health score from 0-100
 * Categorised diagnostic checks
 * Critical, recommended, and passing statuses
 * Background scheduled scans
 * Scan history and reports
 * Markdown, JSON, and printable HTML report exports
 * Selected one-click remediation actions
 * Configuration snippets and relevant admin links
 * Optional email and webhook alerts for new critical issues
 * Optional WPScan vulnerability checking
 * WordPress.org core file integrity checking
 * Individual check enable/disable controls
 * Developer filters for extending the check system

### One-click fixes

Where supported, WebOsmotic Diagnostics Dashboard provides one-click remediation
actions for issues such as:

 * Clearing expired transients
 * Flushing the object cache
 * Regenerating rewrite rules
 * Deleting unused themes
 * Deleting inactive plugins

Destructive actions require explicit confirmation before they are performed.

### Extending

The plugin provides a filter for registering custom checks.

Example:

    ```
    add_filter( 'wodd_registered_checks', function ( $checks ) {
        $checks[] = 'My_Custom_Check';
        return $checks;
    } );
    ```

Custom checks can extend the built-in `WODD_Check` class and use the plugin’s standard
result helpers.

### Configuration

WebOsmotic Diagnostics Dashboard  Settings provides configuration options for:

 * Background scan schedule
 * Scan history retention
 * Alert email
 * Alert webhook
 * WPScan API token
 * Individual check enable/disable settings

For locked-down or version-controlled environments, the following values can also
be defined in `wp-config.php`:

    ```
    define( 'WODD_VULN_API_KEY', 'your-token' );

    define( 'WODD_ALERT_EMAIL', 'ops@example.com' );

    define( 'WODD_ALERT_WEBHOOK', 'https://hooks.slack.com/services/XXX' );
    ```

When configured through constants, the corresponding settings are treated as locked
values.

Available filters include:

 * `wodd_vuln_api_key`
 * `wodd_alert_email`
 * `wodd_alert_webhook`
 * `wodd_registered_checks`

### External Services

WebOsmotic Diagnostics Dashboard can communicate with the following external services
when the related functionality is used.

 1. WPScan Vulnerability Database API

Service: https://wpscan.com/api

The optional Known Vulnerabilities check uses the WPScan API to look up installed
WordPress plugins, themes, and WordPress core against its vulnerability database.

The service is contacted only when a WPScan API token has been configured.

The plugin sends component slugs and version numbers required for the vulnerability
lookup.

Terms: https://wpscan.com/terms/

Privacy: https://automattic.com/privacy/

 1. WordPress.org Checksums API

Service: https://api.wordpress.org

The Core File Integrity check uses the WordPress.org API to obtain official checksums
for the installed WordPress version and locale.

The request uses the WordPress version and locale required to retrieve the appropriate
checksums.

Privacy: https://wordpress.org/about/privacy/

 1. Alert Webhook

If you configure an alert webhook, WebOsmotic Diagnostics Dashboard sends alert 
information to the exact endpoint you provide when a new critical issue is detected.

The webhook destination is controlled by the site administrator.

### Documentation

Full documentation:

https://webosmotic.com/webosmotic-diagnostics-dashboard/documentation/

Plugin website:

https://webosmotic.com/webosmotic-diagnostics-dashboard/

## FAQ

### Does this modify my site automatically?

No. Diagnostic checks are read-only. The plugin does not automatically apply remediation
actions. Available fixes require an explicit user action, and destructive fixes 
require confirmation.

### Who can access the dashboard?

The WebOsmotic Diagnostics Dashboard dashboard requires the `manage_options` capability.

### Can I disable individual checks?

Yes. Individual checks can be enabled or disabled from the WebOsmotic Diagnostics
Dashboard Settings page.

### Can I review previous scans?

Yes. WebOsmotic Diagnostics Dashboard stores scan history according to the configured
retention setting and provides history and report functionality.

### Does the plugin require an external service?

No. The core diagnostic functionality runs on your WordPress site. Optional features
such as vulnerability checking and webhook alerts can communicate with external 
services when configured.

## Reviews

There are no reviews for this plugin.

## Contributors & Developers

“WebOsmotic Diagnostics Dashboard” is open source software. The following people
have contributed to this plugin.

Contributors

 *   [ sainawebosmotic7 ](https://profiles.wordpress.org/sainawebosmotic7/)
 *   [ chaitya997150 ](https://profiles.wordpress.org/chaitya997150/)

[Translate “WebOsmotic Diagnostics Dashboard” into your language.](https://translate.wordpress.org/projects/wp-plugins/webosmotic-diagnostics-dashboard)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/webosmotic-diagnostics-dashboard/),
check out the [SVN repository](https://plugins.svn.wordpress.org/webosmotic-diagnostics-dashboard/),
or subscribe to the [development log](https://plugins.trac.wordpress.org/log/webosmotic-diagnostics-dashboard/)
by [RSS](https://plugins.trac.wordpress.org/log/webosmotic-diagnostics-dashboard/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

#### 1.0.0

 * Initial public release of WebOsmotic Diagnostics Dashboard.
 * Added a dedicated WebOsmotic Diagnostics Dashboard dashboard with health scoring
   and prioritised findings.
 * Added diagnostic checks covering compatibility, maintenance, connectivity, security,
   performance, and diagnostics.
 * Added optional WordPress core file integrity checking.
 * Added optional WPScan vulnerability checking.
 * Added scheduled background scanning.
 * Added scan history and report functionality.
 * Added Markdown, JSON, and printable HTML report exports.
 * Added selected one-click remediation actions.
 * Added configuration snippets and relevant admin links for applicable findings.
 * Added optional email and webhook alerts for new critical issues.
 * Added individual check enable/disable controls.
 * Added developer filters for registering custom checks.

## Meta

 *  Version **1.0.1**
 *  Last updated **2 days ago**
 *  Active installations **Fewer than 10**
 *  WordPress version ** 6.2 or higher **
 *  Tested up to **7.1**
 *  PHP version ** 7.4 or higher **
 *  Language
 * [English (US)](https://wordpress.org/plugins/webosmotic-diagnostics-dashboard/)
 * Tags
 * [debug](https://ory.wordpress.org/plugins/tags/debug/)[diagnostics](https://ory.wordpress.org/plugins/tags/diagnostics/)
   [performance](https://ory.wordpress.org/plugins/tags/performance/)[security](https://ory.wordpress.org/plugins/tags/security/)
   [site health](https://ory.wordpress.org/plugins/tags/site-health/)
 *  [Advanced View](https://ory.wordpress.org/plugins/webosmotic-diagnostics-dashboard/advanced/)

## Ratings

No reviews have been submitted yet.

[Your review](https://wordpress.org/support/plugin/webosmotic-diagnostics-dashboard/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/webosmotic-diagnostics-dashboard/reviews/)

## Contributors

 *   [ sainawebosmotic7 ](https://profiles.wordpress.org/sainawebosmotic7/)
 *   [ chaitya997150 ](https://profiles.wordpress.org/chaitya997150/)

## Support

Got something to say? Need help?

 [View support forum](https://wordpress.org/support/plugin/webosmotic-diagnostics-dashboard/)