This Python script fetches Common Vulnerabilities and Exposures (CVE) data from the National Vulnerability Database (NVD), filters the data using pandas, and prints out random descriptions of vulnerabilities. Getting Started Prerequisites
Python 3.x
Pandas library
Requests library
Clone the repository or download the script file to your local machine.
Install the required libraries by running the following command:
pip install pandas requests
Run the script by executing the following command:
python cve_analyzer.py
The script will fetch the latest CVE data from the NVD API and parse it.
It will print out random descriptions of vulnerabilities discovered in the year 2000.
The National Vulnerability Database (NVD) for providing the CVE data.
The pandas library developers for their powerful data manipulation capabilities.