This API provides an overview of the scan operations, including the total number of scans, the status of current scans, the most vulnerable targets, and the top vulnerabilities detected.
curl -X GET "https://api.securitysurface.com/v1/scan/overview"
\
-H "apikey: your_api_key" \
-H "Content-Type: application/json"
none
{
"scans_completed_count": 1578,
"scans_running_count": 0,
"scans_waiting_count": 0,
"scans_total_count": 2286,
"most_vulnerable_targets": [
{
"address": "example.com",
"crit_vuln_count": 0,
"high_vuln_count": 257,
"med_vuln_count": 8,
"low_vuln_count": 252
},
{
"address": "example.com",
"crit_vuln_count": 0,
"high_vuln_count": 106,
"med_vuln_count": 5,
"low_vuln_count": 139
}
],
"top_vulnerabilities": [
{
"count": 214,
"name": "Insecure Transportation Security Protocol Supported (TLS 1.1)",
"severity": 2
},
{
"count": 188,
"name": "SSL/TLS Not Implemented",
"severity": 2
},
{
"count": 186,
"name": "Insecure HTTP Usage",
"severity": 2
},
{
"count": 160,
"name": "Host header attack",
"severity": 2
},
{
"count": 524,
"name": "Cross site scripting (requiring unencoded quote)",
"severity": 1
}
],
"vuln_count": {
"crit": 119,
"high": 2479,
"med": 3229,
"low": 1006
},
"vuln_total_count": 6833
}