Get Vulnerabilities Details

Use this API to fetch vulnerability details for vulnerabilities corresponding to the specified QIDs.

POST/pm/v1/vulnerabilities

Request Body ParametersRequest Body Parameters

Parameter

Mandatory/Optional

Data Type

Description

qids

Mandatory

integer

 QIDs to include in the search list.

Sample - Get Vulnerability details for specified QIDsSample - Get Vulnerability details for specified QIDs

API request

    
        curl -X POST
        "https://<QualysBaseURL>/pm/v1/vulnerabilities" -H "accept: application/json" -H "Authorization: Bearer <<jwt token>>" -H "Content-Type: application/json" -d "{\"qids\":[370341,91606,91851]}"
    

Request Body - Specify the QIDs to get related vulnerabilities

    
        {
    "qids": [
        370341,
        91606,
        91851
    ]
}
    

Response

    
       [
    {
        "id": 91851,
        "title": "Microsoft Windows Security Update for January 2022",
        "cves": [
            "CVE-2022-21910",
            "CVE-2022-21877",
            "CVE-2022-21833",
            "CVE-2022-21876",
            "CVE-2022-21912",
            "CVE-2022-21879",
            "CVE-2022-21835",
            "CVE-2022-21878",
            "CVE-2022-21834",
            "CVE-2022-21873",
            "CVE-2022-21872",
            "CVE-2022-21875",
            "CVE-2022-21874",
            "CVE-2022-21918",
            "CVE-2022-21919",
            "CVE-2022-21958",
            "CVE-2022-21914",
            "CVE-2022-21913",
            "CVE-2022-21836",
            "CVE-2022-21839",
            "CVE-2022-21916",
            "CVE-2022-21959",
            "CVE-2022-21838",
            "CVE-2022-21915",
            "CVE-2022-21880",
            "CVE-2022-21882",
            "CVE-2022-21881",
            "CVE-2022-21866",
            "CVE-2022-21865",
            "CVE-2022-21901",
            "CVE-2022-21868",
            "CVE-2022-21900",
            "CVE-2022-21867",
            "CVE-2022-21862",
            "CVE-2022-21861",
            "CVE-2022-21864",
            "CVE-2022-21863",
            "CVE-2022-21907",
            "CVE-2022-21906",
            "CVE-2022-21908",
            "CVE-2022-21903",
            "CVE-2022-21902",
            "CVE-2022-21869",
            "CVE-2022-21905",
            "CVE-2022-21904",
            "CVE-2022-21871",
            "CVE-2022-21870",
            "CVE-2022-21899",
            "CVE-2022-21898",
            "CVE-2022-21857",
            "CVE-2022-21895",
            "CVE-2022-21851",
            "CVE-2022-21894",
            "CVE-2022-21850",
            "CVE-2022-21897",
            "CVE-2022-21896",
            "CVE-2022-21852",
            "CVE-2022-21859",
            "CVE-2022-21858",
            "CVE-2021-36976",
            "CVE-2022-21860",
            "CVE-2022-21888",
            "CVE-2022-21921",
            "CVE-2022-21887",
            "CVE-2022-21964",
            "CVE-2022-21920",
            "CVE-2022-21922",
            "CVE-2022-21884",
            "CVE-2022-21961",
            "CVE-2022-21960",
            "CVE-2022-21963",
            "CVE-2022-21885",
            "CVE-2022-21962",
            "CVE-2021-22947",
            "CVE-2022-21928",
            "CVE-2022-21925",
            "CVE-2022-21924",
            "CVE-2022-21847",
            "CVE-2022-21893",
            "CVE-2022-21892"
        ],
        "detectedDate": null,
        "severity": 4,
        "vulnType": "VULNERABILITY"
    },
    {
        "id": 370341,
        "title": "Mozilla Firefox Integer Overflow Vulnerability (MFSA2017-08)",
        "cves": [
            "CVE-2017-5428"
        ],
        "detectedDate": null,
        "severity": 5,
        "vulnType": "VULNERABILITY"
    },
    {
        "id": 91606,
        "title": "Microsoft Malicious Software Removal Tool (MSRT) Privilege Escalation Vulnerability - February 2020",
        "cves": [
            "CVE-2020-0733"
        ],
        "detectedDate": null,
        "severity": 4,
        "vulnType": "VULNERABILITY"
    }
]