Skip to main content
GET
/
partner
/
vulnerability
/
assets
/
authenticated
Internal Authenticated scan details for an asset
curl --request GET \
  --url https://api.example.com/partner/vulnerability/assets/authenticated
[
  {
    "AssetScore": "<string>",
    "TotalNumberOfVulnerabilities": 123,
    "NumberOfCriticalVulnerabilities": 123,
    "NumberOfHighVulnerabilities": 123,
    "NumberOfMediumVulnerabilities": 123,
    "NumberOfLowVulnerabilities": 123,
    "AssetName": "<string>",
    "AgentName": "<string>",
    "LastChecked": "<string>",
    "LastScan": "<string>",
    "Tags": "<string>",
    "RootCauses": [
      {
        "RootCause": "<string>",
        "FirstSeen": "2023-11-07T05:31:56Z",
        "Exploitability": [
          "<string>"
        ],
        "HighestCVSS": 123,
        "HighestEPSS": 123,
        "TotalNumberOfVulnerabilities": 123,
        "Patchable": true,
        "Id": 123
      }
    ],
    "CVEs": [
      {
        "CveID": "<string>",
        "CveTitle": "<string>",
        "FirstSeen": "2023-11-07T05:31:56Z",
        "Exploitability": [
          "<string>"
        ],
        "Severity": "<string>",
        "CVSS": 123,
        "EPSS": 123,
        "ScanId": 123,
        "Patchable": true
      }
    ],
    "OpenPorts": [
      {
        "OpenPort": "<string>",
        "OpenPortName": "<string>",
        "Protocol": "<string>",
        "Severity": "<string>"
      }
    ]
  }
]

Headers

Authorization
string

Query Parameters

assetId
integer<int32>
required

Asset Id of Internal Authenticated Vulnerability scan.

Response

OK

AssetScore
string | null

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

TotalNumberOfVulnerabilities
integer<int32>

Total number of vulnerabilities identified for this asset.

NumberOfCriticalVulnerabilities
integer<int32>

Number of critical vulnerabilities identified for this asset.

NumberOfHighVulnerabilities
integer<int32>

Number of high severity vulnerabilities identified for this asset.

NumberOfMediumVulnerabilities
integer<int32>

Number of medium severity vulnerabilities identified for this asset.

NumberOfLowVulnerabilities
integer<int32>

Number of low severity vulnerabilities identified for this asset.

AssetName
string | null

Name of the asset.

AgentName
string | null

Name of the agent associated with this asset.

LastChecked
string | null

The date and time when the asset was last checked.

LastScan
string | null

The date and time when the asset was last scanned.

Tags
string | null

Tags associated with the asset.

RootCauses
Internal Authenticated Details Root Cause · object[] | null

Root causes identified for vulnerabilities on this asset.

CVEs
Internal Authenticated Details CVE · object[] | null

List of CVEs associated with this asset.

OpenPorts
Internal Authenticated Details Open Port · object[] | null

List of open ports identified on this asset.