An open API service indexing awesome lists of open source software.

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

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
```