This page provides a form to record a new security patch in the IT Security module. Navigate to it atDocumentation Index
Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt
Use this file to discover all available pages before exploring further.
/it/security/patches/new.
Overview
The New Patch page presents a single-step form for adding a security patch record. Required fields are Patch ID and Patch Name; all other fields (severity, release date, status, affected software, description) are optional. On successful submission the user is redirected to the Patch Tracking list at/it/security/patches.
Who it’s for
This route is protected byIT_PERMISSIONS.VIEW (it.view) via the module-level ITViewGuard. No additional per-route permission gate exists beyond the module guard.
Before you start
- Obtain the vendor-assigned patch identifier (e.g.,
KB5034441). - Know the affected software and the applicable severity level.
- Ensure you have access to the IT Security module.
Steps
- Navigate to IT > Security > Patch Tracking and click Add Patch, or go directly to
/it/security/patches/new. - Enter a Patch ID (required) — the vendor-assigned identifier.
- Enter a Patch Name (required) — a human-readable label.
- Select a Severity: Critical, High, Medium (default), or Low.
- Set the Release Date (defaults to today).
- Select a Status: Active (default), Superseded, or Deprecated.
- Optionally enter the Affected Software and a Description.
- Click Create Patch. On success you are redirected to Patch Tracking.
Key concepts
- Patch ID — the vendor-supplied identifier stored as
patch_id(e.g., a Microsoft KB number). - Severity —
critical | high | medium | lowfrom theSecuritySeveritytype. - Status —
active | superseded | deprecatedfrom thePatchStatustype. - Deployment tracking — once created, patch deployment per asset is tracked separately from the patch record itself.
Related
IT Service Management
IT Service Management overview.
Governance & parity
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.
Documentation sources
Documentation sources
- src/routes/it.tsx
- src/cores/it/pages/security/patches/NewPatchPage.tsx
- src/cores/it/hooks/useSecurityPatchMutations.ts
- src/cores/it/types/security.ts