> ## Documentation Index
> Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Security Dashboard

> IT Security overview showing critical vulnerabilities, pending patches, active incidents, and compliance rate with navigation to each security sub-module.

This page is the top-level IT Security and Compliance dashboard. Navigate to it at `/it/security`.

## Overview

The Security Dashboard page loads summary statistics via `useSecurityDashboardStats` and displays four metric cards (Critical Vulnerabilities, Pending Patches, Active Incidents, Compliance Rate) and four section cards (Patch Tracking, Vulnerabilities, Security Incidents, IT Compliance), each with a stat and a navigation button to the respective sub-module page.

## Who it's for

This route is protected by `IT_PERMISSIONS.VIEW` (`it.view`) via the module-level `ITViewGuard`. No additional per-route permission gate exists beyond the module guard.

## Before you start

* No prerequisites. Data loads automatically.

## Steps

1. Navigate to **IT > Security**, or go directly to `/it/security`.
2. Review the four summary stat cards for an at-a-glance security posture.
3. Click **Go to Patch Tracking** to manage security patches.
4. Click **Go to Vulnerabilities** to track and remediate vulnerabilities.
5. Click **Go to Security Incidents** to manage security incidents.
6. Click **Go to IT Compliance** to review compliance requirements.

## Key concepts

* **Critical Vulnerabilities** — count of open vulnerabilities with `severity === 'critical'`.
* **Pending Patches** — count of active patches not yet fully deployed.
* **Active Incidents** — count of security incidents with status not resolved or closed.
* **Compliance Rate** — percentage of compliance requirements in a passing state.

## Related

<Columns cols={2}>
  <Card title="IT Service Management" icon="headset" href="/it/overview">
    IT Service Management overview.
  </Card>

  <Card title="Governance & parity" icon="scale-balanced" href="/governance/index" />
</Columns>

<Note>
  This page documents shipped product behavior. It is not medical, legal, or
  billing advice. Verify against your organization's policies and applicable
  regulations before using it for clinical, compliance, or billing decisions.
  Protected health information (PHI) shown in the product is governed by your
  tenant's access controls and is never exposed in this documentation.
</Note>

<Accordion title="Documentation sources">
  * src/routes/it.tsx
  * src/cores/it/pages/security/SecurityDashboardPage.tsx
  * src/cores/it/hooks/useSecurityDashboardStats.ts
</Accordion>
