Skip to main content
GET
/
mac-address
/
cve
/
status
List CVE Status Overrides
curl --request GET \
  --url https://api.altostrat.io/scans/cve/mac-address/cve/status \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "mac_address": "<string>",
    "cve_id": "<string>",
    "status": "open",
    "justification": "<string>",
    "scan_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "expiration_date": "2023-11-07T05:31:56Z",
    "created_by": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "updated_by": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "message": "CVE status updated successfully"
  }
]

Authorizations

Authorization
string
header
required

Authentication token obtained via Altostrat platform login.

Query Parameters

mac_address
string

Filter by MAC address.

cve_id
string

Filter by CVE ID.

status
enum<string>

Filter by status.

Available options:
open,
accepted,
mitigated

Response

A list of CVE status override records.

id
string<uuid>
mac_address
string
cve_id
string
status
enum<string>
Available options:
open,
accepted,
mitigated
justification
string | null
scan_id
string<uuid> | null

The scan ID during which this status was last relevant (if applicable).

expiration_date
string<date-time> | null

When this status record expires (currently set to 5 mins after creation).

created_by
string<uuid> | null

User ID who created this status record.

updated_by
string<uuid> | null

User ID who last updated this status record.

created_at
string<date-time>
updated_at
string<date-time>
message
string
Example:

"CVE status updated successfully"

I