# Rhel Cve

> Find scecific CVE related to Red Hat Enterprise Linux (RHEL) from official Red Hat website via REST API and search for related Red Hat Security Advisory (RHSA) if available

- Skill: `voraviz/rhel-cve` (Agent Skill)
- Install (CLI): `npx skillmds@latest add voraviz/rhel-cve`
- Raw SKILL.md: https://api.skillmd.com/api/skills/voraviz/rhel-cve/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Security
- Author: voraviz (https://skillmd.com/u/voraviz)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/voraviz/rhel-cve

---


# RHEL CVE

## When to activate
- The user asks you about Red Hat Enterprise Linux (RHEL) CVE
- The user asks you about security fix for RHEL with CVE
- The user asks you about security fix for RHSA

## CVE and RHSA 

<Steps>
<Step>
Ask CVE number if user still not provided. 
</Step>
<Step>
Use this URL for GET request. Result is in JSON format
- use this base URL "https://access.redhat.com/hydra/rest/securitydata/cve/"
- append with CVE 
- append with .json
- do GET request
</Step>
<Step>
Parse return JSON and summary information about CVE including
- Publish date
- CVSS score
- CVSS scoring vector into Attack vector, Attach coplexity, Priviledges required, User interaction, scope, confidenciality impact, Intrigrity impact, availability impact,CVSS status and severity
- Statement
- Mitigation
- Package state with product name and fix state
- affected_release with product name and advisory
- RHBA provided by Red Hat if available
</Step>
<Step>
If user ask for RHSA use this URL for GET request. Result is in JSON format
- use this base URL "https://access.redhat.com/hydra/rest/securitydata/csaf/"
- append with RHSA 
- append with .json
- do GET request
</Step>
</Steps>

<!-- ### Markdown and CSV Template
- Use Markdown and CSV files under directory references as template for create Markdown (.md) and CSV (.csv) -->



