A command-line interface tool to explore CVE (Common Vulnerabilities and Exposures) information.
- Look up CVE information from the FIRST EPSS API
- Beautiful CLI interface with spinners and colored output
- Fast and easy to use
pip install cve-explorer-cliAfter installation, you can use the cvex command:
cvex lookup --id CVE-2022-27225cvex --help- Python >= 3.11
To contribute or develop locally:
# Clone the repository
git clone https://github.com/meddlin/cve-explorer-cli.git
cd cve-explorer-cli
# Create a virtual environment
python3 -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
# Install dependencies
pip install -r requirements.txt
pip install -r requirements-dev.txt
# Run locally
python -m cve_explorer_cli.main lookup --id CVE-2022-27225