Skip to main content
GET
/
partner
/
vulnerability
/
assets
/
ip
Internal Unauthenticated/External - IP Addresses scan details for an asset
curl --request GET \
  --url https://api.example.com/partner/vulnerability/assets/ip
{
  "RiskGrade": "<string>",
  "TotalCVECount": 123,
  "CriticalCount": 123,
  "HighCount": 123,
  "MediumCount": 123,
  "LowCount": 123,
  "DeviceFingerprint": "<string>",
  "MACAddress": "<string>",
  "MACVendor": "<string>",
  "SNMPResult": "<string>",
  "FinishTime": "2023-11-07T05:31:56Z",
  "CVEs": [
    {
      "CveID": "<string>",
      "Title": "<string>",
      "FirstSeen": "2023-11-07T05:31:56Z",
      "Exploitability": [
        "<string>"
      ],
      "Severity": "<string>",
      "CVSS": 123,
      "EPSS": 123,
      "ScanId": 123,
      "Patchable": true
    }
  ],
  "OpenPorts": [
    {
      "ScanId": 123,
      "PortNumber": "<string>",
      "PortDescription": "<string>",
      "RiskLevel": "<string>"
    }
  ]
}

Headers

Authorization
string

Query Parameters

assetIp
string

Asset Ip of Internal Unauthenticated/External - IP Addresses Vulnerability scan.

Response

OK

Represents an IP asset with its associated vulnerability and scan details.

RiskGrade
string | null

The asset score indicating the overall risk level of the asset.

TotalCVECount
integer<int32>

Total number of vulnerabilities identified for this asset.

CriticalCount
integer<int32>

Number of critical vulnerabilities identified for this asset.

HighCount
integer<int32>

Number of high severity vulnerabilities identified for this asset.

MediumCount
integer<int32>

Number of medium severity vulnerabilities identified for this asset.

LowCount
integer<int32>

Number of low severity vulnerabilities identified for this asset.

DeviceFingerprint
string | null

The device fingerprint for this asset.

MACAddress
string | null

The MAC address for this asset.

MACVendor
string | null

The MAC vendor for this asset.

SNMPResult
string | null

The SNMP result for this asset.

FinishTime
string<date-time>

The finish time of the last scan for this asset.

CVEs
IpVulnerabilityCVE · object[] | null

List of CVEs identified for this asset.

OpenPorts
IpVulnerabilityOpenPort · object[] | null

List of open ports identified for this asset.