الانتقال إلى المحتوى الرئيسي
GET
/
scans
/
cve
/
{scanScheduleId}
/
status
الحصول على أحدث حالة فحص
curl --request GET \
  --url https://api.altostrat.io/scans/cve/{scanScheduleId}/status \
  --header 'Authorization: Bearer <token>'
{
  "targets": [
    "9c3c1392-7f36-4240-85f2-273573c0384a"
  ],
  "scanned": [
    "9c3c1392-7f36-4240-85f2-273573c0384a"
  ],
  "failed": []
}

Authorizations

Authorization
string
header
required

أدخل رمز الحامل الخاص بك بالتنسيق: Bearer {token}

Path Parameters

scanScheduleId
string<uuid>
required

المعرف الفريد لجدول الفحص.

Example:

"9c43cc95-f313-49a3-b632-524f7a24503b"

Response

حالة أحدث فحص للجدول.

targets
string<uuid>[]

قائمة بمعرفات المواقع التي تم استهدافها في الفحص.

Example:
["9c3c1392-7f36-4240-85f2-273573c0384a"]
scanned
string<uuid>[]

قائمة بمعرفات المواقع التي اكتمل فحصها (بنجاح أو مع فشل).

Example:
["9c3c1392-7f36-4240-85f2-273573c0384a"]
failed
string<uuid>[]

قائمة بمعرفات المواقع التي فشل الفحص في إكمالها.

Example:
[]