Skip to content

Latest commit

 

History

History
54 lines (36 loc) · 1.35 KB

README.md

File metadata and controls

54 lines (36 loc) · 1.35 KB

Microsoft Security Response Center API - Azure Function

Credits

A big thank you to Manbearpiet who created the initial code for this function.

Description

The function can be used to get the latest CVE and supporting information from the Microsoft Security Response Center (MSRC) API.

https://api.msrc.microsoft.com/cvrf/v2.0/cvrf/2021-Jul

Information returned from the API:

  • CVE {String}
  • Title {String}
  • Description {String}
  • CVSSBaseScore {String}
  • Exploitability {String}
  • Mitigations {String}
  • Revisions {Array}
  • Impact {String}

Further information and development ideas are discussed on the Microsoft Security Insights Discord server.

Usage

Create an Azure Function to run the code and pull data from the Microsoft Security Response Center API using a POST request.

To look up a CVE with a known CVE-YYYY-ID and known date in the following format yyyy-MMM

Request Body:

{
    "name": "CVE-2021-36934",
    "date": "2021-Jul"
}

To look up a specific CVE without knowing the date you can just search the CVE CVE-YYYY-ID

Request Body:

{
    "name": "CVE-2021-36934"
}

Sources