https://github.com/haginara/msrc-python
MSRC API for python
https://github.com/haginara/msrc-python
cve kb microsoft msrc python threat vulnerability
Last synced: 8 months ago
JSON representation
MSRC API for python
- Host: GitHub
- URL: https://github.com/haginara/msrc-python
- Owner: haginara
- Created: 2020-01-15T19:22:05.000Z (over 6 years ago)
- Default Branch: develop
- Last Pushed: 2024-06-17T22:19:57.000Z (about 2 years ago)
- Last Synced: 2025-08-27T06:17:03.444Z (10 months ago)
- Topics: cve, kb, microsoft, msrc, python, threat, vulnerability
- Language: Python
- Homepage:
- Size: 162 KB
- Stars: 7
- Watchers: 2
- Forks: 3
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
MSRC(Microsoft Security Research Center) API for python
============================================
Installation
------------
pip install msrc
Requirements
-----------
* requests
CLI Usage
---------
# Search with CVE
python msrc.py CVE-2018-8174
# Search with KB
python msrc.py KB5014699
API Usage
---------
```
from msrc import MSRC
from msrc import CVRF
client = MSRC()
cvrf: CVRF = client.get_cvrf("CVE-2017-0144")
cvrf.DocumentTitle
cvrf.DocumentType
cvrf.Vulnerability
```