There are several options to acquire information about vulnerabilities in Contrast Security:
You can click on each vulnerabilities to get more information. Please note that we have done any work yet but still able to see some vulnerabilities that Contrast was able to identify.
Please review [the API documentation] (https://api.contrastsecurity.com)
Here is a sample API call to get a brief summary of found vulnerabilities:
curl -X GET https://c.contrastsecurity.com/Contrast/api/ng/{orgUuid}/traces/{appId}/quick -H 'Authorization:{authorization-key}' -H 'API-Key:{API-Key}'
The output will look like this:
{
"success" : true,
"messages" : [ "Vulnerability quick filters loaded successfully" ],
"filters" : [ {
"name" : "All",
"count" : 18,
"filterType" : "ALL"
}, {
"name" : "Open",
"count" : 18,
"filterType" : "OPEN"
}, {
"name" : "High Confidence",
"count" : 0,
"filterType" : "HIGH_CONFIDENCE"
} ]
}