From 97ae693d77997bed9beca55bb3bfece85c12e73f Mon Sep 17 00:00:00 2001 From: david grossman Date: Fri, 27 Mar 2026 09:58:32 -0400 Subject: [PATCH 1/2] chore: fix v3 backups examples --- tests/backup.py | 10 +++++-- tests/backup_aio.py | 16 +++++----- tests/integration_aio.py | 63 ++++++++++++++++++++++----------------- tests/integration_test.py | 14 +++++++-- tests/quickstart.py | 9 ++++-- tests/quickstart_aio.py | 12 +++++--- 6 files changed, 76 insertions(+), 48 deletions(-) diff --git a/tests/backup.py b/tests/backup.py index 36c5d23e..26da5e8d 100644 --- a/tests/backup.py +++ b/tests/backup.py @@ -1,3 +1,4 @@ +import json import urllib.request import vulncheck_sdk import os @@ -6,15 +7,18 @@ configuration = vulncheck_sdk.Configuration() configuration.api_key["Bearer"] = TOKEN +configuration.ignore_operation_servers = True with vulncheck_sdk.ApiClient(configuration) as api_client: - endpoints_client = vulncheck_sdk.EndpointsApi(api_client) + backup_client = vulncheck_sdk.BackupApi(api_client) index = "initial-access" - api_response = endpoints_client.backup_index_get(index) + raw = backup_client.backup_index_get_without_preload_content(index) + response_data = json.loads(raw.read()) + download_url = response_data["data"][0]["url"] file_path = f"{index}.zip" - with urllib.request.urlopen(api_response.data[0].url) as response: + with urllib.request.urlopen(download_url) as response: with open(file_path, "wb") as file: file.write(response.read()) diff --git a/tests/backup_aio.py b/tests/backup_aio.py index cedabd70..34ab6176 100644 --- a/tests/backup_aio.py +++ b/tests/backup_aio.py @@ -1,4 +1,5 @@ import asyncio +import json import os import urllib.request import vulncheck_sdk.aio as vcaio @@ -8,6 +9,7 @@ configuration = vcaio.Configuration() configuration.api_key["Bearer"] = TOKEN +configuration.ignore_operation_servers = True def download_sync(url, file_path): @@ -23,23 +25,19 @@ def download_sync(url, file_path): async def main(): # Use 'async with' to manage the connection life-cycle async with vcaio.ApiClient(configuration) as api_client: - endpoints_client = vcaio.EndpointsApi(api_client) + backup_client = vcaio.BackupApi(api_client) index = "initial-access" - # 'await' the coroutine to get the actual response data - api_response = await endpoints_client.backup_index_get(index) + # 'await' the coroutine to get the raw response bytes + raw = await backup_client.backup_index_get_without_preload_content(index) + response_data = json.loads(await raw.read()) + download_url = response_data["data"][0]["url"] - if not api_response.data: - print("No backup URL found.") - return - - download_url = api_response.data[0].url file_path = f"{index}.zip" print(f"Downloading {index} via urllib (offloaded to thread)...") # Use asyncio.to_thread to run the blocking call safely - # 'await' the coroutine to get the actual response data await asyncio.to_thread(download_sync, download_url, file_path) print(f"Successfully saved to {file_path}") diff --git a/tests/integration_aio.py b/tests/integration_aio.py index f7dfcd94..8e7d6f0f 100644 --- a/tests/integration_aio.py +++ b/tests/integration_aio.py @@ -1,6 +1,7 @@ import os import asyncio import vulncheck_sdk.aio as vcaio +from vulncheck_sdk.aio.api.backup_api import BackupApi from vulncheck_sdk.aio.api.endpoints_api import EndpointsApi from vulncheck_sdk.aio.api.indices_api import IndicesApi from vulncheck_sdk.aio.exceptions import ApiException, UnauthorizedException @@ -30,19 +31,19 @@ async def _get_http_status(func, *args) -> int: # --- EndpointsApi Tests --- -async def test_openapi_get(api: EndpointsApi): +async def _check_openapi_get(api: EndpointsApi) -> None: print(f"Testing test_openapi_get") status = await _get_http_status(api.openapi_get_with_http_info) assert status == 200 -async def test_entitlements_get(api: EndpointsApi): +async def _check_entitlements_get(api: EndpointsApi) -> None: print(f"Testing test_entitlements_get") status = await _get_http_status(api.entitlements_get_with_http_info) assert status == 200 -async def test_purl_get(api: EndpointsApi): +async def _check_purl_get(api: EndpointsApi) -> None: print(f"Testing test_purl_get") status = await _get_http_status( api.purl_get_with_http_info, "pkg:hex/coherence@0.1.2" @@ -50,13 +51,13 @@ async def test_purl_get(api: EndpointsApi): assert status == 200 -async def test_index_get(api: EndpointsApi): +async def _check_index_get(api: EndpointsApi) -> None: print(f"Testing test_index_get") status = await _get_http_status(api.index_get_with_http_info) assert status == 200 -async def test_cpe_get(api: EndpointsApi): +async def _check_cpe_get(api: EndpointsApi) -> None: print(f"Testing test_cpe_get") status = await _get_http_status( api.cpe_get_with_http_info, "cpe:/a:microsoft:internet_explorer:8.0.6001:beta" @@ -64,25 +65,25 @@ async def test_cpe_get(api: EndpointsApi): assert status == 200 -async def test_backup_get(api: EndpointsApi): +async def _check_backup_get(backup: BackupApi) -> None: print(f"Testing test_backup_get") - status = await _get_http_status(api.backup_get_with_http_info) + status = await _get_http_status(backup.backup_get_with_http_info) assert status == 200 -async def test_backup_index_get(api: EndpointsApi): +async def _check_backup_index_get(backup: BackupApi) -> None: print(f"Testing test_backup_index_get") - status = await _get_http_status(api.backup_index_get_with_http_info, "") + status = await _get_http_status(backup.backup_index_get_with_http_info, "") assert status == 200 -async def test_pdns_vulncheck_c2_get(api: EndpointsApi): +async def _check_pdns_vulncheck_c2_get(api: EndpointsApi) -> None: print(f"Testing test_pdns_vulncheck_c2_get") status = await _get_http_status(api.pdns_vulncheck_c2_get_with_http_info, "") assert status == 200 -async def test_rules_initial_access_type_get(api: EndpointsApi): +async def _check_rules_initial_access_type_get(api: EndpointsApi) -> None: print(f"Testing test_rules_initial_access_type_get") status = await _get_http_status( api.rules_initial_access_type_get_with_http_info, "suricata" @@ -93,7 +94,7 @@ async def test_rules_initial_access_type_get(api: EndpointsApi): # --- IndicesApi Tests --- -async def test_all_indices(indices: IndicesApi): +async def _check_all_indices(indices: IndicesApi) -> None: targets = [ "index_nist_nvd2_get_with_http_info", "index_vulncheck_kev_get_with_http_info", @@ -103,7 +104,6 @@ async def test_all_indices(indices: IndicesApi): for name in targets: method = getattr(indices, name) - # Passing strings for limit/page to satisfy Pydantic validation status = await _get_http_status(method, 1, 1) print(f"Testing {name}: Result {status}") assert status == 200 @@ -112,32 +112,39 @@ async def test_all_indices(indices: IndicesApi): # --- Orchestrator --- -async def main(): +async def main() -> None: if not API_TOKEN: print("Warning: VULNCHECK_API_TOKEN is not set.") config = vcaio.Configuration() config.api_key["Bearer"] = API_TOKEN + backup_config = vcaio.Configuration() + backup_config.api_key["Bearer"] = API_TOKEN + backup_config.ignore_operation_servers = True + # The 'async with' ensures the ClientSession is closed async with vcaio.ApiClient(config) as client: endpoints_api = vcaio.EndpointsApi(client) indices_api = vcaio.IndicesApi(client) - print("--- Running Tests ---") - asyncio.gather( - test_openapi_get(endpoints_api), - test_entitlements_get(endpoints_api), - test_purl_get(endpoints_api), - test_index_get(endpoints_api), - test_cpe_get(endpoints_api), - test_backup_get(endpoints_api), - test_backup_index_get(endpoints_api), - test_pdns_vulncheck_c2_get(endpoints_api), - test_rules_initial_access_type_get(endpoints_api), - ) - - await test_all_indices(indices_api) + async with vcaio.ApiClient(backup_config) as backup_client: + backup_api = BackupApi(backup_client) + + print("--- Running Tests ---") + await asyncio.gather( + _check_openapi_get(endpoints_api), + _check_entitlements_get(endpoints_api), + _check_purl_get(endpoints_api), + _check_index_get(endpoints_api), + _check_cpe_get(endpoints_api), + _check_backup_get(backup_api), + _check_backup_index_get(backup_api), + _check_pdns_vulncheck_c2_get(endpoints_api), + _check_rules_initial_access_type_get(endpoints_api), + ) + + await _check_all_indices(indices_api) # --- CRITICAL FIX FOR "UNCLOSED CONNECTOR" --- # aiohttp requires a small window of time to allow the diff --git a/tests/integration_test.py b/tests/integration_test.py index 77bbbb31..431bb9cb 100644 --- a/tests/integration_test.py +++ b/tests/integration_test.py @@ -1,5 +1,6 @@ import os import vulncheck_sdk +from vulncheck_sdk.api.backup_api import BackupApi from vulncheck_sdk.api.endpoints_api import EndpointsApi from vulncheck_sdk.api.indices_api import IndicesApi from vulncheck_sdk.api_response import ApiResponse @@ -48,13 +49,13 @@ def test_cpe_get(): def test_backup_get(): - api_instance = _get_api_instance(API_TOKEN) + api_instance = _get_backup_instance(API_TOKEN) status = _get_http_status(api_instance.backup_get_with_http_info) assert status == 200 def test_backup_index_get(): - api_instance = _get_api_instance(API_TOKEN) + api_instance = _get_backup_instance(API_TOKEN) status = _get_http_status(api_instance.backup_index_get_with_http_info, "") assert status == 200 @@ -132,6 +133,15 @@ def _get_api_instance(token: str = "") -> EndpointsApi: return vulncheck_sdk.EndpointsApi(client) +def _get_backup_instance(token: str = "") -> BackupApi: + config = vulncheck_sdk.Configuration() + if token != "": + config.api_key["Bearer"] = token + config.ignore_operation_servers = True + client = vulncheck_sdk.ApiClient(config) + return BackupApi(client) + + def _get_indices_instance(token: str = "") -> IndicesApi: config = vulncheck_sdk.Configuration() if token != "": diff --git a/tests/quickstart.py b/tests/quickstart.py index 0e832c28..50159c99 100644 --- a/tests/quickstart.py +++ b/tests/quickstart.py @@ -1,3 +1,4 @@ +import json import urllib.request import vulncheck_sdk import os @@ -8,6 +9,7 @@ # Now let's create a configuration object configuration = vulncheck_sdk.Configuration() configuration.api_key["Bearer"] = TOKEN +configuration.ignore_operation_servers = True # Pass that config object to our API client and now... with vulncheck_sdk.ApiClient(configuration) as api_client: @@ -29,10 +31,13 @@ print(cve) # Download a Backup + backup_client = vulncheck_sdk.BackupApi(api_client) index = "initial-access" - api_response = endpoints_client.backup_index_get(index) + raw = backup_client.backup_index_get_without_preload_content(index) + response_data = json.loads(raw.read()) + download_url = response_data["data"][0]["url"] file_path = f"{index}.zip" - with urllib.request.urlopen(api_response.data[0].url) as response: + with urllib.request.urlopen(download_url) as response: with open(file_path, "wb") as file: file.write(response.read()) diff --git a/tests/quickstart_aio.py b/tests/quickstart_aio.py index 1676f97e..70e27443 100644 --- a/tests/quickstart_aio.py +++ b/tests/quickstart_aio.py @@ -1,4 +1,5 @@ import asyncio +import json import os import aiohttp import vulncheck_sdk.aio as vcaio @@ -8,6 +9,7 @@ configuration = vcaio.Configuration() configuration.api_key["Bearer"] = TOKEN +configuration.ignore_operation_servers = True async def run_vulnerability_checks(): @@ -15,6 +17,7 @@ async def run_vulnerability_checks(): async with vcaio.ApiClient(configuration) as api_client: endpoints_client = vcaio.EndpointsApi(api_client) indices_client = vcaio.IndicesApi(api_client) + backup_client = vcaio.BackupApi(api_client) # --- PURL Search --- # 'await' the coroutine to get results @@ -39,11 +42,12 @@ async def run_vulnerability_checks(): # --- Download Backup (Async) --- index_name = "initial-access" - # 'await' the coroutine to get results - backup_response = await endpoints_client.backup_index_get(index_name) + # 'await' the coroutine to get raw response bytes + raw = await backup_client.backup_index_get_without_preload_content(index_name) + response_data = json.loads(await raw.read()) - if backup_response.data: - download_url = backup_response.data[0].url + if response_data.get("data"): + download_url = response_data["data"][0]["url"] file_path = f"{index_name}.zip" print(f"Downloading backup from {download_url}...") From de1c20134527801e02f7b93e60d1aa195f893b43 Mon Sep 17 00:00:00 2001 From: "vulncheck-oss-release-bot[bot]" <187049212+vulncheck-oss-release-bot[bot]@users.noreply.github.com> Date: Fri, 27 Mar 2026 10:17:40 -0400 Subject: [PATCH 2/2] Update Python SDK (#150) [bot](2026-03-27 14:06:27) Sync SDK with OpenAPI spec Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- README.md | 47 +- docs/AdvisoryASRG.md | 1 + docs/AdvisoryApacheArrow.md | 1 + docs/AdvisoryApacheSuperset.md | 1 + docs/AdvisoryCISAAlert.md | 9 +- docs/AdvisoryCustomCPE.md | 31 + docs/AdvisoryFastly.md | 1 + docs/AdvisoryHaskellSADBAdvisory.md | 1 + docs/AdvisoryMACert.md | 1 + docs/AdvisoryMCna.md | 2 +- docs/AdvisoryMaliciousVSCodeExts.md | 36 + docs/AdvisoryNI.md | 1 + docs/AdvisoryPanasonic.md | 1 + docs/AdvisoryQualys.md | 1 + docs/AdvisorySSDAdvisory.md | 1 + docs/AdvisorySamba.md | 2 + docs/AdvisoryTI.md | 1 + docs/AdvisoryTraneTechnology.md | 1 + docs/AdvisoryWithSecure.md | 1 + docs/ApiInitialAccessArtifact.md | 2 + docs/BackupApi.md | 169 +++++ docs/BackupBackupResponse.md | 34 + docs/BackupFeedItem.md | 33 + docs/BackupListBackupsResponse.md | 30 + docs/EndpointsApi.md | 160 ----- docs/IndicesApi.md | 139 ++++ ...ryMaliciousVSCodeExtsPaginatePagination.md | 32 + openapi.json | 2 +- poetry.lock | 108 +-- pyproject.toml | 2 +- python-generator-config.yaml | 2 +- setup.py | 2 +- test/aio/test_advisory_apache_arrow.py | 1 + test/aio/test_advisory_apache_superset.py | 1 + test/aio/test_advisory_asrg.py | 1 + test/aio/test_advisory_cisa_alert.py | 15 +- test/aio/test_advisory_custom_cpe.py | 70 ++ test/aio/test_advisory_fastly.py | 1 + .../test_advisory_haskell_sadb_advisory.py | 3 +- test/aio/test_advisory_m_cna.py | 38 +- test/aio/test_advisory_m_containers.py | 38 +- test/aio/test_advisory_ma_cert.py | 1 + .../test_advisory_malicious_vs_code_exts.py | 58 ++ test/aio/test_advisory_mitre_cve_list_v5.py | 38 +- .../test_advisory_mitre_cve_list_v5_ref.py | 38 +- test/aio/test_advisory_ni.py | 1 + test/aio/test_advisory_panasonic.py | 1 + test/aio/test_advisory_qualys.py | 1 + test/aio/test_advisory_samba.py | 4 +- test/aio/test_advisory_ssd_advisory.py | 3 +- test/aio/test_advisory_ti.py | 1 + test/aio/test_advisory_trane_technology.py | 1 + .../test_advisory_vuln_check_cve_list_v5.py | 38 +- test/aio/test_advisory_vulnrichment.py | 38 +- .../test_advisory_vulnrichment_containers.py | 38 +- .../aio/test_advisory_vulnrichment_cve_ref.py | 38 +- test/aio/test_advisory_with_secure.py | 1 + test/aio/test_api_initial_access.py | 6 + test/aio/test_api_initial_access_artifact.py | 6 + test/aio/test_backup_api.py | 46 ++ test/aio/test_backup_backup_response.py | 56 ++ test/aio/test_backup_feed_item.py | 55 ++ test/aio/test_backup_list_backups_response.py | 58 ++ test/aio/test_endpoints_api.py | 14 - test/aio/test_indices_api.py | 7 + ...visory_apache_arrow_paginate_pagination.py | 1 + ...ory_apache_superset_paginate_pagination.py | 1 + ...array_advisory_asrg_paginate_pagination.py | 1 + ...advisory_cisa_alert_paginate_pagination.py | 15 +- ...ray_advisory_fastly_paginate_pagination.py | 1 + ...skell_sadb_advisory_paginate_pagination.py | 3 +- ...ay_advisory_ma_cert_paginate_pagination.py | 1 + ...icious_vs_code_exts_paginate_pagination.py | 96 +++ ...y_mitre_cve_list_v5_paginate_pagination.py | 38 +- ...a_array_advisory_ni_paginate_pagination.py | 1 + ..._advisory_panasonic_paginate_pagination.py | 1 + ...ray_advisory_qualys_paginate_pagination.py | 1 + ...rray_advisory_samba_paginate_pagination.py | 4 +- ...visory_ssd_advisory_paginate_pagination.py | 3 +- ...a_array_advisory_ti_paginate_pagination.py | 1 + ...ry_trane_technology_paginate_pagination.py | 1 + ...n_check_cve_list_v5_paginate_pagination.py | 38 +- ...visory_vulnrichment_paginate_pagination.py | 38 +- ...dvisory_with_secure_paginate_pagination.py | 1 + ..._api_initial_access_paginate_pagination.py | 6 + .../test_search_v4_advisory_return_value.py | 38 +- test/blocking/test_advisory_apache_arrow.py | 1 + .../blocking/test_advisory_apache_superset.py | 1 + test/blocking/test_advisory_asrg.py | 1 + test/blocking/test_advisory_cisa_alert.py | 15 +- test/blocking/test_advisory_custom_cpe.py | 70 ++ test/blocking/test_advisory_fastly.py | 1 + .../test_advisory_haskell_sadb_advisory.py | 3 +- test/blocking/test_advisory_m_cna.py | 38 +- test/blocking/test_advisory_m_containers.py | 38 +- test/blocking/test_advisory_ma_cert.py | 1 + .../test_advisory_malicious_vs_code_exts.py | 58 ++ .../test_advisory_mitre_cve_list_v5.py | 38 +- .../test_advisory_mitre_cve_list_v5_ref.py | 38 +- test/blocking/test_advisory_ni.py | 1 + test/blocking/test_advisory_panasonic.py | 1 + test/blocking/test_advisory_qualys.py | 1 + test/blocking/test_advisory_samba.py | 4 +- test/blocking/test_advisory_ssd_advisory.py | 3 +- test/blocking/test_advisory_ti.py | 1 + .../test_advisory_trane_technology.py | 1 + .../test_advisory_vuln_check_cve_list_v5.py | 38 +- test/blocking/test_advisory_vulnrichment.py | 38 +- .../test_advisory_vulnrichment_containers.py | 38 +- .../test_advisory_vulnrichment_cve_ref.py | 38 +- test/blocking/test_advisory_with_secure.py | 1 + test/blocking/test_api_initial_access.py | 6 + .../test_api_initial_access_artifact.py | 6 + test/blocking/test_backup_api.py | 46 ++ test/blocking/test_backup_backup_response.py | 56 ++ test/blocking/test_backup_feed_item.py | 55 ++ .../test_backup_list_backups_response.py | 58 ++ test/blocking/test_endpoints_api.py | 14 - test/blocking/test_indices_api.py | 7 + ...visory_apache_arrow_paginate_pagination.py | 1 + ...ory_apache_superset_paginate_pagination.py | 1 + ...array_advisory_asrg_paginate_pagination.py | 1 + ...advisory_cisa_alert_paginate_pagination.py | 15 +- ...ray_advisory_fastly_paginate_pagination.py | 1 + ...skell_sadb_advisory_paginate_pagination.py | 3 +- ...ay_advisory_ma_cert_paginate_pagination.py | 1 + ...icious_vs_code_exts_paginate_pagination.py | 96 +++ ...y_mitre_cve_list_v5_paginate_pagination.py | 38 +- ...a_array_advisory_ni_paginate_pagination.py | 1 + ..._advisory_panasonic_paginate_pagination.py | 1 + ...ray_advisory_qualys_paginate_pagination.py | 1 + ...rray_advisory_samba_paginate_pagination.py | 4 +- ...visory_ssd_advisory_paginate_pagination.py | 3 +- ...a_array_advisory_ti_paginate_pagination.py | 1 + ...ry_trane_technology_paginate_pagination.py | 1 + ...n_check_cve_list_v5_paginate_pagination.py | 38 +- ...visory_vulnrichment_paginate_pagination.py | 38 +- ...dvisory_with_secure_paginate_pagination.py | 1 + ..._api_initial_access_paginate_pagination.py | 6 + .../test_search_v4_advisory_return_value.py | 38 +- vulncheck_sdk/__init__.py | 16 +- vulncheck_sdk/aio/__init__.py | 16 +- vulncheck_sdk/aio/api/__init__.py | 1 + vulncheck_sdk/aio/api/backup_api.py | 568 +++++++++++++++ vulncheck_sdk/aio/api/endpoints_api.py | 527 -------------- vulncheck_sdk/aio/api/indices_api.py | 664 ++++++++++++++++++ vulncheck_sdk/aio/api_client.py | 2 +- vulncheck_sdk/aio/configuration.py | 2 +- vulncheck_sdk/aio/models/__init__.py | 6 + .../aio/models/advisory_apache_arrow.py | 4 +- .../aio/models/advisory_apache_superset.py | 4 +- vulncheck_sdk/aio/models/advisory_asrg.py | 4 +- .../aio/models/advisory_cisa_alert.py | 50 +- .../aio/models/advisory_custom_cpe.py | 94 +++ vulncheck_sdk/aio/models/advisory_fastly.py | 4 +- .../models/advisory_haskell_sadb_advisory.py | 6 +- vulncheck_sdk/aio/models/advisory_m_cna.py | 6 +- vulncheck_sdk/aio/models/advisory_ma_cert.py | 4 +- .../models/advisory_malicious_vs_code_exts.py | 100 +++ vulncheck_sdk/aio/models/advisory_ni.py | 4 +- .../aio/models/advisory_panasonic.py | 4 +- vulncheck_sdk/aio/models/advisory_qualys.py | 4 +- vulncheck_sdk/aio/models/advisory_samba.py | 8 +- .../aio/models/advisory_ssd_advisory.py | 6 +- vulncheck_sdk/aio/models/advisory_ti.py | 4 +- .../aio/models/advisory_trane_technology.py | 4 +- .../aio/models/advisory_with_secure.py | 4 +- .../aio/models/api_initial_access_artifact.py | 6 +- .../aio/models/backup_backup_response.py | 96 +++ vulncheck_sdk/aio/models/backup_feed_item.py | 94 +++ .../models/backup_list_backups_response.py | 96 +++ ...icious_vs_code_exts_paginate_pagination.py | 104 +++ vulncheck_sdk/api/__init__.py | 1 + vulncheck_sdk/api/backup_api.py | 568 +++++++++++++++ vulncheck_sdk/api/endpoints_api.py | 527 -------------- vulncheck_sdk/api/indices_api.py | 664 ++++++++++++++++++ vulncheck_sdk/api_client.py | 2 +- vulncheck_sdk/configuration.py | 2 +- vulncheck_sdk/models/__init__.py | 6 + vulncheck_sdk/models/advisory_apache_arrow.py | 4 +- .../models/advisory_apache_superset.py | 4 +- vulncheck_sdk/models/advisory_asrg.py | 4 +- vulncheck_sdk/models/advisory_cisa_alert.py | 50 +- vulncheck_sdk/models/advisory_custom_cpe.py | 94 +++ vulncheck_sdk/models/advisory_fastly.py | 4 +- .../models/advisory_haskell_sadb_advisory.py | 6 +- vulncheck_sdk/models/advisory_m_cna.py | 6 +- vulncheck_sdk/models/advisory_ma_cert.py | 4 +- .../models/advisory_malicious_vs_code_exts.py | 100 +++ vulncheck_sdk/models/advisory_ni.py | 4 +- vulncheck_sdk/models/advisory_panasonic.py | 4 +- vulncheck_sdk/models/advisory_qualys.py | 4 +- vulncheck_sdk/models/advisory_samba.py | 8 +- vulncheck_sdk/models/advisory_ssd_advisory.py | 6 +- vulncheck_sdk/models/advisory_ti.py | 4 +- .../models/advisory_trane_technology.py | 4 +- vulncheck_sdk/models/advisory_with_secure.py | 4 +- .../models/api_initial_access_artifact.py | 6 +- .../models/backup_backup_response.py | 96 +++ vulncheck_sdk/models/backup_feed_item.py | 94 +++ .../models/backup_list_backups_response.py | 96 +++ ...icious_vs_code_exts_paginate_pagination.py | 104 +++ 202 files changed, 5959 insertions(+), 1900 deletions(-) create mode 100644 docs/AdvisoryCustomCPE.md create mode 100644 docs/AdvisoryMaliciousVSCodeExts.md create mode 100644 docs/BackupApi.md create mode 100644 docs/BackupBackupResponse.md create mode 100644 docs/BackupFeedItem.md create mode 100644 docs/BackupListBackupsResponse.md create mode 100644 docs/RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination.md create mode 100644 test/aio/test_advisory_custom_cpe.py create mode 100644 test/aio/test_advisory_malicious_vs_code_exts.py create mode 100644 test/aio/test_backup_api.py create mode 100644 test/aio/test_backup_backup_response.py create mode 100644 test/aio/test_backup_feed_item.py create mode 100644 test/aio/test_backup_list_backups_response.py create mode 100644 test/aio/test_render_response_with_metadata_array_advisory_malicious_vs_code_exts_paginate_pagination.py create mode 100644 test/blocking/test_advisory_custom_cpe.py create mode 100644 test/blocking/test_advisory_malicious_vs_code_exts.py create mode 100644 test/blocking/test_backup_api.py create mode 100644 test/blocking/test_backup_backup_response.py create mode 100644 test/blocking/test_backup_feed_item.py create mode 100644 test/blocking/test_backup_list_backups_response.py create mode 100644 test/blocking/test_render_response_with_metadata_array_advisory_malicious_vs_code_exts_paginate_pagination.py create mode 100644 vulncheck_sdk/aio/api/backup_api.py create mode 100644 vulncheck_sdk/aio/models/advisory_custom_cpe.py create mode 100644 vulncheck_sdk/aio/models/advisory_malicious_vs_code_exts.py create mode 100644 vulncheck_sdk/aio/models/backup_backup_response.py create mode 100644 vulncheck_sdk/aio/models/backup_feed_item.py create mode 100644 vulncheck_sdk/aio/models/backup_list_backups_response.py create mode 100644 vulncheck_sdk/aio/models/render_response_with_metadata_array_advisory_malicious_vs_code_exts_paginate_pagination.py create mode 100644 vulncheck_sdk/api/backup_api.py create mode 100644 vulncheck_sdk/models/advisory_custom_cpe.py create mode 100644 vulncheck_sdk/models/advisory_malicious_vs_code_exts.py create mode 100644 vulncheck_sdk/models/backup_backup_response.py create mode 100644 vulncheck_sdk/models/backup_feed_item.py create mode 100644 vulncheck_sdk/models/backup_list_backups_response.py create mode 100644 vulncheck_sdk/models/render_response_with_metadata_array_advisory_malicious_vs_code_exts_paginate_pagination.py diff --git a/README.md b/README.md index 1d30bb6b..d2c39c48 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,7 @@ pip install vulncheck-sdk ## Quickstart ```python +import json import urllib.request import vulncheck_sdk import os @@ -56,6 +57,7 @@ TOKEN = os.environ["VULNCHECK_API_TOKEN"] # Remember to store your token secure # Now let's create a configuration object configuration = vulncheck_sdk.Configuration() configuration.api_key["Bearer"] = TOKEN +configuration.ignore_operation_servers = True # Pass that config object to our API client and now... with vulncheck_sdk.ApiClient(configuration) as api_client: @@ -77,10 +79,13 @@ with vulncheck_sdk.ApiClient(configuration) as api_client: print(cve) # Download a Backup + backup_client = vulncheck_sdk.BackupApi(api_client) index = "initial-access" - api_response = endpoints_client.backup_index_get(index) + raw = backup_client.backup_index_get_without_preload_content(index) + response_data = json.loads(raw.read()) + download_url = response_data["data"][0]["url"] file_path = f"{index}.zip" - with urllib.request.urlopen(api_response.data[0].url) as response: + with urllib.request.urlopen(download_url) as response: with open(file_path, "wb") as file: file.write(response.read()) @@ -98,6 +103,7 @@ with vulncheck_sdk.ApiClient(configuration) as api_client: ```python import asyncio +import json import os import aiohttp import vulncheck_sdk.aio as vcaio @@ -107,6 +113,7 @@ TOKEN = os.environ.get("VULNCHECK_API_TOKEN") configuration = vcaio.Configuration() configuration.api_key["Bearer"] = TOKEN +configuration.ignore_operation_servers = True async def run_vulnerability_checks(): @@ -114,6 +121,7 @@ async def run_vulnerability_checks(): async with vcaio.ApiClient(configuration) as api_client: endpoints_client = vcaio.EndpointsApi(api_client) indices_client = vcaio.IndicesApi(api_client) + backup_client = vcaio.BackupApi(api_client) # --- PURL Search --- # 'await' the coroutine to get results @@ -138,11 +146,12 @@ async def run_vulnerability_checks(): # --- Download Backup (Async) --- index_name = "initial-access" - # 'await' the coroutine to get results - backup_response = await endpoints_client.backup_index_get(index_name) + # 'await' the coroutine to get raw response bytes + raw = await backup_client.backup_index_get_without_preload_content(index_name) + response_data = json.loads(await raw.read()) - if backup_response.data: - download_url = backup_response.data[0].url + if response_data.get("data"): + download_url = response_data["data"][0]["url"] file_path = f"{index_name}.zip" print(f"Downloading backup from {download_url}...") @@ -314,6 +323,7 @@ if __name__ == "__main__": Download the backup for an index ```python +import json import urllib.request import vulncheck_sdk import os @@ -322,16 +332,19 @@ TOKEN = os.environ["VULNCHECK_API_TOKEN"] configuration = vulncheck_sdk.Configuration() configuration.api_key["Bearer"] = TOKEN +configuration.ignore_operation_servers = True with vulncheck_sdk.ApiClient(configuration) as api_client: - endpoints_client = vulncheck_sdk.EndpointsApi(api_client) + backup_client = vulncheck_sdk.BackupApi(api_client) index = "initial-access" - api_response = endpoints_client.backup_index_get(index) + raw = backup_client.backup_index_get_without_preload_content(index) + response_data = json.loads(raw.read()) + download_url = response_data["data"][0]["url"] file_path = f"{index}.zip" - with urllib.request.urlopen(api_response.data[0].url) as response: + with urllib.request.urlopen(download_url) as response: with open(file_path, "wb") as file: file.write(response.read()) ``` @@ -341,6 +354,7 @@ with vulncheck_sdk.ApiClient(configuration) as api_client: ```python import asyncio +import json import os import urllib.request import vulncheck_sdk.aio as vcaio @@ -350,6 +364,7 @@ TOKEN = os.environ.get("VULNCHECK_API_TOKEN") configuration = vcaio.Configuration() configuration.api_key["Bearer"] = TOKEN +configuration.ignore_operation_servers = True def download_sync(url, file_path): @@ -365,23 +380,19 @@ def download_sync(url, file_path): async def main(): # Use 'async with' to manage the connection life-cycle async with vcaio.ApiClient(configuration) as api_client: - endpoints_client = vcaio.EndpointsApi(api_client) + backup_client = vcaio.BackupApi(api_client) index = "initial-access" - # 'await' the coroutine to get the actual response data - api_response = await endpoints_client.backup_index_get(index) - - if not api_response.data: - print("No backup URL found.") - return + # 'await' the coroutine to get the raw response bytes + raw = await backup_client.backup_index_get_without_preload_content(index) + response_data = json.loads(await raw.read()) + download_url = response_data["data"][0]["url"] - download_url = api_response.data[0].url file_path = f"{index}.zip" print(f"Downloading {index} via urllib (offloaded to thread)...") # Use asyncio.to_thread to run the blocking call safely - # 'await' the coroutine to get the actual response data await asyncio.to_thread(download_sync, download_url, file_path) print(f"Successfully saved to {file_path}") diff --git a/docs/AdvisoryASRG.md b/docs/AdvisoryASRG.md index b35292fc..b0f5b3ee 100644 --- a/docs/AdvisoryASRG.md +++ b/docs/AdvisoryASRG.md @@ -15,6 +15,7 @@ Name | Type | Description | Notes **problem_type** | **str** | | [optional] **references** | **List[str]** | | [optional] **title** | **str** | | [optional] +**updated_at** | **str** | | [optional] **url** | **str** | | [optional] ## Example diff --git a/docs/AdvisoryApacheArrow.md b/docs/AdvisoryApacheArrow.md index a3ebb0e0..433163be 100644 --- a/docs/AdvisoryApacheArrow.md +++ b/docs/AdvisoryApacheArrow.md @@ -10,6 +10,7 @@ Name | Type | Description | Notes **date_added** | **str** | | [optional] **summary** | **str** | | [optional] **title** | **str** | | [optional] +**updated_at** | **str** | | [optional] **url** | **str** | | [optional] ## Example diff --git a/docs/AdvisoryApacheSuperset.md b/docs/AdvisoryApacheSuperset.md index 4ab36ca9..5988ae55 100644 --- a/docs/AdvisoryApacheSuperset.md +++ b/docs/AdvisoryApacheSuperset.md @@ -10,6 +10,7 @@ Name | Type | Description | Notes **cve** | **List[str]** | | [optional] **date_added** | **str** | | [optional] **title** | **str** | | [optional] +**updated_at** | **str** | | [optional] **url** | **str** | | [optional] ## Example diff --git a/docs/AdvisoryCISAAlert.md b/docs/AdvisoryCISAAlert.md index b9f40a69..16ac8fe5 100644 --- a/docs/AdvisoryCISAAlert.md +++ b/docs/AdvisoryCISAAlert.md @@ -9,18 +9,17 @@ Name | Type | Description | Notes **affected_products** | **str** | | [optional] **alert_id** | **str** | | [optional] **archived** | **bool** | | [optional] -**cve** | **List[str]** | | [optional] -**cveexploited_itw** | **bool** | | [optional] +**cve_exploited_itw** | **bool** | | [optional] **cvss** | **str** | | [optional] -**date_added** | **str** | | [optional] -**icsa** | **bool** | | [optional] **icsma** | **bool** | | [optional] **mitigations** | **str** | | [optional] **release_date** | **str** | | [optional] **title** | **str** | | [optional] -**updated_at** | **str** | | [optional] **url** | **str** | | [optional] **vendor** | **str** | | [optional] +**cve** | **List[str]** | | [optional] +**date_added** | **str** | | [optional] +**updated_at** | **str** | | [optional] ## Example diff --git a/docs/AdvisoryCustomCPE.md b/docs/AdvisoryCustomCPE.md new file mode 100644 index 00000000..c3e67ffe --- /dev/null +++ b/docs/AdvisoryCustomCPE.md @@ -0,0 +1,31 @@ +# AdvisoryCustomCPE + +advisory.CustomCPE + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**mcpeapplicability** | [**AdvisoryMCPEApplicability**](AdvisoryMCPEApplicability.md) | | [optional] +**string_value** | **str** | | [optional] + +## Example + +```python +from vulncheck_sdk.models.advisory_custom_cpe import AdvisoryCustomCPE + +# TODO update the JSON string below +json = "{}" +# create an instance of AdvisoryCustomCPE from a JSON string +advisory_custom_cpe_instance = AdvisoryCustomCPE.from_json(json) +# print the JSON string representation of the object +print(AdvisoryCustomCPE.to_json()) + +# convert the object into a dict +advisory_custom_cpe_dict = advisory_custom_cpe_instance.to_dict() +# create an instance of AdvisoryCustomCPE from a dict +advisory_custom_cpe_from_dict = AdvisoryCustomCPE.from_dict(advisory_custom_cpe_dict) +``` +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/AdvisoryFastly.md b/docs/AdvisoryFastly.md index 129e3073..211d3f83 100644 --- a/docs/AdvisoryFastly.md +++ b/docs/AdvisoryFastly.md @@ -10,6 +10,7 @@ Name | Type | Description | Notes **date_added** | **str** | | [optional] **summary** | **str** | | [optional] **title** | **str** | | [optional] +**updated_at** | **str** | | [optional] **url** | **str** | | [optional] ## Example diff --git a/docs/AdvisoryHaskellSADBAdvisory.md b/docs/AdvisoryHaskellSADBAdvisory.md index a7bcee22..a3235fd4 100644 --- a/docs/AdvisoryHaskellSADBAdvisory.md +++ b/docs/AdvisoryHaskellSADBAdvisory.md @@ -15,6 +15,7 @@ Name | Type | Description | Notes **keywords** | **List[str]** | | [optional] **references** | **Dict[str, List[str]]** | | [optional] **related_vulns** | **List[str]** | | [optional] +**updated_at** | **str** | | [optional] ## Example diff --git a/docs/AdvisoryMACert.md b/docs/AdvisoryMACert.md index c60ebea7..88288cbc 100644 --- a/docs/AdvisoryMACert.md +++ b/docs/AdvisoryMACert.md @@ -17,6 +17,7 @@ Name | Type | Description | Notes **risks_fr** | **str** | | [optional] **solution_fr** | **str** | | [optional] **title_fr** | **str** | | [optional] +**updated_at** | **str** | | [optional] **url** | **str** | | [optional] ## Example diff --git a/docs/AdvisoryMCna.md b/docs/AdvisoryMCna.md index b8ca9229..93f43df1 100644 --- a/docs/AdvisoryMCna.md +++ b/docs/AdvisoryMCna.md @@ -7,7 +7,7 @@ advisory.MCna Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **affected** | [**List[AdvisoryMAffected]**](AdvisoryMAffected.md) | | [optional] -**cpe_applicability** | [**List[AdvisoryMCPEApplicability]**](AdvisoryMCPEApplicability.md) | | [optional] +**cpe_applicability** | [**List[AdvisoryCustomCPE]**](AdvisoryCustomCPE.md) | | [optional] **credits** | [**List[AdvisoryCredit]**](AdvisoryCredit.md) | | [optional] **descriptions** | [**List[AdvisoryMDescriptions]**](AdvisoryMDescriptions.md) | | [optional] **impacts** | [**List[AdvisoryImpact]**](AdvisoryImpact.md) | | [optional] diff --git a/docs/AdvisoryMaliciousVSCodeExts.md b/docs/AdvisoryMaliciousVSCodeExts.md new file mode 100644 index 00000000..0050556d --- /dev/null +++ b/docs/AdvisoryMaliciousVSCodeExts.md @@ -0,0 +1,36 @@ +# AdvisoryMaliciousVSCodeExts + +advisory.MaliciousVSCodeExts + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**date_added** | **str** | | [optional] +**name** | **str** | | [optional] +**publisher** | **str** | | [optional] +**type** | **str** | | [optional] +**updated_at** | **str** | the data in this feed comes from manual curation. so this will likely be omitted. | [optional] +**url** | **str** | | [optional] +**version** | **str** | | [optional] + +## Example + +```python +from vulncheck_sdk.models.advisory_malicious_vs_code_exts import AdvisoryMaliciousVSCodeExts + +# TODO update the JSON string below +json = "{}" +# create an instance of AdvisoryMaliciousVSCodeExts from a JSON string +advisory_malicious_vs_code_exts_instance = AdvisoryMaliciousVSCodeExts.from_json(json) +# print the JSON string representation of the object +print(AdvisoryMaliciousVSCodeExts.to_json()) + +# convert the object into a dict +advisory_malicious_vs_code_exts_dict = advisory_malicious_vs_code_exts_instance.to_dict() +# create an instance of AdvisoryMaliciousVSCodeExts from a dict +advisory_malicious_vs_code_exts_from_dict = AdvisoryMaliciousVSCodeExts.from_dict(advisory_malicious_vs_code_exts_dict) +``` +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/AdvisoryNI.md b/docs/AdvisoryNI.md index c2eb2780..3d84a9c9 100644 --- a/docs/AdvisoryNI.md +++ b/docs/AdvisoryNI.md @@ -11,6 +11,7 @@ Name | Type | Description | Notes **ovewrview** | **str** | | [optional] **references** | **List[str]** | | [optional] **title** | **str** | | [optional] +**updated_at** | **str** | | [optional] **url** | **str** | | [optional] ## Example diff --git a/docs/AdvisoryPanasonic.md b/docs/AdvisoryPanasonic.md index d368a689..8d55b432 100644 --- a/docs/AdvisoryPanasonic.md +++ b/docs/AdvisoryPanasonic.md @@ -10,6 +10,7 @@ Name | Type | Description | Notes **date_added** | **str** | | [optional] **summary** | **str** | | [optional] **title** | **str** | | [optional] +**updated_at** | **str** | | [optional] **url** | **str** | | [optional] ## Example diff --git a/docs/AdvisoryQualys.md b/docs/AdvisoryQualys.md index d439509d..75075761 100644 --- a/docs/AdvisoryQualys.md +++ b/docs/AdvisoryQualys.md @@ -10,6 +10,7 @@ Name | Type | Description | Notes **date_added** | **str** | | [optional] **exploits** | **List[str]** | | [optional] **title** | **str** | | [optional] +**updated_at** | **str** | | [optional] **url** | **str** | | [optional] ## Example diff --git a/docs/AdvisorySSDAdvisory.md b/docs/AdvisorySSDAdvisory.md index 1f5c9cfa..7441e30e 100644 --- a/docs/AdvisorySSDAdvisory.md +++ b/docs/AdvisorySSDAdvisory.md @@ -16,6 +16,7 @@ Name | Type | Description | Notes **response_ref** | **str** | | [optional] **summary** | **str** | | [optional] **title** | **str** | | [optional] +**updated_at** | **str** | | [optional] ## Example diff --git a/docs/AdvisorySamba.md b/docs/AdvisorySamba.md index 11ec2efd..cc6cdf6f 100644 --- a/docs/AdvisorySamba.md +++ b/docs/AdvisorySamba.md @@ -12,6 +12,8 @@ Name | Type | Description | Notes **issues** | **str** | | [optional] **patches** | **List[str]** | | [optional] **references** | **List[str]** | | [optional] +**updated_at** | **str** | | [optional] +**url** | **str** | | [optional] ## Example diff --git a/docs/AdvisoryTI.md b/docs/AdvisoryTI.md index 35f8015e..66862d98 100644 --- a/docs/AdvisoryTI.md +++ b/docs/AdvisoryTI.md @@ -11,6 +11,7 @@ Name | Type | Description | Notes **incident_id** | **str** | | [optional] **summary** | **str** | | [optional] **title** | **str** | | [optional] +**updated_at** | **str** | | [optional] **url** | **str** | | [optional] ## Example diff --git a/docs/AdvisoryTraneTechnology.md b/docs/AdvisoryTraneTechnology.md index 4b38db0d..c01b7c15 100644 --- a/docs/AdvisoryTraneTechnology.md +++ b/docs/AdvisoryTraneTechnology.md @@ -12,6 +12,7 @@ Name | Type | Description | Notes **id** | **str** | | [optional] **product** | **str** | | [optional] **summary** | **str** | | [optional] +**updated_at** | **str** | | [optional] **url** | **str** | | [optional] ## Example diff --git a/docs/AdvisoryWithSecure.md b/docs/AdvisoryWithSecure.md index 0f161409..83aaf54a 100644 --- a/docs/AdvisoryWithSecure.md +++ b/docs/AdvisoryWithSecure.md @@ -10,6 +10,7 @@ Name | Type | Description | Notes **date_added** | **str** | | [optional] **summary** | **str** | | [optional] **title** | **str** | | [optional] +**updated_at** | **str** | | [optional] **url** | **str** | | [optional] ## Example diff --git a/docs/ApiInitialAccessArtifact.md b/docs/ApiInitialAccessArtifact.md index b73d81c1..d67bfb2d 100644 --- a/docs/ApiInitialAccessArtifact.md +++ b/docs/ApiInitialAccessArtifact.md @@ -14,6 +14,7 @@ Name | Type | Description | Notes **censys_legacy_raw_queries** | **List[str]** | CensysLegacyRawQueries are raw legacy queries for examining potential Internet-exposed devices & applications with Censys. | [optional] **censys_queries** | **List[str]** | CensysQueries are queries for examining potential Internet-exposed devices & applications with Censys in URL form. | [optional] **censys_raw_queries** | **List[str]** | CensysRawQueries are raw queries for examining potential Internet-exposed devices & applications with Censys. | [optional] +**chain** | **List[str]** | Chain can represent the chain of exploitation. | [optional] **clone_sshurl** | **str** | CloneSSHURL is the git URL to clone the artifact with. | [optional] **date_added** | **str** | DateAdded is when this artifact entry was first added to the InitialAccess data set. | [optional] **driftnet_queries** | **List[str]** | DriftnetQueries are queries for examining Internet exposed services with Driftnet. | [optional] @@ -28,6 +29,7 @@ Name | Type | Description | Notes **nmap_script** | **bool** | NmapScript indicates whether or not an nmap script for scanning environment exists in this artifact. | [optional] **pcap** | **bool** | PCAP indicates whether of not a package capture of the exploit PoC exploiting a vulnerable system exists in this artifact. | [optional] **product** | **List[str]** | Product are the software that has the vulnerability. | [optional] +**related** | **List[str]** | Related is a set of related cves. | [optional] **shodan_queries** | **List[str]** | ShodanQueries are queries for examining potential Internet-exposed devices & applications with Shodan in URL form. | [optional] **shodan_raw_queries** | **List[str]** | ShodanRawQueries are raw queries for examining potential Internet-exposed devices & applications with Shodan. | [optional] **sigma_rule** | **bool** | SigmaRule indicates whether or not a Sigma rule designed to detect the exploitation of the vulnerability over the network exists in this artifact. | [optional] diff --git a/docs/BackupApi.md b/docs/BackupApi.md new file mode 100644 index 00000000..7737bb36 --- /dev/null +++ b/docs/BackupApi.md @@ -0,0 +1,169 @@ +# vulncheck_sdk.BackupApi + +All URIs are relative to *https://api.vulncheck.com/v3* + +Method | HTTP request | Description +------------- | ------------- | ------------- +[**backup_get**](BackupApi.md#backup_get) | **GET** /backup | List available backups +[**backup_index_get**](BackupApi.md#backup_index_get) | **GET** /backup/{index} | Get backup by feed name + + +# **backup_get** +> BackupListBackupsResponse backup_get() + +List available backups + +Returns the list of advisory feeds for which a backup can be requested + +### Example + +* Api Key Authentication (Bearer): + +```python +import vulncheck_sdk +from vulncheck_sdk.models.backup_list_backups_response import BackupListBackupsResponse +from vulncheck_sdk.rest import ApiException +from pprint import pprint + +# Defining the host is optional and defaults to https://api.vulncheck.com/v3 +# See configuration.py for a list of all supported configuration parameters. +configuration = vulncheck_sdk.Configuration( + host = "https://api.vulncheck.com/v3" +) + +# The client must configure the authentication and authorization parameters +# in accordance with the API server security policy. +# Examples for each auth method are provided below, use the example that +# satisfies your auth use case. + +# Configure API key authorization: Bearer +configuration.api_key['Bearer'] = os.environ["API_KEY"] + +# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed +# configuration.api_key_prefix['Bearer'] = 'Bearer' + +# Enter a context with an instance of the API client +with vulncheck_sdk.ApiClient(configuration) as api_client: + # Create an instance of the API class + api_instance = vulncheck_sdk.BackupApi(api_client) + + try: + # List available backups + api_response = api_instance.backup_get() + print("The response of BackupApi->backup_get:\n") + pprint(api_response) + except Exception as e: + print("Exception when calling BackupApi->backup_get: %s\n" % e) +``` + + + +### Parameters + +This endpoint does not need any parameter. + +### Return type + +[**BackupListBackupsResponse**](BackupListBackupsResponse.md) + +### Authorization + +[Bearer](../README.md#Bearer) + +### HTTP request headers + + - **Content-Type**: Not defined + - **Accept**: application/json + +### HTTP response details + +| Status code | Description | Response headers | +|-------------|-------------|------------------| +**200** | OK | - | +**401** | Unauthorized | - | +**503** | Service Unavailable | - | + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + +# **backup_index_get** +> BackupBackupResponse backup_index_get(index) + +Get backup by feed name + +Validates the feed, generates a fresh backup zip if the source parquet is newer, and returns a pre-signed download URL + +### Example + +* Api Key Authentication (Bearer): + +```python +import vulncheck_sdk +from vulncheck_sdk.models.backup_backup_response import BackupBackupResponse +from vulncheck_sdk.rest import ApiException +from pprint import pprint + +# Defining the host is optional and defaults to https://api.vulncheck.com/v3 +# See configuration.py for a list of all supported configuration parameters. +configuration = vulncheck_sdk.Configuration( + host = "https://api.vulncheck.com/v3" +) + +# The client must configure the authentication and authorization parameters +# in accordance with the API server security policy. +# Examples for each auth method are provided below, use the example that +# satisfies your auth use case. + +# Configure API key authorization: Bearer +configuration.api_key['Bearer'] = os.environ["API_KEY"] + +# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed +# configuration.api_key_prefix['Bearer'] = 'Bearer' + +# Enter a context with an instance of the API client +with vulncheck_sdk.ApiClient(configuration) as api_client: + # Create an instance of the API class + api_instance = vulncheck_sdk.BackupApi(api_client) + index = 'index_example' # str | Feed name (e.g. 'vulncheck') + + try: + # Get backup by feed name + api_response = api_instance.backup_index_get(index) + print("The response of BackupApi->backup_index_get:\n") + pprint(api_response) + except Exception as e: + print("Exception when calling BackupApi->backup_index_get: %s\n" % e) +``` + + + +### Parameters + + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **index** | **str**| Feed name (e.g. 'vulncheck') | + +### Return type + +[**BackupBackupResponse**](BackupBackupResponse.md) + +### Authorization + +[Bearer](../README.md#Bearer) + +### HTTP request headers + + - **Content-Type**: Not defined + - **Accept**: application/json + +### HTTP response details + +| Status code | Description | Response headers | +|-------------|-------------|------------------| +**200** | OK | - | +**401** | Unauthorized | - | +**404** | Not Found | - | +**503** | Service Unavailable | - | + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + diff --git a/docs/BackupBackupResponse.md b/docs/BackupBackupResponse.md new file mode 100644 index 00000000..2dcabbb5 --- /dev/null +++ b/docs/BackupBackupResponse.md @@ -0,0 +1,34 @@ +# BackupBackupResponse + +backup.BackupResponse + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**available** | **bool** | | [optional] +**feed** | **str** | | [optional] +**url** | **str** | | [optional] +**url_direct** | **str** | | [optional] +**url_expires** | **str** | | [optional] + +## Example + +```python +from vulncheck_sdk.models.backup_backup_response import BackupBackupResponse + +# TODO update the JSON string below +json = "{}" +# create an instance of BackupBackupResponse from a JSON string +backup_backup_response_instance = BackupBackupResponse.from_json(json) +# print the JSON string representation of the object +print(BackupBackupResponse.to_json()) + +# convert the object into a dict +backup_backup_response_dict = backup_backup_response_instance.to_dict() +# create an instance of BackupBackupResponse from a dict +backup_backup_response_from_dict = BackupBackupResponse.from_dict(backup_backup_response_dict) +``` +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/BackupFeedItem.md b/docs/BackupFeedItem.md new file mode 100644 index 00000000..065fc73a --- /dev/null +++ b/docs/BackupFeedItem.md @@ -0,0 +1,33 @@ +# BackupFeedItem + +backup.FeedItem + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**available** | **bool** | | [optional] +**backup_written_at** | **str** | | [optional] +**href** | **str** | | [optional] +**name** | **str** | | [optional] + +## Example + +```python +from vulncheck_sdk.models.backup_feed_item import BackupFeedItem + +# TODO update the JSON string below +json = "{}" +# create an instance of BackupFeedItem from a JSON string +backup_feed_item_instance = BackupFeedItem.from_json(json) +# print the JSON string representation of the object +print(BackupFeedItem.to_json()) + +# convert the object into a dict +backup_feed_item_dict = backup_feed_item_instance.to_dict() +# create an instance of BackupFeedItem from a dict +backup_feed_item_from_dict = BackupFeedItem.from_dict(backup_feed_item_dict) +``` +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/BackupListBackupsResponse.md b/docs/BackupListBackupsResponse.md new file mode 100644 index 00000000..85d2e243 --- /dev/null +++ b/docs/BackupListBackupsResponse.md @@ -0,0 +1,30 @@ +# BackupListBackupsResponse + +backup.ListBackupsResponse + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**data** | [**List[BackupFeedItem]**](BackupFeedItem.md) | | [optional] + +## Example + +```python +from vulncheck_sdk.models.backup_list_backups_response import BackupListBackupsResponse + +# TODO update the JSON string below +json = "{}" +# create an instance of BackupListBackupsResponse from a JSON string +backup_list_backups_response_instance = BackupListBackupsResponse.from_json(json) +# print the JSON string representation of the object +print(BackupListBackupsResponse.to_json()) + +# convert the object into a dict +backup_list_backups_response_dict = backup_list_backups_response_instance.to_dict() +# create an instance of BackupListBackupsResponse from a dict +backup_list_backups_response_from_dict = BackupListBackupsResponse.from_dict(backup_list_backups_response_dict) +``` +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/EndpointsApi.md b/docs/EndpointsApi.md index 346c986b..768d9f84 100644 --- a/docs/EndpointsApi.md +++ b/docs/EndpointsApi.md @@ -4,8 +4,6 @@ All URIs are relative to *https://api.vulncheck.com/v3* Method | HTTP request | Description ------------- | ------------- | ------------- -[**backup_get**](EndpointsApi.md#backup_get) | **GET** /backup | Return a list of indexes with backup and endpoint links -[**backup_index_get**](EndpointsApi.md#backup_index_get) | **GET** /backup/{index} | Retrieve a list of backups by index [**cpe_get**](EndpointsApi.md#cpe_get) | **GET** /cpe | Return CVE 's associated with a specific NIST CPE [**entitlements_get**](EndpointsApi.md#entitlements_get) | **GET** /entitlements | Retrieve user entitlements [**index_get**](EndpointsApi.md#index_get) | **GET** /index | Return a list of available indexes with endpoint links @@ -17,164 +15,6 @@ Method | HTTP request | Description [**tags_vulncheck_c2_get**](EndpointsApi.md#tags_vulncheck_c2_get) | **GET** /tags/vulncheck-c2 | Retrieve a list of C2 IP addresses -# **backup_get** -> RenderResponseArrayParamsIndexBackupList backup_get() - -Return a list of indexes with backup and endpoint links - -Return a list of indexes with backup and endpoint links that the user has access to - -### Example - -* Api Key Authentication (Bearer): - -```python -import vulncheck_sdk -from vulncheck_sdk.models.render_response_array_params_index_backup_list import RenderResponseArrayParamsIndexBackupList -from vulncheck_sdk.rest import ApiException -from pprint import pprint - -# Defining the host is optional and defaults to https://api.vulncheck.com/v3 -# See configuration.py for a list of all supported configuration parameters. -configuration = vulncheck_sdk.Configuration( - host = "https://api.vulncheck.com/v3" -) - -# The client must configure the authentication and authorization parameters -# in accordance with the API server security policy. -# Examples for each auth method are provided below, use the example that -# satisfies your auth use case. - -# Configure API key authorization: Bearer -configuration.api_key['Bearer'] = os.environ["API_KEY"] - -# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed -# configuration.api_key_prefix['Bearer'] = 'Bearer' - -# Enter a context with an instance of the API client -with vulncheck_sdk.ApiClient(configuration) as api_client: - # Create an instance of the API class - api_instance = vulncheck_sdk.EndpointsApi(api_client) - - try: - # Return a list of indexes with backup and endpoint links - api_response = api_instance.backup_get() - print("The response of EndpointsApi->backup_get:\n") - pprint(api_response) - except Exception as e: - print("Exception when calling EndpointsApi->backup_get: %s\n" % e) -``` - - - -### Parameters - -This endpoint does not need any parameter. - -### Return type - -[**RenderResponseArrayParamsIndexBackupList**](RenderResponseArrayParamsIndexBackupList.md) - -### Authorization - -[Bearer](../README.md#Bearer) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: application/json - -### HTTP response details - -| Status code | Description | Response headers | -|-------------|-------------|------------------| -**200** | OK | - | -**404** | Not Found | - | -**500** | Internal Server Error | - | - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **backup_index_get** -> RenderResponseWithMetadataV3controllersBackupResponseDataV3controllersBackupResponseMetadata backup_index_get(index) - -Retrieve a list of backups by index - -Retrieve a list of VulnCheck backups by index - -### Example - -* Api Key Authentication (Bearer): - -```python -import vulncheck_sdk -from vulncheck_sdk.models.render_response_with_metadata_v3controllers_backup_response_data_v3controllers_backup_response_metadata import RenderResponseWithMetadataV3controllersBackupResponseDataV3controllersBackupResponseMetadata -from vulncheck_sdk.rest import ApiException -from pprint import pprint - -# Defining the host is optional and defaults to https://api.vulncheck.com/v3 -# See configuration.py for a list of all supported configuration parameters. -configuration = vulncheck_sdk.Configuration( - host = "https://api.vulncheck.com/v3" -) - -# The client must configure the authentication and authorization parameters -# in accordance with the API server security policy. -# Examples for each auth method are provided below, use the example that -# satisfies your auth use case. - -# Configure API key authorization: Bearer -configuration.api_key['Bearer'] = os.environ["API_KEY"] - -# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed -# configuration.api_key_prefix['Bearer'] = 'Bearer' - -# Enter a context with an instance of the API client -with vulncheck_sdk.ApiClient(configuration) as api_client: - # Create an instance of the API class - api_instance = vulncheck_sdk.EndpointsApi(api_client) - index = 'index_example' # str | Name of an exploit, vulnerability, or advisory index - - try: - # Retrieve a list of backups by index - api_response = api_instance.backup_index_get(index) - print("The response of EndpointsApi->backup_index_get:\n") - pprint(api_response) - except Exception as e: - print("Exception when calling EndpointsApi->backup_index_get: %s\n" % e) -``` - - - -### Parameters - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **index** | **str**| Name of an exploit, vulnerability, or advisory index | - -### Return type - -[**RenderResponseWithMetadataV3controllersBackupResponseDataV3controllersBackupResponseMetadata**](RenderResponseWithMetadataV3controllersBackupResponseDataV3controllersBackupResponseMetadata.md) - -### Authorization - -[Bearer](../README.md#Bearer) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: application/json - -### HTTP response details - -| Status code | Description | Response headers | -|-------------|-------------|------------------| -**200** | OK | - | -**404** | Not Found | - | -**500** | Internal Server Error | - | - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - # **cpe_get** > RenderResponseWithMetadataArrayStringV3controllersResponseMetadata cpe_get(cpe, is_vulnerable=is_vulnerable) diff --git a/docs/IndicesApi.md b/docs/IndicesApi.md index 94d88294..d09ff2f5 100644 --- a/docs/IndicesApi.md +++ b/docs/IndicesApi.md @@ -266,6 +266,7 @@ Method | HTTP request | Description [**index_m_files_get**](IndicesApi.md#index_m_files_get) | **GET** /index/m-files | Return vulnerability data stored in index \"m-files\" [**index_macert_get**](IndicesApi.md#index_macert_get) | **GET** /index/macert | Return vulnerability data stored in index \"macert\" [**index_malicious_packages_get**](IndicesApi.md#index_malicious_packages_get) | **GET** /index/malicious-packages | Return vulnerability data stored in index \"malicious-packages\" +[**index_malicious_vscode_exts_get**](IndicesApi.md#index_malicious_vscode_exts_get) | **GET** /index/malicious-vscode-exts | Return vulnerability data stored in index \"malicious-vscode-exts\" [**index_manageengine_get**](IndicesApi.md#index_manageengine_get) | **GET** /index/manageengine | Return vulnerability data stored in index \"manageengine\" [**index_maven_get**](IndicesApi.md#index_maven_get) | **GET** /index/maven | Return vulnerability data stored in index \"maven\" [**index_mbed_tls_get**](IndicesApi.md#index_mbed_tls_get) | **GET** /index/mbed-tls | Return vulnerability data stored in index \"mbed-tls\" @@ -36689,6 +36690,144 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) +# **index_malicious_vscode_exts_get** +> RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination index_malicious_vscode_exts_get(page=page, limit=limit, cursor=cursor, start_cursor=start_cursor, order=order, sort=sort, cve=cve, alias=alias, iava=iava, jvndb=jvndb, ilvn=ilvn, threat_actor=threat_actor, mitre_id=mitre_id, misp_id=misp_id, ransomware=ransomware, botnet=botnet, published=published, var_date=var_date, updated_at_start_date=updated_at_start_date, updated_at_end_date=updated_at_end_date, last_mod_start_date=last_mod_start_date, last_mod_end_date=last_mod_end_date, pub_start_date=pub_start_date, pub_end_date=pub_end_date) + +Return vulnerability data stored in index \"malicious-vscode-exts\" + +### Overview +This endpoint allows you to retrieve a paginated list of all documents from the malicious-vscode-exts index. \ +By default, a maximum of 100 documents are shown per page. + +**Index Description:** Malicious Visual Studio Code Extensions + +### Paging Over Large Data (cursor) +In order to allow users to iterate over large index datasets, this endpoint provides a server-side +"cursor" mechanism. To use the cursor, first call `GET /index/malicious-vscode-exts?start_cursor`, the response will +have a `next_cursor` id that clients will need to pass as a query parameter to the next request like +`GET /index/malicious-vscode-exts?cursor=` + + +### Example + +* Api Key Authentication (Bearer): + +```python +import vulncheck_sdk +from vulncheck_sdk.models.render_response_with_metadata_array_advisory_malicious_vs_code_exts_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination +from vulncheck_sdk.rest import ApiException +from pprint import pprint + +# Defining the host is optional and defaults to https://api.vulncheck.com/v3 +# See configuration.py for a list of all supported configuration parameters. +configuration = vulncheck_sdk.Configuration( + host = "https://api.vulncheck.com/v3" +) + +# The client must configure the authentication and authorization parameters +# in accordance with the API server security policy. +# Examples for each auth method are provided below, use the example that +# satisfies your auth use case. + +# Configure API key authorization: Bearer +configuration.api_key['Bearer'] = os.environ["API_KEY"] + +# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed +# configuration.api_key_prefix['Bearer'] = 'Bearer' + +# Enter a context with an instance of the API client +with vulncheck_sdk.ApiClient(configuration) as api_client: + # Create an instance of the API class + api_instance = vulncheck_sdk.IndicesApi(api_client) + page = 56 # int | set the page number of the response (optional) + limit = 56 # int | limit the number of findings in the response (optional) + cursor = 'cursor_example' # str | continue server-side paging using a cursor id (optional) + start_cursor = 'start_cursor_example' # str | request server-side paging (optional) + order = 'order_example' # str | direction of the sort (optional) + sort = 'sort_example' # str | field by which to sort the results (optional) + cve = 'cve_example' # str | Specify a CVE ID to search with. (optional) + alias = 'alias_example' # str | Specify a vulnerability alias to search with. (optional) + iava = 'iava_example' # str | Specify an IAVA ID to search with. (optional) + jvndb = 'jvndb_example' # str | Specify a JVNDB ID to search with. (optional) + ilvn = 'ilvn_example' # str | Specify an ILVN ID to search with. (optional) + threat_actor = 'threat_actor_example' # str | Specify a threat actor name to search with. (optional) + mitre_id = 'mitre_id_example' # str | Specify a MITRE ID to search with. (optional) + misp_id = 'misp_id_example' # str | Specify a MISP ID to search with. (optional) + ransomware = 'ransomware_example' # str | Specify a ransomeware family name to search with. (optional) + botnet = 'botnet_example' # str | Specify a botnet name to search with. (optional) + published = 'published_example' # str | Specify a published date (optional) + var_date = 'var_date_example' # str | Specify an exact published date to filter with. (optional) + updated_at_start_date = 'updated_at_start_date_example' # str | Specify a starting 'updated-at' date to filter with. (optional) + updated_at_end_date = 'updated_at_end_date_example' # str | Specify an ending 'updated-at' date to filter with. (optional) + last_mod_start_date = 'last_mod_start_date_example' # str | Specify a starting last modified date to filter with. (optional) + last_mod_end_date = 'last_mod_end_date_example' # str | Specify an ending last modified date to filter with. (optional) + pub_start_date = 'pub_start_date_example' # str | Specify a starting published date to filter with. (optional) + pub_end_date = 'pub_end_date_example' # str | Specify an ending published date to filter with. (optional) + + try: + # Return vulnerability data stored in index \"malicious-vscode-exts\" + api_response = api_instance.index_malicious_vscode_exts_get(page=page, limit=limit, cursor=cursor, start_cursor=start_cursor, order=order, sort=sort, cve=cve, alias=alias, iava=iava, jvndb=jvndb, ilvn=ilvn, threat_actor=threat_actor, mitre_id=mitre_id, misp_id=misp_id, ransomware=ransomware, botnet=botnet, published=published, var_date=var_date, updated_at_start_date=updated_at_start_date, updated_at_end_date=updated_at_end_date, last_mod_start_date=last_mod_start_date, last_mod_end_date=last_mod_end_date, pub_start_date=pub_start_date, pub_end_date=pub_end_date) + print("The response of IndicesApi->index_malicious_vscode_exts_get:\n") + pprint(api_response) + except Exception as e: + print("Exception when calling IndicesApi->index_malicious_vscode_exts_get: %s\n" % e) +``` + + + +### Parameters + + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **page** | **int**| set the page number of the response | [optional] + **limit** | **int**| limit the number of findings in the response | [optional] + **cursor** | **str**| continue server-side paging using a cursor id | [optional] + **start_cursor** | **str**| request server-side paging | [optional] + **order** | **str**| direction of the sort | [optional] + **sort** | **str**| field by which to sort the results | [optional] + **cve** | **str**| Specify a CVE ID to search with. | [optional] + **alias** | **str**| Specify a vulnerability alias to search with. | [optional] + **iava** | **str**| Specify an IAVA ID to search with. | [optional] + **jvndb** | **str**| Specify a JVNDB ID to search with. | [optional] + **ilvn** | **str**| Specify an ILVN ID to search with. | [optional] + **threat_actor** | **str**| Specify a threat actor name to search with. | [optional] + **mitre_id** | **str**| Specify a MITRE ID to search with. | [optional] + **misp_id** | **str**| Specify a MISP ID to search with. | [optional] + **ransomware** | **str**| Specify a ransomeware family name to search with. | [optional] + **botnet** | **str**| Specify a botnet name to search with. | [optional] + **published** | **str**| Specify a published date | [optional] + **var_date** | **str**| Specify an exact published date to filter with. | [optional] + **updated_at_start_date** | **str**| Specify a starting 'updated-at' date to filter with. | [optional] + **updated_at_end_date** | **str**| Specify an ending 'updated-at' date to filter with. | [optional] + **last_mod_start_date** | **str**| Specify a starting last modified date to filter with. | [optional] + **last_mod_end_date** | **str**| Specify an ending last modified date to filter with. | [optional] + **pub_start_date** | **str**| Specify a starting published date to filter with. | [optional] + **pub_end_date** | **str**| Specify an ending published date to filter with. | [optional] + +### Return type + +[**RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination**](RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination.md) + +### Authorization + +[Bearer](../README.md#Bearer) + +### HTTP request headers + + - **Content-Type**: Not defined + - **Accept**: application/json + +### HTTP response details + +| Status code | Description | Response headers | +|-------------|-------------|------------------| +**200** | OK | - | +**404** | Not Found | - | +**500** | Internal Server Error | - | + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + # **index_manageengine_get** > RenderResponseWithMetadataArrayAdvisoryManageEngineAdvisoryPaginatePagination index_manageengine_get(page=page, limit=limit, cursor=cursor, start_cursor=start_cursor, order=order, sort=sort, cve=cve, alias=alias, iava=iava, jvndb=jvndb, ilvn=ilvn, threat_actor=threat_actor, mitre_id=mitre_id, misp_id=misp_id, ransomware=ransomware, botnet=botnet, published=published, var_date=var_date, updated_at_start_date=updated_at_start_date, updated_at_end_date=updated_at_end_date, last_mod_start_date=last_mod_start_date, last_mod_end_date=last_mod_end_date, pub_start_date=pub_start_date, pub_end_date=pub_end_date) diff --git a/docs/RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination.md b/docs/RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination.md new file mode 100644 index 00000000..c570e5bd --- /dev/null +++ b/docs/RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination.md @@ -0,0 +1,32 @@ +# RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination + +render.ResponseWithMetadata-array_advisory_MaliciousVSCodeExts-paginate_Pagination + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**benchmark** | **float** | | [optional] +**meta** | [**PaginatePagination**](PaginatePagination.md) | | [optional] +**data** | [**List[AdvisoryMaliciousVSCodeExts]**](AdvisoryMaliciousVSCodeExts.md) | | [optional] + +## Example + +```python +from vulncheck_sdk.models.render_response_with_metadata_array_advisory_malicious_vs_code_exts_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination + +# TODO update the JSON string below +json = "{}" +# create an instance of RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination from a JSON string +render_response_with_metadata_array_advisory_malicious_vs_code_exts_paginate_pagination_instance = RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination.from_json(json) +# print the JSON string representation of the object +print(RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination.to_json()) + +# convert the object into a dict +render_response_with_metadata_array_advisory_malicious_vs_code_exts_paginate_pagination_dict = render_response_with_metadata_array_advisory_malicious_vs_code_exts_paginate_pagination_instance.to_dict() +# create an instance of RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination from a dict +render_response_with_metadata_array_advisory_malicious_vs_code_exts_paginate_pagination_from_dict = RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination.from_dict(render_response_with_metadata_array_advisory_malicious_vs_code_exts_paginate_pagination_dict) +``` +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/openapi.json b/openapi.json index c888d97d..59b71df5 100644 --- a/openapi.json +++ b/openapi.json @@ -1 +1 @@ -{"components":{"schemas":{"advisory.A10":{"description":"advisory.A10","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"reference":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ABBAdvisory":{"description":"advisory.ABBAdvisory","properties":{"abb_vulnerability_id":{"items":{"type":"string"},"type":"array","uniqueItems":false},"csaf":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"document_id":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ADP":{"description":"advisory.ADP","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.MAffected"},"type":"array","uniqueItems":false},"metrics":{"items":{"$ref":"#/components/schemas/advisory.VulnrichmentMetric"},"type":"array","uniqueItems":false},"providerMetadata":{"$ref":"#/components/schemas/advisory.MProviderMetadata"}},"type":"object"},"advisory.ADPContainer":{"description":"advisory.ADPContainer","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.MAffected"},"type":"array","uniqueItems":false},"datePublic":{"description":"OK","type":"string"},"descriptions":{"description":"OK","items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false},"impacts":{"description":"OK","items":{"$ref":"#/components/schemas/advisory.Impact"},"type":"array","uniqueItems":false},"metrics":{"description":"OK","items":{"$ref":"#/components/schemas/advisory.Metric"},"type":"array","uniqueItems":false},"problemTypes":{"description":"OK","items":{"$ref":"#/components/schemas/advisory.MProblemTypes"},"type":"array","uniqueItems":false},"providerMetadata":{"$ref":"#/components/schemas/advisory.MProviderMetadata"},"references":{"items":{"$ref":"#/components/schemas/advisory.MReference"},"type":"array","uniqueItems":false},"tags":{"description":"OK","items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"description":"OK","type":"string"}},"type":"object"},"advisory.AIX":{"description":"advisory.AIX","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AMD":{"description":"advisory.AMD","properties":{"bulletin_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_updated":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AMI":{"description":"advisory.AMI","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ASRG":{"description":"advisory.ASRG","properties":{"affected_products":{"type":"string"},"capec":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"problem_type":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AVEVAAdvisory":{"description":"advisory.AVEVAAdvisory","properties":{"aveva_vulnerability_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"published_by":{"type":"string"},"rating":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AVIDMLAdvs":{"description":"advisory.AVIDMLAdvs","properties":{"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AWS":{"description":"advisory.AWS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Abbott":{"description":"advisory.Abbott","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Absolute":{"description":"advisory.Absolute","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Acknowledgement":{"description":"advisory.Acknowledgement","properties":{"name":{"items":{"$ref":"#/components/schemas/advisory.IVal"},"type":"array","uniqueItems":false},"url":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.Acronis":{"description":"advisory.Acronis","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AdobeAdvisory":{"description":"advisory.AdobeAdvisory","properties":{"adobe_cves":{"items":{"$ref":"#/components/schemas/advisory.AdobeCVE"},"type":"array","uniqueItems":false},"affected":{"items":{"$ref":"#/components/schemas/advisory.AdobeAffected"},"type":"array"},"bulletinId":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"link":{"type":"string"},"solutions":{"items":{"$ref":"#/components/schemas/advisory.AdobeSolution"},"type":"array"},"updated_at":{"type":"string"}},"type":"object"},"advisory.AdobeAffected":{"description":"advisory.AdobeAffected","properties":{"platform":{"type":"string"},"product":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.AdobeCVE":{"description":"advisory.AdobeCVE","properties":{"cve":{"type":"string"},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"}},"type":"object"},"advisory.AdobeSolution":{"description":"advisory.AdobeSolution","properties":{"platform":{"type":"string"},"product":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.Advantech":{"description":"advisory.Advantech","properties":{"advisory_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Advisory":{"description":"advisory.Advisory","properties":{"affects":{"type":"string"},"announced":{"type":"string"},"category":{"type":"string"},"corrections":{"items":{"$ref":"#/components/schemas/advisory.Correction"},"type":"array"},"credits":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"module":{"type":"string"},"name":{"type":"string"},"topic":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AdvisoryDetails":{"description":"advisory.AdvisoryDetails","properties":{"bugzilla":{"$ref":"#/components/schemas/advisory.Bugzilla"},"cve":{"$ref":"#/components/schemas/advisory.OvalCVE"},"issued":{"$ref":"#/components/schemas/advisory.Issued"},"severity":{"type":"string"},"updated":{"$ref":"#/components/schemas/advisory.Updated"}},"type":"object"},"advisory.AdvisoryRecord":{"description":"advisory.AdvisoryRecord","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"external_id":{"items":{"type":"string"},"type":"array","uniqueItems":false},"lang":{"type":"string"},"name":{"type":"string"},"refsource":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"advisory.Affected":{"description":"advisory.Affected","properties":{"database_specific":{"description":"The meaning of the values within the object is entirely defined by the database"},"ecosystem_specific":{"description":"The meaning of the values within the object is entirely defined by the ecosystem"},"package":{"$ref":"#/components/schemas/advisory.OSVPackage"},"ranges":{"items":{"$ref":"#/components/schemas/advisory.Range"},"type":"array","uniqueItems":false},"severity":{"items":{"$ref":"#/components/schemas/advisory.Severity"},"type":"array","uniqueItems":false},"versions":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.AffectedChrome":{"description":"advisory.AffectedChrome","properties":{"fixed_version":{"type":"string"},"product":{"type":"string"}},"type":"object"},"advisory.AffectedDebianPackage":{"description":"advisory.AffectedDebianPackage","properties":{"name":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.AffectedDebianRelease":{"description":"advisory.AffectedDebianRelease","properties":{"fixed_version":{"type":"string"},"nodsa":{"type":"string"},"nodsa_reason":{"type":"string"},"release_name":{"type":"string"},"repositories":{"items":{"$ref":"#/components/schemas/advisory.AffectedDebianRepository"},"type":"array","uniqueItems":false},"status":{"type":"string"},"urgency":{"type":"string"}},"type":"object"},"advisory.AffectedDebianRepository":{"description":"advisory.AffectedDebianRepository","properties":{"repository_name":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.AffectedFile":{"description":"advisory.AffectedFile","properties":{"file_last_modified":{"type":"string"},"file_name":{"type":"string"}},"type":"object"},"advisory.AffectedProduct":{"description":"advisory.AffectedProduct","properties":{"affectedReleases":{"type":"string"},"fixedReleases":{"type":"string"},"lexmarkModels":{"type":"string"}},"type":"object"},"advisory.AffectedRel":{"description":"advisory.AffectedRel","properties":{"advisory":{"type":"string"},"cpe":{"type":"string"},"package":{"type":"string"},"product_name":{"type":"string"},"release_date":{"type":"string"}},"type":"object"},"advisory.AffectedUbuntuPackage":{"description":"advisory.AffectedUbuntuPackage","properties":{"break_commit_url":{"items":{"type":"string"},"type":"array","uniqueItems":false},"fix_commit_url":{"items":{"type":"string"},"type":"array","uniqueItems":false},"package_name":{"type":"string"},"package_release_status":{"items":{"$ref":"#/components/schemas/advisory.UbuntuPackageReleaseStatus"},"type":"array","uniqueItems":false},"upstream_fix_url":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.AlephResearch":{"description":"advisory.AlephResearch","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Alibaba":{"description":"advisory.Alibaba","properties":{"cnnvd":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cnvd":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"mitigation_cn":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary_cn":{"type":"string"},"title_cn":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AlmaDate":{"description":"advisory.AlmaDate","properties":{"$date":{"type":"integer"}},"type":"object"},"advisory.AlmaLinuxUpdate":{"description":"advisory.AlmaLinuxUpdate","properties":{"bs_repo_id":{"$ref":"#/components/schemas/advisory.AlmaObjectID"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"fromstr":{"type":"string"},"id":{"$ref":"#/components/schemas/advisory.AlmaObjectID"},"issued_date":{"$ref":"#/components/schemas/advisory.AlmaDate"},"pkglist":{"$ref":"#/components/schemas/advisory.AlmaPackageList"},"pushcount":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.AlmaReference"},"type":"array","uniqueItems":false},"release":{"type":"string"},"rights":{"type":"string"},"severity":{"type":"string"},"solution":{"type":"string"},"status":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"},"update_url":{"type":"string"},"updated_date":{"$ref":"#/components/schemas/advisory.AlmaDate"},"updateinfo_id":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.AlmaObjectID":{"description":"advisory.AlmaObjectID","properties":{"$oid":{"type":"string"}},"type":"object"},"advisory.AlmaPackage":{"description":"advisory.AlmaPackage","properties":{"arch":{"type":"string"},"epoch":{"type":"string"},"filename":{"type":"string"},"name":{"type":"string"},"reboot_suggested":{"type":"integer"},"release":{"type":"string"},"source":{"type":"string"},"sum":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.AlmaPackageList":{"description":"advisory.AlmaPackageList","properties":{"name":{"type":"string"},"packages":{"items":{"$ref":"#/components/schemas/advisory.AlmaPackage"},"type":"array","uniqueItems":false},"shortname":{"type":"string"}},"type":"object"},"advisory.AlmaReference":{"description":"advisory.AlmaReference","properties":{"href":{"type":"string"},"id":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.AlpineLinuxSecDB":{"description":"advisory.AlpineLinuxSecDB","properties":{"apkurl":{"type":"string"},"archs":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"distroversion":{"type":"string"},"packages":{"items":{"$ref":"#/components/schemas/advisory.AlpineLinuxSecDBPackage"},"type":"array","uniqueItems":false},"reponame":{"type":"string"},"urlprefix":{"type":"string"}},"type":"object"},"advisory.AlpineLinuxSecDBPackage":{"description":"advisory.AlpineLinuxSecDBPackage","properties":{"package_name":{"type":"string"},"secfixes":{"items":{"$ref":"#/components/schemas/advisory.AlpineLinuxSecurityFix"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.AlpineLinuxSecurityFix":{"description":"advisory.AlpineLinuxSecurityFix","properties":{"cve":{"type":"string"},"fixed_version":{"type":"string"}},"type":"object"},"advisory.AmazonAffectedPackage":{"description":"advisory.AmazonAffectedPackage","properties":{"advisory":{"type":"string"},"package":{"type":"string"},"platform":{"type":"string"},"releaseDate":{"type":"string"},"status":{"type":"string"}},"type":"object"},"advisory.AmazonCVE":{"description":"advisory.AmazonCVE","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.AmazonAffectedPackage"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AnchoreNVDOverride":{"description":"advisory.AnchoreNVDOverride","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"override":{"$ref":"#/components/schemas/advisory.Override"},"url":{"type":"string"}},"type":"object"},"advisory.AndroidAdvisory":{"description":"advisory.AndroidAdvisory","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.AndroidAffected"},"type":"array","uniqueItems":false},"aliases":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"modified":{"type":"string"},"published":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.AndroidReference"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AndroidAffected":{"description":"advisory.AndroidAffected","properties":{"ecosystem_specific":{"$ref":"#/components/schemas/advisory.EcoSystem"},"package":{"$ref":"#/components/schemas/advisory.AndroidPackage"},"ranges":{"items":{"$ref":"#/components/schemas/advisory.AndroidRange"},"type":"array","uniqueItems":false},"versions":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.AndroidEvent":{"description":"advisory.AndroidEvent","properties":{"fixed":{"type":"string"},"introduced":{"type":"string"}},"type":"object"},"advisory.AndroidPackage":{"description":"advisory.AndroidPackage","properties":{"ecosystem":{"type":"string"},"name":{"type":"string"}},"type":"object"},"advisory.AndroidRange":{"description":"advisory.AndroidRange","properties":{"events":{"items":{"$ref":"#/components/schemas/advisory.AndroidEvent"},"type":"array","uniqueItems":false},"type":{"type":"string"}},"type":"object"},"advisory.AndroidReference":{"description":"advisory.AndroidReference","properties":{"type":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheActiveMQ":{"description":"advisory.ApacheActiveMQ","properties":{"affected_versions":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheArchiva":{"description":"advisory.ApacheArchiva","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheArrow":{"description":"advisory.ApacheArrow","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheCamel":{"description":"advisory.ApacheCamel","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheCommons":{"description":"advisory.ApacheCommons","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheCouchDB":{"description":"advisory.ApacheCouchDB","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheFlink":{"description":"advisory.ApacheFlink","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"advisory.ApacheGuacamole":{"description":"advisory.ApacheGuacamole","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheHTTP":{"description":"advisory.ApacheHTTP","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheHadoop":{"description":"advisory.ApacheHadoop","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheJSPWiki":{"description":"advisory.ApacheJSPWiki","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheKafka":{"description":"advisory.ApacheKafka","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheLoggingServices":{"description":"advisory.ApacheLoggingServices","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheNiFi":{"description":"advisory.ApacheNiFi","properties":{"affected_version":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed_versions":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheOFBiz":{"description":"advisory.ApacheOFBiz","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"advisory.ApacheOpenMeetings":{"description":"advisory.ApacheOpenMeetings","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheOpenOffice":{"description":"advisory.ApacheOpenOffice","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApachePulsar":{"description":"advisory.ApachePulsar","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheShiro":{"description":"advisory.ApacheShiro","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheSpark":{"description":"advisory.ApacheSpark","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheStruts":{"description":"advisory.ApacheStruts","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"impact":{"type":"string"},"rating":{"type":"string"},"remediation":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"vulnerable_version":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.ApacheSubversion":{"description":"advisory.ApacheSubversion","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheSuperset":{"description":"advisory.ApacheSuperset","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheTomcat":{"description":"advisory.ApacheTomcat","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheZooKeeper":{"description":"advisory.ApacheZooKeeper","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AppCheck":{"description":"advisory.AppCheck","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Appgate":{"description":"advisory.Appgate","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AppleAdvisory":{"description":"advisory.AppleAdvisory","properties":{"components":{"items":{"$ref":"#/components/schemas/advisory.AppleComponent"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"name":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AppleComponent":{"description":"advisory.AppleComponent","properties":{"available_for":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"description":{"type":"string"},"impact":{"type":"string"},"itw_exploit":{"type":"boolean"},"name":{"type":"string"}},"type":"object"},"advisory.ArchIssue":{"description":"advisory.ArchIssue","properties":{"advisories":{"items":{"type":"string"},"type":"array"},"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"issues":{"description":"cves","items":{"type":"string"},"type":"array"},"name":{"type":"string"},"packages":{"items":{"type":"string"},"type":"array"},"references":{"items":{"type":"string"},"type":"array"},"severity":{"type":"string"},"status":{"type":"string"},"ticket":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.Arista":{"description":"advisory.Arista","properties":{"csaf_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Aruba":{"description":"advisory.Aruba","properties":{"csaf":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AssetNote":{"description":"advisory.AssetNote","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Asterisk":{"description":"advisory.Asterisk","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Astra":{"description":"advisory.Astra","properties":{"bdu":{"items":{"type":"string"},"type":"array","uniqueItems":false},"bulletin_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary_ru":{"type":"string"},"title_ru":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Asus":{"description":"advisory.Asus","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details":{"type":"string"},"id":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.AtlassianAdvisory":{"description":"advisory.AtlassianAdvisory","properties":{"affected_version":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"detailed_summary":{"description":"overloading in places with 'RiskAssessment' and other places with\n'Description'","type":"string"},"fixed_version":{"type":"string"},"link":{"type":"string"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"release_date":{"type":"string"},"severity":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.AtlassianProducts":{"description":"advisory.AtlassianProducts","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"fixed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"name":{"type":"string"}},"type":"object"},"advisory.AtlassianVuln":{"description":"advisory.AtlassianVuln","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"products":{"items":{"$ref":"#/components/schemas/advisory.AtlassianProducts"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Atredis":{"description":"advisory.Atredis","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"vendors":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.Audiocodes":{"description":"advisory.Audiocodes","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AusCert":{"description":"advisory.AusCert","properties":{"body":{"type":"string"},"bulletinId":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"link":{"type":"string"},"operatingSystem":{"type":"string"},"product":{"type":"string"},"publisher":{"type":"string"},"resolution":{"type":"string"}},"type":"object"},"advisory.Autodesk":{"description":"advisory.Autodesk","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Avaya":{"description":"advisory.Avaya","properties":{"advisory_number":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"last_revised":{"type":"string"},"overview":{"type":"string"},"severity":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Avigilon":{"description":"advisory.Avigilon","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Award":{"description":"advisory.Award","properties":{"amount":{"type":"string"},"currency":{"type":"string"}},"type":"object"},"advisory.Axis":{"description":"advisory.Axis","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Azul":{"description":"advisory.Azul","properties":{"base_score":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"prime_version":{"items":{"$ref":"#/components/schemas/advisory.PrimeVersion"},"type":"array","uniqueItems":false},"release":{"type":"string"},"url":{"type":"string"},"zulu_version":{"items":{"$ref":"#/components/schemas/advisory.ZuluVersion"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.BBraunAdvisory":{"description":"advisory.BBraunAdvisory","properties":{"attention":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"equipment":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vendor":{"type":"string"},"vulnerabilities":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.BDUAdvisory":{"description":"advisory.BDUAdvisory","properties":{"bdu_id":{"description":"BDU:2022-03833","type":"string"},"cve":{"description":"[]string{\"CVE-2022-28194\"}","items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"$ref":"#/components/schemas/advisory.BDUCvss"},"cvss3":{"$ref":"#/components/schemas/advisory.BDUCvss3"},"cwe":{"description":"CWE-119","type":"string"},"date_added":{"type":"string"},"description_ru":{"description":"Библиотека libxml2 до версии 2.9.12 не корректно обрабатывает XML-документы, содержащие определенные сущности. В результате могут быть выполнены произвольные команды.","type":"string"},"environment":{"$ref":"#/components/schemas/advisory.BDUEnvironment"},"exploit_status_en":{"description":"Exploited","type":"string"},"exploit_status_ru":{"description":"Exploited","type":"string"},"fix_status_en":{"description":"Fixed","type":"string"},"fix_status_ru":{"description":"Fixed","type":"string"},"identify_date":{"description":"2022-09-01","type":"string"},"name_ru":{"description":"BDU:2022-03833: Уязвимость модуля Cboot (tegrabl_cbo.c) пакета драйверов микропрограммного обеспечения вычислительных плат NVIDIA Jetson, позволяющая нарушителю выполнить произвольный код или вызвать частичный отказ в обслуживании","type":"string"},"severity_ru":{"description":"High","type":"string"},"solution_ru":{"description":"Обновите драйверы микропрограммного обеспечения вычислительных плат NVIDIA Jetson до версии 32.6.1 или более поздней","type":"string"},"sources":{"description":"https://nvd.nist.gov/vuln/detail/CVE-2022-28194","items":{"type":"string"},"type":"array","uniqueItems":false},"text_ru":{"description":"Библиотека libxml2 до версии 2.9.12 не корректно обрабатывает XML-документы, содержащие определенные сущности. В результате могут быть выполнены произвольные команды.","type":"string"},"url":{"description":"https://bdu.fstec.ru/vul/2022-03833","type":"string"},"vul_status_en":{"description":"Exploitable","type":"string"},"vul_status_ru":{"description":"Exploitable","type":"string"},"vulnerable_software":{"$ref":"#/components/schemas/advisory.BDUVulnerableSoftware"}},"type":"object"},"advisory.BDUCvss":{"description":"advisory.BDUCvss","properties":{"vector":{"$ref":"#/components/schemas/advisory.BDUVector"}},"type":"object"},"advisory.BDUCvss3":{"description":"advisory.BDUCvss3","properties":{"vector":{"$ref":"#/components/schemas/advisory.BDUVector"}},"type":"object"},"advisory.BDUEnvironment":{"description":"advisory.BDUEnvironment","properties":{"os":{"$ref":"#/components/schemas/advisory.BDUOs"}},"type":"object"},"advisory.BDUOs":{"description":"advisory.BDUOs","properties":{"name":{"type":"string"},"platform":{"type":"string"},"text":{"type":"string"},"vendor":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.BDUSoft":{"description":"advisory.BDUSoft","properties":{"name":{"type":"string"},"platform":{"type":"string"},"text":{"type":"string"},"types":{"$ref":"#/components/schemas/advisory.BDUTypes"},"vendor":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.BDUTypes":{"description":"advisory.BDUTypes","properties":{"text":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.BDUVector":{"description":"advisory.BDUVector","properties":{"score":{"type":"string"},"text":{"type":"string"}},"type":"object"},"advisory.BDUVulnerableSoftware":{"description":"advisory.BDUVulnerableSoftware","properties":{"soft":{"$ref":"#/components/schemas/advisory.BDUSoft"}},"type":"object"},"advisory.BLS":{"description":"advisory.BLS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"prodcut":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"vendor":{"type":"string"}},"type":"object"},"advisory.Bandr":{"description":"advisory.Bandr","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"document_id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.BaxterAdvisory":{"description":"advisory.BaxterAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_updated":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.BeckhoffAdvisory":{"description":"advisory.BeckhoffAdvisory","properties":{"beckhoff_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_revised":{"description":"if in the future we can delete this great - it's just a dupe to\nnormalize the field names","type":"string"},"name":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vde":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.BeckmanCoulter":{"description":"advisory.BeckmanCoulter","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.BectonDickinsonAdvisory":{"description":"advisory.BectonDickinsonAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"products_affected":{"items":{"$ref":"#/components/schemas/advisory.ProductsAffected"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.BeldenAdvisory":{"description":"advisory.BeldenAdvisory","properties":{"belden_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_updated":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.BeyondTrust":{"description":"advisory.BeyondTrust","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Binarly":{"description":"advisory.Binarly","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.BitDefender":{"description":"advisory.BitDefender","properties":{"additional_details":{"type":"string"},"affected_products":{"type":"string"},"affected_vendors":{"type":"string"},"credit":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"details":{"type":"string"},"timeline":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.BlackBerry":{"description":"advisory.BlackBerry","properties":{"bsrt":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.BoschAdvisory":{"description":"advisory.BoschAdvisory","properties":{"bosch_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_revised":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.BostonScientificAdvisory":{"description":"advisory.BostonScientificAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Botnet":{"description":"advisory.Botnet","properties":{"associated_capecs":{"items":{"$ref":"#/components/schemas/advisory.Capec"},"type":"array","uniqueItems":false},"associated_cwes":{"items":{"$ref":"#/components/schemas/advisory.CweData"},"type":"array","uniqueItems":false},"associated_mitre_attack_techniques":{"items":{"$ref":"#/components/schemas/advisory.MitreAttackTechWithRefs"},"type":"array","uniqueItems":false},"botnet_name":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve_references":{"items":{"$ref":"#/components/schemas/advisory.CVEReference"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"malpedia_url":{"type":"string"},"tools":{"items":{"$ref":"#/components/schemas/advisory.Tool"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.Bugzilla":{"description":"advisory.Bugzilla","properties":{"href":{"type":"string"},"id":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.CACyberCentreAdvisory":{"description":"advisory.CACyberCentreAdvisory","properties":{"control_systems":{"type":"boolean"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"html_url":{"type":"string"},"serial_number":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.CBLMariner":{"description":"advisory.CBLMariner","properties":{"advisory_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"package":{"type":"string"},"severity":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.CERTEUAdvisory":{"description":"advisory.CERTEUAdvisory","properties":{"advisoryId":{"type":"string"},"affectedProducts":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"history":{"items":{"type":"string"},"type":"array"},"link":{"type":"string"},"recommendations":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"summary":{"type":"string"},"technicalDetails":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.CESA":{"description":"advisory.CESA","properties":{"arch":{"items":{"type":"string"},"type":"array"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"issueDate":{"type":"string"},"osRelease":{"type":"string"},"packages":{"items":{"$ref":"#/components/schemas/advisory.CentosPackage"},"type":"array"},"references":{"items":{"type":"string"},"type":"array"},"title":{"type":"string"}},"type":"object"},"advisory.CISAAlert":{"description":"advisory.CISAAlert","properties":{"affectedProducts":{"type":"string"},"alertID":{"type":"string"},"archived":{"type":"boolean"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cveexploitedITW":{"type":"boolean"},"cvss":{"type":"string"},"date_added":{"type":"string"},"icsa":{"type":"boolean"},"icsma":{"type":"boolean"},"mitigations":{"type":"string"},"releaseDate":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vendor":{"type":"string"}},"type":"object"},"advisory.CISControl":{"description":"advisory.CISControl","properties":{"cis_control_description":{"type":"string"},"cis_control_id":{"type":"string"},"cis_control_name":{"type":"string"}},"type":"object"},"advisory.CNNVDEntryJSON":{"description":"advisory.CNNVDEntryJSON","properties":{"bugtraq-id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"modified-date":{"type":"string"},"name_cn":{"type":"string"},"published-date":{"type":"string"},"severity_cn":{"type":"string"},"severity_en":{"type":"string"},"source":{"type":"string"},"url":{"type":"string"},"vuln-description_cn":{"type":"string"},"vuln-solution":{"type":"string"},"vuln-type_cn":{"type":"string"},"vuln-type_en":{"type":"string"}},"type":"object"},"advisory.CNVDBulletin":{"description":"advisory.CNVDBulletin","properties":{"cnta":{"type":"string"},"cnvd":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"reference_urls":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CNVDFlaw":{"description":"advisory.CNVDFlaw","properties":{"affected_products_cn":{"type":"string"},"bugtraq_id":{"type":"string"},"cnvd":{"type":"string"},"collection_time":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"harm_level":{"type":"string"},"id":{"type":"string"},"public_date":{"type":"string"},"reference_urls":{"items":{"type":"string"},"type":"array","uniqueItems":false},"submission_time":{"type":"string"},"title_cn":{"type":"string"},"update_time":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"validation_info_cn":{"type":"string"},"validation_info_en":{"type":"string"},"vendor_patch_cn":{"type":"string"},"vuln_attachments":{"items":{"type":"string"},"type":"array","uniqueItems":false},"vuln_description_cn":{"type":"string"},"vuln_solution_cn":{"type":"string"},"vuln_type_cn":{"type":"string"}},"type":"object"},"advisory.COSUpdate":{"description":"advisory.COSUpdate","properties":{"changed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"featured":{"items":{"type":"string"},"type":"array","uniqueItems":false},"fixed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"id":{"type":"string"},"reference":{"type":"string"},"security":{"items":{"type":"string"},"type":"array","uniqueItems":false},"updated":{"type":"string"}},"type":"object"},"advisory.CPEMatch":{"description":"advisory.CPEMatch","properties":{"criteria":{"type":"string"},"matchCriteriaId":{"type":"string"},"vulnerable":{"type":"boolean"}},"type":"object"},"advisory.CPENode":{"description":"advisory.CPENode","properties":{"cpeMatch":{"items":{"$ref":"#/components/schemas/advisory.CPEMatch"},"type":"array","uniqueItems":false},"negate":{"type":"boolean"},"operator":{"type":"string"}},"type":"object"},"advisory.CSAF":{"description":"advisory.CSAF","properties":{"document":{"$ref":"#/components/schemas/advisory.DocumentMetadata"},"notes":{"description":"Notes holds notes associated with the whole document.\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3217-document-property---notes","items":{"$ref":"#/components/schemas/advisory.CSAFNote"},"type":"array","uniqueItems":false},"product_tree":{"$ref":"#/components/schemas/advisory.ProductBranch"},"vulnerabilities":{"description":"Vulnerabilities contains information about the vulnerabilities,\n(i.e. CVEs), associated threats, and product status.\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#323-vulnerabilities-property","items":{"$ref":"#/components/schemas/advisory.CSAFVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CSAFDistribution":{"description":"advisory.CSAFDistribution","type":"object"},"advisory.CSAFNote":{"description":"advisory.CSAFNote","properties":{"audience":{"type":"string"},"category":{"type":"string"},"text":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.CSAFReference":{"description":"advisory.CSAFReference","properties":{"category":{"type":"string"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CSAFRelationship":{"description":"advisory.CSAFRelationship","properties":{"category":{"type":"string"},"full_product_name":{"$ref":"#/components/schemas/advisory.Product"},"product_reference":{"type":"string"},"relates_to_product_reference":{"type":"string"}},"type":"object"},"advisory.CSAFScore":{"description":"advisory.CSAFScore","properties":{"cvss_v2":{"$ref":"#/components/schemas/advisory.CVSSV2"},"cvss_v3":{"$ref":"#/components/schemas/advisory.CVSSV3"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CSAFVulnerability":{"description":"advisory.CSAFVulnerability","properties":{"cve":{"description":"MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability.\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3232-vulnerabilities-property---cve","type":"string"},"cwe":{"$ref":"#/components/schemas/advisory.Cwe"},"flags":{"description":"Machine readable flags for products related to vulnerability\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3235-vulnerabilities-property---flags","items":{"$ref":"#/components/schemas/advisory.Flag"},"type":"array","uniqueItems":false},"ids":{"description":"List of IDs represents a list of unique labels or tracking IDs for the vulnerability (if such information exists).\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3236-vulnerabilities-property---ids","items":{"$ref":"#/components/schemas/advisory.TrackingID"},"type":"array","uniqueItems":false},"notes":{"description":"Notes holds notes associated with the Vulnerability object.\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3238-vulnerabilities-property---notes","items":{"$ref":"#/components/schemas/advisory.CSAFNote"},"type":"array","uniqueItems":false},"product_status":{"additionalProperties":{"items":{"type":"string"},"type":"array"},"description":"Provide details on the status of the referenced product related to the vulnerability.\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3239-vulnerabilities-property---product-status","type":"object"},"references":{"description":"Vulnerability references holds a list of references associated with this vulnerability item.\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#32310-vulnerabilities-property---references","items":{"$ref":"#/components/schemas/advisory.CSAFReference"},"type":"array","uniqueItems":false},"release_date":{"type":"string"},"remediations":{"description":"Provide details of remediations associated with a Vulnerability\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#32312-vulnerabilities-property---remediations","items":{"$ref":"#/components/schemas/advisory.RemediationData"},"type":"array","uniqueItems":false},"scores":{"description":"Scores holds the scores associated with the Vulnerability object.\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#32313-vulnerabilities-property---scores\nCurrently only CVSS v3 is supported.","items":{"$ref":"#/components/schemas/advisory.CSAFScore"},"type":"array","uniqueItems":false},"threats":{"description":"Provide details of threats associated with a vulnerability.\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#32314-vulnerabilities-property---threats","items":{"$ref":"#/components/schemas/advisory.ThreatData"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CVEDetail":{"description":"advisory.CVEDetail","properties":{"baseScore":{"type":"string"},"cveid":{"type":"string"},"description":{"type":"string"},"vector":{"type":"string"}},"type":"object"},"advisory.CVEDetailsLink":{"description":"advisory.CVEDetailsLink","properties":{"url":{"type":"string"},"value":{"type":"string"}},"type":"object"},"advisory.CVEReference":{"description":"advisory.CVEReference","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CVSS":{"description":"advisory.CVSS","properties":{"score":{"type":"string"},"severity":{"type":"string"},"type":{"type":"string"},"vector":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.CVSSV2":{"description":"advisory.CVSSV2","properties":{"accessComplexity":{"type":"string"},"accessVector":{"type":"string"},"authentication":{"type":"string"},"availabilityImpact":{"type":"string"},"availabilityRequirement":{"type":"string"},"baseScore":{"type":"number"},"collateralDamagePotential":{"type":"string"},"confidentialityImpact":{"type":"string"},"confidentialityRequirement":{"type":"string"},"environmentalScore":{"type":"number"},"exploitability":{"type":"string"},"integrityImpact":{"type":"string"},"integrityRequirement":{"type":"string"},"remediationLevel":{"type":"string"},"reportConfidence":{"type":"string"},"targetDistribution":{"type":"string"},"temporalScore":{"type":"number"}},"type":"object"},"advisory.CVSSV3":{"description":"advisory.CVSSV3","properties":{"attackComplexity":{"type":"string"},"attackVector":{"type":"string"},"availabilityImpact":{"type":"string"},"baseScore":{"type":"number"},"baseSeverity":{"type":"string"},"confidentialityImpact":{"type":"string"},"integrityImpact":{"type":"string"},"privilegesRequired":{"type":"string"},"scope":{"type":"string"},"userInteraction":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.CVSSV40":{"description":"this isn't called baseMetric, because it can contain other metrics -- typically supplemental metrics","properties":{"Automatable":{"type":"string"},"Recovery":{"type":"string"},"Safety":{"type":"string"},"attackComplexity":{"type":"string"},"attackRequirements":{"type":"string"},"attackVector":{"type":"string"},"availabilityRequirement":{"type":"string"},"baseScore":{"type":"number"},"baseSeverity":{"type":"string"},"confidentialityRequirement":{"type":"string"},"exploitMaturity":{"type":"string"},"integrityRequirement":{"type":"string"},"modifiedAttackComplexity":{"type":"string"},"modifiedAttackRequirements":{"type":"string"},"modifiedAttackVector":{"type":"string"},"modifiedPrivilegesRequired":{"type":"string"},"modifiedSubAvailabilityImpact":{"type":"string"},"modifiedSubConfidentialityImpact":{"type":"string"},"modifiedSubIntegrityImpact":{"type":"string"},"modifiedUserInteraction":{"type":"string"},"modifiedVulnAvailabilityImpact":{"type":"string"},"modifiedVulnConfidentialityImpact":{"type":"string"},"modifiedVulnIntegrityImpact":{"type":"string"},"privilegesRequired":{"type":"string"},"providerUrgency":{"type":"string"},"subAvailabilityImpact":{"type":"string"},"subConfidentialityImpact":{"type":"string"},"subIntegrityImpact":{"type":"string"},"userInteraction":{"type":"string"},"valueDensity":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"},"vulnAvailabilityImpact":{"type":"string"},"vulnConfidentialityImpact":{"type":"string"},"vulnIntegrityImpact":{"type":"string"},"vulnerabilityResponseEffort":{"type":"string"}},"type":"object"},"advisory.CVSSV40Threat":{"description":"advisory.CVSSV40Threat","properties":{"baseThreatScore":{"type":"number"},"baseThreatSeverity":{"type":"string"},"exploitMaturity":{"type":"string"}},"type":"object"},"advisory.CWENode":{"description":"advisory.CWENode","type":"object"},"advisory.CanvasExploit":{"description":"advisory.CanvasExploit","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"exploit_pack":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Capec":{"description":"advisory.Capec","properties":{"capec_id":{"type":"string"},"capec_name":{"type":"string"},"capec_url":{"type":"string"},"lang":{"type":"string"}},"type":"object"},"advisory.CarestreamAdvisory":{"description":"advisory.CarestreamAdvisory","properties":{"carestream_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_updated":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Carrier":{"description":"advisory.Carrier","properties":{"advisory_id":{"type":"string"},"affected_product":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CentosPackage":{"description":"advisory.CentosPackage","properties":{"filename":{"type":"string"},"name":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.CertBE":{"description":"advisory.CertBE","properties":{"affected_software":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"mitigation":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"risk":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vulnerability_type":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CertFRAdvisory":{"description":"advisory.CertFRAdvisory","properties":{"affected_systems_fr":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"reference":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"resume_fr":{"type":"string"},"risks_fr":{"type":"string"},"solution_fr":{"type":"string"},"source_fr":{"type":"string"},"title_fr":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CertIN":{"description":"advisory.CertIN","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CertIRSecurityAlert":{"description":"advisory.CertIRSecurityAlert","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary_fa":{"type":"string"},"title_fa":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CertSE":{"description":"advisory.CertSE","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary_sv":{"type":"string"},"title_sv":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CertUA":{"description":"advisory.CertUA","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary_ua":{"type":"string"},"title_ua":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ChainGuard":{"description":"advisory.ChainGuard","properties":{"apkurl":{"type":"string"},"archs":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"description":"un-used","type":"string"},"packages":{"items":{"$ref":"#/components/schemas/advisory.ChainGuardPackage"},"type":"array","uniqueItems":false},"reponame":{"type":"string"},"urlprefix":{"type":"string"}},"type":"object"},"advisory.ChainGuardPackage":{"description":"advisory.ChainGuardPackage","properties":{"name":{"type":"string"},"secfixes":{"items":{"$ref":"#/components/schemas/advisory.ChainGuardSecFix"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.ChainGuardSecFix":{"description":"advisory.ChainGuardSecFix","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"version":{"type":"string"}},"type":"object"},"advisory.CheckPoint":{"description":"advisory.CheckPoint","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_updated":{"type":"string"},"reference":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Chrome":{"description":"advisory.Chrome","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.AffectedChrome"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Ciena":{"description":"advisory.Ciena","properties":{"cves":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"issue_no":{"type":"integer"},"security_advisory_number":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"vulnerable_products":{"items":{"$ref":"#/components/schemas/advisory.VulnerableProduct"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CisaCsafAdv":{"description":"advisory.CisaCsafAdv","properties":{"csaf_json":{"$ref":"#/components/schemas/advisory.CSAF"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CiscoAdvisory":{"description":"advisory.CiscoAdvisory","properties":{"ciscoBugId":{"description":"multiple","type":"string"},"csaf":{"type":"string"},"cve":{"description":"multiple","items":{"type":"string"},"type":"array","uniqueItems":false},"cvrf":{"type":"string"},"cwe":{"description":"multiple","type":"string"},"date_added":{"type":"string"},"id":{"type":"integer"},"identifier":{"type":"string"},"name":{"type":"string"},"related_resources":{"type":"string"},"severity":{"type":"string"},"status":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"totalCount":{"type":"integer"},"updated_at":{"type":"string"},"url":{"type":"string"},"version":{"type":"string"},"workarounds":{"type":"string"},"workflowStatus":{"type":"string"}},"type":"object"},"advisory.CiscoCSAF":{"description":"advisory.CiscoCSAF","properties":{"csaf":{},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"identifier":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CiscoKnownGoodValue":{"description":"advisory.CiscoKnownGoodValue","properties":{"biv_category":{"type":"string"},"biv_hash":{"type":"string"},"date_added":{"type":"string"},"dtype":{"type":"string"},"filename":{"type":"string"},"md5":{"type":"string"},"platform":{"type":"string"},"published":{"type":"string"},"sha1":{"type":"string"},"sha256":{"type":"string"},"sha512":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.CitrixAdvisory":{"description":"advisory.CitrixAdvisory","properties":{"citrixId":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"link":{"type":"string"},"products":{"items":{"type":"string"},"type":"array"},"severity":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.ClarotyVulnerability":{"description":"advisory.ClarotyVulnerability","properties":{"advisory_url":{"type":"string"},"claroty_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_v3":{"type":"number"},"cwe":{"type":"string"},"date_added":{"type":"string"},"product":{"type":"string"},"target":{"type":"string"},"vendor":{"type":"string"},"vendor_advisory_url":{"type":"string"}},"type":"object"},"advisory.CloudBees":{"description":"advisory.CloudBees","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CloudVulnDBAdvisory":{"description":"advisory.CloudVulnDBAdvisory","properties":{"affectedServices":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"link":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"title":{"type":"string"}},"type":"object"},"advisory.CodesysAdvisory":{"description":"advisory.CodesysAdvisory","properties":{"codesys_id":{"type":"string"},"csaf_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_revised":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CommVault":{"description":"advisory.CommVault","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve_details":{"items":{"$ref":"#/components/schemas/advisory.CommVaultCVEDetails"},"type":"array","uniqueItems":false},"cvss_range":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"impacted_product":{"$ref":"#/components/schemas/advisory.CommVaultImpactedProduct"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"resolution":{"$ref":"#/components/schemas/advisory.CommVaultResolution"},"severity":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CommVaultCVEDetails":{"description":"advisory.CommVaultCVEDetails","properties":{"cve_id":{"type":"string"},"cvss":{"type":"string"},"description":{"type":"string"},"external_links":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CommVaultImpactedProduct":{"description":"advisory.CommVaultImpactedProduct","properties":{"description":{"type":"string"},"impacted_product_details":{"items":{"$ref":"#/components/schemas/advisory.CommVaultImpactedProductDetails"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CommVaultImpactedProductDetails":{"description":"advisory.CommVaultImpactedProductDetails","properties":{"affected_versions":{"type":"string"},"platforms":{"items":{"type":"string"},"type":"array","uniqueItems":false},"product_name":{"type":"string"},"resolved_versions":{"type":"string"},"status":{"type":"string"}},"type":"object"},"advisory.CommVaultResolution":{"description":"advisory.CommVaultResolution","properties":{"description":{"type":"string"},"resolution_details":{"items":{"$ref":"#/components/schemas/advisory.CommVaultResolutionDetails"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CommVaultResolutionDetails":{"description":"advisory.CommVaultResolutionDetails","properties":{"feature_release":{"type":"string"},"maintenance_release":{"type":"string"}},"type":"object"},"advisory.CompassSecurity":{"description":"advisory.CompassSecurity","properties":{"csnc_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"effect":{"type":"string"},"introduction":{"type":"string"},"product":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"risk":{"type":"string"},"severity":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"vendor":{"type":"string"}},"type":"object"},"advisory.ContainerOS":{"description":"advisory.ContainerOS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updates":{"items":{"$ref":"#/components/schemas/advisory.COSUpdate"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"advisory.CoreImpactExploit":{"description":"advisory.CoreImpactExploit","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"exploit_type":{"type":"string"},"platform":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.Correction":{"description":"advisory.Correction","properties":{"correctedAt":{"type":"string"},"orelease":{"type":"string"},"release":{"type":"string"}},"type":"object"},"advisory.Credit":{"description":"advisory.Credit","properties":{"lang":{"type":"string"},"type":{"type":"string"},"value":{"type":"string"}},"type":"object"},"advisory.Crestron":{"description":"advisory.Crestron","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"threat":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.CrowdSec":{"description":"advisory.CrowdSec","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"eitw":{"type":"boolean"},"first_seen":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Curl":{"description":"advisory.Curl","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"info":{"$ref":"#/components/schemas/advisory.OCurl"},"url":{"type":"string"}},"type":"object"},"advisory.CurlAffected":{"description":"advisory.CurlAffected","properties":{"ranges":{"items":{"$ref":"#/components/schemas/advisory.CurlRange"},"type":"array","uniqueItems":false},"versions":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CurlCWE":{"description":"advisory.CurlCWE","properties":{"desc":{"type":"string"},"id":{"type":"string"}},"type":"object"},"advisory.CurlCredit":{"description":"advisory.CurlCredit","properties":{"name":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.CurlRange":{"description":"advisory.CurlRange","properties":{"events":{"items":{"additionalProperties":{"type":"string"},"type":"object"},"type":"array","uniqueItems":false},"repo":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.Cvrf":{"description":"advisory.Cvrf","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CvsssV2_3":{"description":"advisory.CvsssV2_3","properties":{"basescore":{"type":"string"},"temporalscore":{"type":"string"}},"type":"object"},"advisory.Cwe":{"description":"advisory.Cwe","properties":{"id":{"type":"string"},"name":{"type":"string"}},"type":"object"},"advisory.CweAcceptanceLevel":{"description":"advisory.CweAcceptanceLevel","properties":{"description":{"type":"string"},"lastModified":{"type":"string"}},"type":"object"},"advisory.CweData":{"description":"advisory.CweData","properties":{"lang":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"},"value":{"type":"string"}},"type":"object"},"advisory.Cwes":{"description":"advisory.Cwes","properties":{"nodes":{"items":{"$ref":"#/components/schemas/advisory.CWENode"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.Cycle":{"description":"advisory.Cycle","properties":{"codename":{"type":"string"},"cycle":{"type":"string"},"discontinued":{},"eol":{},"extendedSupport":{},"latest":{"type":"string"},"latestReleaseDate":{"type":"string"},"link":{"type":"string"},"lts":{},"releaseDate":{"type":"string"},"releaseLabel":{"type":"string"},"support":{}},"type":"object"},"advisory.DBSpecific":{"description":"advisory.DBSpecific","properties":{"CWE":{"$ref":"#/components/schemas/advisory.CurlCWE"},"award":{"$ref":"#/components/schemas/advisory.Award"},"last_affected":{"type":"string"},"package":{"type":"string"},"severity":{"type":"string"},"url":{"type":"string"},"www":{"type":"string"}},"type":"object"},"advisory.DFNCert":{"description":"advisory.DFNCert","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary_de":{"type":"string"},"title_de":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.DLink":{"description":"advisory.DLink","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.DNN":{"description":"advisory.DNN","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Dahua":{"description":"advisory.Dahua","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.DanFossCVEDetails":{"description":"advisory.DanFossCVEDetails","properties":{"base_score":{"type":"string"},"cve":{"type":"string"},"severity":{"type":"string"}},"type":"object"},"advisory.Danfoss":{"description":"advisory.Danfoss","properties":{"affected_products":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve_details":{"items":{"$ref":"#/components/schemas/advisory.DanFossCVEDetails"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"mitigation":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Dassault":{"description":"advisory.Dassault","properties":{"affected_products":{"type":"string"},"affected_versions":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details":{"type":"string"},"severity":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.DateTime":{"description":"advisory.DateTime","type":"object"},"advisory.DebianCVE":{"description":"advisory.DebianCVE","properties":{"cve":{"type":"string"},"debianbug":{"type":"integer"},"description":{"type":"string"},"releases":{"items":{"$ref":"#/components/schemas/advisory.AffectedDebianRelease"},"type":"array","uniqueItems":false},"scope":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.DebianSecurityAdvisory":{"description":"advisory.DebianSecurityAdvisory","properties":{"affected_packages":{"items":{"$ref":"#/components/schemas/advisory.AffectedDebianPackage"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"dsa":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Dell":{"description":"advisory.Dell","properties":{"articleNumber":{"type":"string"},"combinedProductList":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"dell_cves":{"items":{"$ref":"#/components/schemas/advisory.DellCVE"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.DellCVE":{"description":"advisory.DellCVE","properties":{"cve":{"type":"string"},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"}},"type":"object"},"advisory.DeltaAdvisory":{"description":"advisory.DeltaAdvisory","properties":{"affectedProducts":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"link":{"type":"string"},"recommendedAction":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.DistroPackage":{"description":"advisory.DistroPackage","properties":{"binary":{"type":"boolean"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"license":{"items":{"type":"string"},"type":"array","uniqueItems":false},"name":{"type":"string"},"secFixes":{"items":{"$ref":"#/components/schemas/advisory.SecFix"},"type":"array"},"versions":{"items":{"$ref":"#/components/schemas/advisory.DistroVersion"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.DistroVersion":{"description":"advisory.DistroVersion","properties":{"arch":{"type":"string"},"published_date":{"type":"string"},"release":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.Django":{"description":"advisory.Django","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.DocumentMetadata":{"description":"Document contains metadata about the CSAF document itself.\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#321-document-property","properties":{"category":{"type":"string"},"csaf_version":{"type":"string"},"distribution":{"$ref":"#/components/schemas/advisory.CSAFDistribution"},"lang":{"type":"string"},"notes":{"description":"used by ncsc","items":{"$ref":"#/components/schemas/advisory.CSAFNote"},"type":"array","uniqueItems":false},"publisher":{"$ref":"#/components/schemas/advisory.Publisher"},"references":{"items":{"$ref":"#/components/schemas/advisory.CSAFReference"},"type":"array","uniqueItems":false},"title":{"description":"Aggregate severity is a vehicle that is provided by the document producer to convey the urgency and\ncriticality with which the one or more vulnerabilities reported should be addressed.","type":"string"},"tracking":{"$ref":"#/components/schemas/advisory.Tracking"}},"type":"object"},"advisory.DocumentPublisher":{"description":"advisory.DocumentPublisher","properties":{"contact_details":{"type":"string"},"issuing_authority":{"type":"string"},"type":{"description":"the json for this is missing/broke","type":"integer"}},"type":"object"},"advisory.DotCMS":{"description":"advisory.DotCMS","properties":{"credit":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"fixed_version":{"type":"string"},"issue_id":{"type":"string"},"mitigation":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.DragosAdvisory":{"description":"advisory.DragosAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"link":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.Draytek":{"description":"advisory.Draytek","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Drupal":{"description":"advisory.Drupal","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"project":{"type":"string"},"risk":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.EOLAlibaba":{"description":"advisory.EOLAlibaba","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"eol_date":{"type":"string"},"eol_name":{"type":"string"},"product":{"type":"string"},"release_date":{"type":"string"},"url":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.EOLMicrosoft":{"description":"advisory.EOLMicrosoft","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"edition":{"type":"string"},"extended_end_date":{"type":"string"},"mainstream_date":{"type":"string"},"product":{"type":"string"},"release":{"type":"string"},"release_end_date":{"type":"string"},"release_start_date":{"type":"string"},"retirement_date":{"type":"string"},"start_date":{"type":"string"},"support_policy":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.EOLReleaseData":{"description":"advisory.EOLReleaseData","properties":{"already_eol":{"type":"boolean"},"branch":{"description":"Alpine Linux","type":"string"},"branch_url":{"description":"Alpine Linux","type":"string"},"codename":{"type":"string"},"cpe":{"type":"string"},"eol_date":{"type":"string"},"eol_date_extended_support":{"description":"Oracle Linux, Solaris","type":"string"},"eol_date_premier_support":{"description":"Oracle Linux, Solaris","type":"string"},"eol_elts_date":{"type":"string"},"eol_lts_date":{"type":"string"},"git_branch":{"description":"Alpine Linux","type":"string"},"git_branch_url":{"description":"Alpine Linux","type":"string"},"lts":{"description":"Ubuntu","type":"boolean"},"minor_releases":{"description":"Alpine Linux","items":{"type":"string"},"type":"array","uniqueItems":false},"product":{"type":"string"},"release_date":{"type":"string"},"release_name":{"type":"string"},"source_url":{"type":"string"},"technology_level":{"description":"AIX","type":"string"},"vendor":{"type":"string"},"version":{"type":"string"},"version_api":{"description":"Android","type":"string"},"version_darwin":{"description":"macOS","type":"string"},"version_sunos":{"description":"Solaris","type":"string"},"windows_current_build":{"description":"Microsoft Windows","type":"string"},"windows_display_version":{"description":"Microsoft Windows","type":"string"},"windows_edition_id":{"description":"Microsoft Windows","type":"string"},"windows_insider_preview":{"description":"Microsoft Windows","type":"boolean"}},"type":"object"},"advisory.EUVD":{"description":"advisory.EUVD","properties":{"aliases":{"items":{"type":"string"},"type":"array","uniqueItems":false},"assigner":{"type":"string"},"base_score":{"type":"number"},"base_score_vector":{"type":"string"},"base_score_version":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_updated":{"type":"string"},"description":{"type":"string"},"enisa_id_product":{"items":{"$ref":"#/components/schemas/advisory.EnisaIDProduct"},"type":"array","uniqueItems":false},"enisa_id_vendor":{"items":{"$ref":"#/components/schemas/advisory.EnisaIDVendor"},"type":"array","uniqueItems":false},"epss":{"type":"number"},"exploited":{"description":"This field is exploited field from endpoint /api/vulnerabilities.\napidocs : https://euvd.enisa.europa.eu/apidoc\nNote: There are records where exploited_since is populated with a valid date,\nbut it still shows up under non_exploitable data set","type":"boolean"},"exploited_since":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"advisory.EatonAdvisory":{"description":"advisory.EatonAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"eaton_id":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.EcoSystem":{"description":"advisory.EcoSystem","properties":{"severity":{"type":"string"},"spl":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.Elastic":{"description":"advisory.Elastic","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"esaid":{"type":"string"},"remediation":{"type":"string"},"summary":{"type":"string"}},"type":"object"},"advisory.Elspec":{"description":"advisory.Elspec","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"severity":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.EmergingThreatsSnort":{"description":"advisory.EmergingThreatsSnort","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"rev":{"type":"string"},"rule_disabled":{"type":"boolean"},"rule_name":{"type":"string"},"sid":{"type":"integer"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.EmersonAdvisory":{"description":"advisory.EmersonAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"emerson_id":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.EndOfLife":{"description":"advisory.EndOfLife","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cycles":{"items":{"$ref":"#/components/schemas/advisory.Cycle"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Endress":{"description":"advisory.Endress","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"impact":{"type":"string"},"mitigation":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.EnisaIDProduct":{"description":"advisory.EnisaIDProduct","properties":{"id":{"type":"string"},"product_name":{"type":"string"},"product_version":{"type":"string"}},"type":"object"},"advisory.EnisaIDVendor":{"description":"advisory.EnisaIDVendor","properties":{"id":{"type":"string"},"vendor_name":{"type":"string"}},"type":"object"},"advisory.Event":{"description":"advisory.Event","properties":{"fixed":{"type":"string"},"introduced":{"type":"string"},"last_affected":{"type":"string"},"limit":{"type":"string"}},"type":"object"},"advisory.ExodusIntel":{"description":"advisory.ExodusIntel","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"disclosed_public":{"type":"string"},"disclosed_vendor":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ExploitDBExploitv2":{"description":"advisory.ExploitDBExploitv2","properties":{"author":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"edb_id":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ExternalReferences":{"description":"advisory.ExternalReferences","properties":{"description":{"type":"string"},"external_id":{"type":"string"},"source_name":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.F5":{"description":"advisory.F5","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.FSecure":{"description":"advisory.FSecure","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Fanuc":{"description":"advisory.Fanuc","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Fastly":{"description":"advisory.Fastly","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Festo":{"description":"advisory.Festo","properties":{"csaf_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.FileCloud":{"description":"advisory.FileCloud","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.FileZilla":{"description":"advisory.FileZilla","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.FixAff":{"description":"advisory.FixAff","properties":{"affected_since":{"type":"string"},"fixed_version":{"type":"string"},"patch_url":{"type":"string"}},"type":"object"},"advisory.Flag":{"description":"advisory.Flag","properties":{"date":{"type":"string"},"group_ids":{"items":{"type":"string"},"type":"array","uniqueItems":false},"label":{"type":"string"},"product_ids":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.FlattSecurity":{"description":"advisory.FlattSecurity","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ForgeRock":{"description":"advisory.ForgeRock","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.FortinetAdvisory":{"description":"advisory.FortinetAdvisory","properties":{"acknowledgement":{"type":"string"},"affectedProducts":{"items":{"type":"string"},"type":"array"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvssv3":{"type":"string"},"date_added":{"type":"string"},"irnumber":{"type":"string"},"link":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"solutions":{"items":{"type":"string"},"type":"array"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.FortinetIPS":{"description":"advisory.FortinetIPS","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"epss":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Foxit":{"description":"advisory.Foxit","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.FoxitAffected"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.FoxitAffected":{"description":"advisory.FoxitAffected","properties":{"product":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.Fresenius":{"description":"advisory.Fresenius","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"mitigation":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GCP":{"description":"advisory.GCP","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GEGas":{"description":"advisory.GEGas","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GEHealthcareAdvisory":{"description":"advisory.GEHealthcareAdvisory","properties":{"base_score":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_updated":{"type":"string"},"description":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GHAdvisoryJSONLean":{"description":"advisory.GHAdvisoryJSONLean","properties":{"classification":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"$ref":"#/components/schemas/advisory.GHCvss"},"cwes":{"$ref":"#/components/schemas/advisory.Cwes"},"databaseId":{"type":"integer"},"date_added":{"type":"string"},"description":{"type":"string"},"ghsaId":{"type":"string"},"id":{"type":"string"},"identifiers":{"items":{"$ref":"#/components/schemas/advisory.GHIdentifier"},"type":"array","uniqueItems":false},"notificationsPermalink":{"type":"string"},"origin":{"type":"string"},"permalink":{"type":"string"},"publishedAt":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.GHReference"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"summary":{"type":"string"},"updated_at":{"type":"string"},"vulnerabilities":{"$ref":"#/components/schemas/advisory.GHVulnerabilities"},"withdrawnAt":{"type":"string"}},"type":"object"},"advisory.GHCvss":{"description":"advisory.GHCvss","properties":{"score":{"type":"number"},"vectorString":{"type":"string"}},"type":"object"},"advisory.GHIdentifier":{"description":"advisory.GHIdentifier","properties":{"type":{"type":"string"},"value":{"type":"string"}},"type":"object"},"advisory.GHNode":{"description":"advisory.GHNode","properties":{"package":{"$ref":"#/components/schemas/advisory.GHPackage"},"severity":{"type":"string"},"updatedAt":{"type":"string"},"vulnerableVersionRange":{"type":"string"}},"type":"object"},"advisory.GHPackage":{"description":"advisory.GHPackage","properties":{"ecosystem":{"type":"string"},"name":{"type":"string"}},"type":"object"},"advisory.GHReference":{"description":"advisory.GHReference","properties":{"url":{"type":"string"}},"type":"object"},"advisory.GHSA":{"description":"advisory.GHSA","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"ghsa":{"$ref":"#/components/schemas/advisory.OriginalGHSA"},"url":{"type":"string"}},"type":"object"},"advisory.GHSAAffected":{"description":"advisory.GHSAAffected","properties":{"ecosystem_specific":{"$ref":"#/components/schemas/advisory.GHSAEcoSystemSpecific"},"package":{"$ref":"#/components/schemas/advisory.GHSAPackage"},"ranges":{"items":{"$ref":"#/components/schemas/advisory.GHSARange"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.GHSADatabaseSpecific":{"description":"advisory.GHSADatabaseSpecific","properties":{"cwe_ids":{"items":{"type":"string"},"type":"array","uniqueItems":false},"github_reviewed":{"type":"boolean"},"github_reviewed_at":{"type":"string"},"nvd_published_at":{"type":"string"},"severity":{"type":"string"}},"type":"object"},"advisory.GHSAEcoSystemSpecific":{"description":"advisory.GHSAEcoSystemSpecific","properties":{"affected_functions":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.GHSAEvent":{"description":"advisory.GHSAEvent","properties":{"fixed":{"type":"string"},"introduced":{"type":"string"}},"type":"object"},"advisory.GHSAPackage":{"description":"advisory.GHSAPackage","properties":{"ecosystem":{"type":"string"},"name":{"type":"string"}},"type":"object"},"advisory.GHSARange":{"description":"advisory.GHSARange","properties":{"events":{"items":{"$ref":"#/components/schemas/advisory.GHSAEvent"},"type":"array","uniqueItems":false},"type":{"type":"string"}},"type":"object"},"advisory.GHSAReference":{"description":"advisory.GHSAReference","properties":{"type":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GHSASeverity":{"description":"advisory.GHSASeverity","properties":{"score":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.GHVulnerabilities":{"description":"advisory.GHVulnerabilities","properties":{"nodes":{"items":{"$ref":"#/components/schemas/advisory.GHNode"},"type":"array","uniqueItems":false},"totalCount":{"type":"integer"}},"type":"object"},"advisory.GMOCyberSecurity":{"description":"advisory.GMOCyberSecurity","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary_ja":{"type":"string"},"title_ja":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Gallagher":{"description":"advisory.Gallagher","properties":{"activeExploitation":{"type":"boolean"},"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"fixes":{"type":"string"},"reportedBy":{"type":"string"},"severity":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Gen":{"description":"advisory.Gen","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"id":{"description":"not all of them have this","type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Genetec":{"description":"advisory.Genetec","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Gigabyte":{"description":"advisory.Gigabyte","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"link":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.GitHubExploit":{"description":"advisory.GitHubExploit","properties":{"clone_https_url":{"type":"string"},"clone_ssh_url":{"type":"string"},"clone_ssh_url_cached":{"type":"string"},"currently_trending":{"type":"boolean"},"cve":{"type":"string"},"date_added":{"type":"string"},"date_last_revised":{"type":"string"},"exploit_type":{"type":"string"},"forks":{"type":"integer"},"html_url":{"type":"string"},"id":{"type":"string"},"language":{"type":"string"},"reference_url":{"type":"string"},"refsource":{"type":"string"},"repo_full_path":{"type":"string"},"repo_id":{"type":"string"},"repo_name":{"type":"string"},"repo_owner":{"type":"string"},"stars":{"type":"integer"}},"type":"object"},"advisory.GitLabExploit":{"description":"advisory.GitLabExploit","properties":{"clone_https_url":{"type":"string"},"clone_ssh_url":{"type":"string"},"clone_ssh_url_cached":{"type":"string"},"cve":{"type":"string"},"date_added":{"type":"string"},"date_last_revised":{"type":"string"},"exploit_type":{"type":"string"},"forks":{"type":"integer"},"html_url":{"type":"string"},"language":{"type":"string"},"reference_url":{"type":"string"},"refsource":{"type":"string"},"repo_full_path":{"type":"string"},"repo_id":{"type":"string"},"repo_name":{"type":"string"},"repo_owner":{"type":"string"},"stars":{"type":"integer"}},"type":"object"},"advisory.GiteeExploit":{"description":"advisory.GiteeExploit","properties":{"clone_https_url":{"type":"string"},"clone_ssh_url":{"type":"string"},"clone_ssh_url_cached":{"type":"string"},"cve":{"type":"string"},"date_added":{"type":"string"},"date_last_revised":{"type":"string"},"exploit_type":{"type":"string"},"forks":{"type":"integer"},"html_url":{"type":"string"},"language":{"type":"string"},"reference_url":{"type":"string"},"refsource":{"type":"string"},"repo_full_path":{"type":"string"},"repo_id":{"type":"string"},"repo_name":{"type":"string"},"repo_owner":{"type":"string"},"stars":{"type":"integer"}},"type":"object"},"advisory.GitlabAdvisory":{"description":"advisory.GitlabAdvisory","properties":{"affected_range":{"type":"string"},"affected_versions":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_v2":{"type":"string"},"cvss_v3":{"type":"string"},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"filename":{"type":"string"},"fixed_versions":{"items":{"type":"string"},"type":"array","uniqueItems":false},"ghsa":{"items":{"type":"string"},"type":"array","uniqueItems":false},"gitlab_url":{"type":"string"},"identifier":{"type":"string"},"identifiers":{"items":{"type":"string"},"type":"array","uniqueItems":false},"not_impacted":{"type":"string"},"package_manager":{"type":"string"},"package_name":{"type":"string"},"package_slug":{"type":"string"},"pubdate":{"type":"string"},"solution":{"type":"string"},"title":{"type":"string"},"urls":{"items":{"type":"string"},"type":"array","uniqueItems":false},"uuid":{"type":"string"}},"type":"object"},"advisory.Glibc":{"description":"advisory.Glibc","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GnuTLS":{"description":"advisory.GnuTLS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GoCredits":{"description":"advisory.GoCredits","properties":{"name":{"type":"string"}},"type":"object"},"advisory.GoEvent":{"description":"advisory.GoEvent","properties":{"fixed":{"type":"string"},"introduced":{"type":"string"}},"type":"object"},"advisory.GoVulnAffected":{"description":"advisory.GoVulnAffected","properties":{"database_specific":{"$ref":"#/components/schemas/advisory.GoVulnDatabaseSpecific"},"ecosystem_specific":{"$ref":"#/components/schemas/advisory.GoVulnEcosystemSpecific"},"package":{"$ref":"#/components/schemas/advisory.GoVulnPackage"},"ranges":{"items":{"$ref":"#/components/schemas/advisory.GoVulnRanges"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.GoVulnDatabaseSpecific":{"description":"advisory.GoVulnDatabaseSpecific","properties":{"url":{"type":"string"}},"type":"object"},"advisory.GoVulnEcosystemSpecific":{"description":"advisory.GoVulnEcosystemSpecific","properties":{"imports":{"items":{"$ref":"#/components/schemas/advisory.GoVulnImport"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.GoVulnImport":{"description":"advisory.GoVulnImport","properties":{"path":{"type":"string"},"symbols":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.GoVulnJSON":{"description":"advisory.GoVulnJSON","properties":{"advisory_url":{"type":"string"},"affected":{"items":{"$ref":"#/components/schemas/advisory.GoVulnAffected"},"type":"array","uniqueItems":false},"aliases":{"items":{"type":"string"},"type":"array","uniqueItems":false},"credits":{"items":{"$ref":"#/components/schemas/advisory.GoCredits"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details":{"type":"string"},"ghsa":{"items":{"type":"string"},"type":"array","uniqueItems":false},"go_advisory_id":{"type":"string"},"modified":{"type":"string"},"published":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.GoVulnReference"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.GoVulnPackage":{"description":"advisory.GoVulnPackage","properties":{"ecosystem":{"type":"string"},"name":{"type":"string"}},"type":"object"},"advisory.GoVulnRanges":{"description":"advisory.GoVulnRanges","properties":{"events":{"items":{"$ref":"#/components/schemas/advisory.GoEvent"},"type":"array","uniqueItems":false},"type":{"type":"string"}},"type":"object"},"advisory.GoVulnReference":{"description":"advisory.GoVulnReference","properties":{"type":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Grafana":{"description":"advisory.Grafana","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GreyNoiseDetection":{"description":"advisory.GreyNoiseDetection","properties":{"category":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"intention":{"type":"string"},"label":{"type":"string"},"name":{"type":"string"},"recommend_block":{"type":"boolean"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"related_tags":{"items":{"$ref":"#/components/schemas/advisory.GreyNoiseTags"},"type":"array","uniqueItems":false},"slug":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GreyNoiseTags":{"description":"advisory.GreyNoiseTags","properties":{"category":{"type":"string"},"id":{"type":"string"},"intention":{"type":"string"},"name":{"type":"string"},"slug":{"type":"string"}},"type":"object"},"advisory.HCL":{"description":"advisory.HCL","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.HIKVision":{"description":"advisory.HIKVision","properties":{"advisory_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"link":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.HKCert":{"description":"advisory.HKCert","properties":{"affected":{"items":{"type":"string"},"type":"array"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"impact":{"type":"string"},"link":{"type":"string"},"relatedLinks":{"items":{"type":"string"},"type":"array"},"risk":{"type":"string"},"solutions":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.HMS":{"description":"advisory.HMS","properties":{"affected_products":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"impact":{"type":"string"},"mitigation":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.HP":{"description":"advisory.HP","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"link":{"type":"string"},"severity":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.HPE":{"description":"advisory.HPE","properties":{"csaf":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Hacktivity":{"description":"advisory.Hacktivity","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"float64":{"type":"number"},"rank":{"type":"integer"},"reports_submitted":{"type":"integer"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.HardwareUpdate":{"description":"advisory.HardwareUpdate","properties":{"affectedVersions":{"type":"string"},"cves":{"items":{"type":"string"},"type":"array"},"hardwarePlatform":{"type":"string"},"system":{"type":"string"},"updatedVersion":{"type":"string"}},"type":"object"},"advisory.HarmonyOS":{"description":"advisory.HarmonyOS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.HashiCorp":{"description":"advisory.HashiCorp","properties":{"affected_products":{"type":"string"},"background":{"type":"string"},"bulletin_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details":{"type":"string"},"remediation":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.HaskellAffected":{"description":"advisory.HaskellAffected","properties":{"affected_constraint":{"type":"string"},"affected_versions":{"items":{"$ref":"#/components/schemas/advisory.HaskellVersion"},"type":"array","uniqueItems":false},"arch":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"os":{"items":{"type":"string"},"type":"array","uniqueItems":false},"package":{"type":"string"}},"type":"object"},"advisory.HaskellSADBAdvisory":{"description":"advisory.HaskellSADBAdvisory","properties":{"advisory_id":{"type":"string"},"affected_packages":{"items":{"$ref":"#/components/schemas/advisory.HaskellAffected"},"type":"array","uniqueItems":false},"aliases":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwes":{"items":{"type":"integer"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"keywords":{"items":{"type":"string"},"type":"array","uniqueItems":false},"references":{"additionalProperties":{"items":{"type":"string"},"type":"array"},"type":"object"},"related_vulns":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.HaskellVersion":{"description":"advisory.HaskellVersion","properties":{"fixed":{"type":"string"},"introduced":{"type":"string"}},"type":"object"},"advisory.HillromAdvisory":{"description":"advisory.HillromAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Hitachi":{"description":"advisory.Hitachi","properties":{"affectedProducts":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixedProducts":{"type":"string"},"hitachiId":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.HitachiEnergy":{"description":"advisory.HitachiEnergy","properties":{"advisory_id":{"type":"string"},"csaf_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"exploited":{"type":"boolean"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Honeywell":{"description":"advisory.Honeywell","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Huawei":{"description":"advisory.Huawei","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"sa_number":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.HuaweiEulerOS":{"description":"advisory.HuaweiEulerOS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"integer"},"packages":{"type":"string"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"synopsis":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.HuaweiIPS":{"description":"advisory.HuaweiIPS","properties":{"cnnvd":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_updated":{"type":"string"},"name":{"type":"string"},"severity":{"type":"string"},"threat_id":{"type":"integer"},"url":{"type":"string"},"vendor":{"type":"string"}},"type":"object"},"advisory.IAVA":{"description":"advisory.IAVA","properties":{"IAVA":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.IBM":{"description":"advisory.IBM","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ITW":{"description":"advisory.ITW","properties":{"cve":{"type":"string"},"date_added":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.ITWExploit":{"description":"advisory.ITWExploit","properties":{"advisory":{"type":"string"},"affected_versions":{"type":"string"},"analysis_url":{"type":"string"},"bug_introducing_change_list_url":{"type":"string"},"claimed_attribution":{"type":"string"},"claimed_attribution_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_discovered":{"type":"string"},"date_patched":{"type":"string"},"description":{"type":"string"},"first_patched_version":{"type":"string"},"patch_change_list_url":{"type":"string"},"product":{"type":"string"},"reported_by":{"type":"string"},"root_cause_analysis_url":{"type":"string"},"vendor":{"type":"string"},"vulnerability_type":{"type":"string"}},"type":"object"},"advisory.IVal":{"description":"advisory.IVal","properties":{"Value":{"type":"string"}},"type":"object"},"advisory.Idemia":{"description":"advisory.Idemia","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"sbid":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.IdentificationHelper":{"additionalProperties":{},"description":"advisory.IdentificationHelper","type":"object"},"advisory.Igel":{"description":"advisory.Igel","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Impact":{"description":"advisory.Impact","properties":{"capecId":{"type":"string"},"descriptions":{"items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.IncibeAdvisory":{"description":"advisory.IncibeAdvisory","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"detail":{"type":"string"},"link":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"solution":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.Intel":{"description":"advisory.Intel","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"link":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.IpIntelRecord":{"description":"advisory.IpIntelRecord","properties":{"asn":{"type":"string"},"city":{"type":"string"},"country":{"type":"string"},"country_code":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"feed_ids":{"items":{"type":"string"},"type":"array","uniqueItems":false},"hostnames":{"items":{"type":"string"},"type":"array","uniqueItems":false},"ip":{"type":"string"},"lastSeen":{"type":"string"},"matches":{"items":{"type":"string"},"type":"array","uniqueItems":false},"port":{"type":"integer"},"ssl":{"type":"boolean"},"type":{"$ref":"#/components/schemas/advisory.RecordType"}},"type":"object"},"advisory.IsraeliAlert":{"description":"advisory.IsraeliAlert","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details_he":{"type":"string"},"handling_he":{"type":"string"},"link":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"summary_he":{"type":"string"},"title_he":{"type":"string"}},"type":"object"},"advisory.IsraeliVulnerability":{"description":"advisory.IsraeliVulnerability","properties":{"ILVNId":{"type":"string"},"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"solution":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Issued":{"description":"advisory.Issued","type":"object"},"advisory.Istio":{"description":"advisory.Istio","properties":{"affected_version":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Ivanti":{"description":"advisory.Ivanti","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.IvantiRSS":{"description":"advisory.IvantiRSS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.JFrog":{"description":"advisory.JFrog","properties":{"cpes":{"items":{"$ref":"#/components/schemas/advisory.NVD20CVECPEMatch"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"product":{"type":"string"},"severity":{"type":"string"},"summary":{"type":"string"},"url":{"type":"string"},"versions":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.JNJAdvisory":{"description":"advisory.JNJAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.JVN":{"description":"advisory.JVN","properties":{"affected_en":{"type":"string"},"affected_ja":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description_en":{"type":"string"},"description_ja":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"solution_en":{"type":"string"},"solution_ja":{"type":"string"},"summary_en":{"type":"string"},"summary_ja":{"type":"string"},"title_en":{"type":"string"},"title_ja":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.JVNAdvisoryItem":{"description":"advisory.JVNAdvisoryItem","properties":{"cpe":{"items":{"$ref":"#/components/schemas/advisory.JVNCPE"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"items":{"$ref":"#/components/schemas/advisory.CVSS"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"description_en":{"type":"string"},"identifier":{"type":"string"},"issued":{"type":"string"},"modified":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.JVNReference"},"type":"array","uniqueItems":false},"title":{"type":"string"},"title_en":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"url_en":{"type":"string"}},"type":"object"},"advisory.JVNCPE":{"description":"advisory.JVNCPE","properties":{"cpe":{"type":"string"},"product":{"type":"string"},"vendor":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.JVNReference":{"description":"advisory.JVNReference","properties":{"id":{"type":"string"},"source":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.Jenkins":{"description":"advisory.Jenkins","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fix":{"type":"string"},"link":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.JetBrains":{"description":"advisory.JetBrains","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"product":{"type":"string"},"resolved_in":{"items":{"type":"string"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.JohnsonControls":{"description":"advisory.JohnsonControls","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"mitigation":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Juniper":{"description":"advisory.Juniper","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss3_score":{"type":"string"},"cvss3_vector":{"type":"string"},"cvss4_score":{"type":"string"},"cvss4_vector":{"type":"string"},"date_added":{"type":"string"},"fixed":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.K8S":{"description":"advisory.K8S","properties":{"content":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"issue_id":{"type":"integer"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.KEVCatalogVulnerability":{"description":"advisory.KEVCatalogVulnerability","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwes":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"dueDate":{"type":"string"},"knownRansomwareCampaignUse":{"type":"string"},"notes":{"type":"string"},"product":{"type":"string"},"requiredAction":{"type":"string"},"shortDescription":{"type":"string"},"vendorProject":{"type":"string"},"vulnerabilityName":{"type":"string"}},"type":"object"},"advisory.KRCertAdvisory":{"description":"advisory.KRCertAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description_ko":{"type":"string"},"link":{"type":"string"},"overview_ko":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"title_ko":{"type":"string"}},"type":"object"},"advisory.KasperskyICSCERTAdvisory":{"description":"advisory.KasperskyICSCERTAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"klcert_id":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Kb":{"description":"advisory.Kb","properties":{"kb_url":{"type":"string"},"ms_date_added":{"type":"string"},"status":{"type":"string"},"supercedence":{"type":"string"},"value":{"type":"string"}},"type":"object"},"advisory.KbThreatDescription":{"description":"advisory.KbThreatDescription","properties":{"dos":{"type":"string"},"exploited":{"type":"string"},"latest_software_release":{"type":"string"},"level":{"items":{"type":"string"},"type":"array","uniqueItems":false},"older_software_release":{"type":"string"},"publicly_disclosed":{"type":"string"},"type":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.KoreLogic":{"description":"advisory.KoreLogic","properties":{"affected_product":{"type":"string"},"affected_vendor":{"type":"string"},"affected_version":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Kunbus":{"description":"advisory.Kunbus","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.LG":{"description":"advisory.LG","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Lantronix":{"description":"advisory.Lantronix","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Lenovo":{"description":"advisory.Lenovo","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"industry_identifiers":{"items":{"type":"string"},"type":"array","uniqueItems":false},"last_updated":{"type":"string"},"lenovo_id":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.LexmarkAdvisory":{"description":"advisory.LexmarkAdvisory","properties":{"affectedProducts":{"items":{"$ref":"#/components/schemas/advisory.AffectedProduct"},"type":"array"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details":{"type":"string"},"impact":{"type":"string"},"lastUpdate":{"type":"string"},"link":{"type":"string"},"publicReleaseDate":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"revision":{"type":"string"},"summary":{"type":"string"},"updated_at":{"type":"string"},"workarounds":{"type":"string"}},"type":"object"},"advisory.LibreOffice":{"description":"advisory.LibreOffice","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Linux":{"description":"advisory.Linux","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.LogSource":{"description":"advisory.LogSource","properties":{"category":{"type":"string"},"definition":{"type":"string"},"product":{"type":"string"},"service":{"type":"string"}},"type":"object"},"advisory.LolAdvs":{"description":"advisory.LolAdvs","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"lol_json":{"additionalProperties":{},"type":"object"},"mitre_id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MACert":{"description":"advisory.MACert","properties":{"affected_systems_fr":{"type":"string"},"assessment_fr":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"impact_fr":{"type":"string"},"reference":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"risk_fr":{"type":"string"},"risks_fr":{"type":"string"},"solution_fr":{"type":"string"},"title_fr":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MAffected":{"description":"advisory.MAffected","properties":{"collectionURL":{"type":"string"},"cpes":{"items":{"type":"string"},"type":"array","uniqueItems":false},"defaultStatus":{"type":"string"},"packageName":{"type":"string"},"packageURL":{"type":"string"},"platforms":{"items":{"type":"string"},"type":"array","uniqueItems":false},"product":{"type":"string"},"repo":{"type":"string"},"vendor":{"type":"string"},"versions":{"items":{"$ref":"#/components/schemas/advisory.MVersion"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.MBranch":{"description":"advisory.MBranch","properties":{"Branch":{"items":{"$ref":"#/components/schemas/advisory.MBranch"},"type":"array","uniqueItems":false},"FullProductName":{"items":{"$ref":"#/components/schemas/advisory.MFullProductName"},"type":"array","uniqueItems":false},"Items":{"items":{"$ref":"#/components/schemas/advisory.MItem"},"type":"array","uniqueItems":false},"name":{"type":"string"},"type":{"description":"diff","type":"integer"}},"type":"object"},"advisory.MCPEApplicability":{"description":"advisory.MCPEApplicability","properties":{"negate":{"type":"boolean"},"nodes":{"items":{"$ref":"#/components/schemas/advisory.MNodes"},"type":"array","uniqueItems":false},"operator":{"type":"string"}},"type":"object"},"advisory.MCPEMatch":{"description":"advisory.MCPEMatch","properties":{"criteria":{"type":"string"},"matchCriteriaId":{"type":"string"},"versionEndExcluding":{"type":"string"},"versionEndIncluding":{"type":"string"},"versionStartExcluding":{"type":"string"},"versionStartIncluding":{"type":"string"},"vulnerable":{"type":"boolean"}},"type":"object"},"advisory.MCna":{"description":"advisory.MCna","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.MAffected"},"type":"array","uniqueItems":false},"cpeApplicability":{"items":{"$ref":"#/components/schemas/advisory.MCPEApplicability"},"type":"array","uniqueItems":false},"credits":{"items":{"$ref":"#/components/schemas/advisory.Credit"},"type":"array","uniqueItems":false},"descriptions":{"items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false},"impacts":{"items":{"$ref":"#/components/schemas/advisory.Impact"},"type":"array","uniqueItems":false},"metrics":{"items":{"$ref":"#/components/schemas/advisory.Metric"},"type":"array","uniqueItems":false},"problemTypes":{"items":{"$ref":"#/components/schemas/advisory.MProblemTypes"},"type":"array","uniqueItems":false},"providerMetadata":{"$ref":"#/components/schemas/advisory.MProviderMetadata"},"references":{"items":{"$ref":"#/components/schemas/advisory.MReference"},"type":"array","uniqueItems":false},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"timeline":{"items":{"$ref":"#/components/schemas/advisory.Timeline"},"type":"array","uniqueItems":false},"title":{"type":"string"}},"type":"object"},"advisory.MContainers":{"description":"advisory.MContainers","properties":{"adp":{"items":{"$ref":"#/components/schemas/advisory.ADPContainer"},"type":"array","uniqueItems":false},"cna":{"$ref":"#/components/schemas/advisory.MCna"}},"type":"object"},"advisory.MCveMetadata":{"description":"advisory.MCveMetadata","properties":{"assignerOrgId":{"type":"string"},"assignerShortName":{"type":"string"},"cveId":{"type":"string"},"datePublished":{"type":"string"},"dateReserved":{"type":"string"},"dateUpdated":{"type":"string"},"state":{"type":"string"}},"type":"object"},"advisory.MCvssV20":{"description":"advisory.MCvssV20","properties":{"accessVector":{"type":"string"},"attackComplexity":{"type":"string"},"authentication":{"type":"string"},"availabilityImpact":{"type":"string"},"baseScore":{"type":"number"},"confidentialityImpact":{"type":"string"},"integrityImpact":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.MCvssV30":{"description":"advisory.MCvssV30","properties":{"attackComplexity":{"type":"string"},"attackVector":{"type":"string"},"availabilityImpact":{"type":"string"},"baseScore":{"type":"number"},"baseSeverity":{"type":"string"},"confidentialityImpact":{"type":"string"},"integrityImpact":{"type":"string"},"privilegesRequired":{"type":"string"},"scope":{"type":"string"},"userInteraction":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.MCvssV31":{"description":"advisory.MCvssV31","properties":{"attackComplexity":{"type":"string"},"attackVector":{"type":"string"},"availabilityImpact":{"type":"string"},"baseScore":{"type":"number"},"baseSeverity":{"type":"string"},"confidentialityImpact":{"type":"string"},"integrityImpact":{"type":"string"},"privilegesRequired":{"type":"string"},"scope":{"type":"string"},"userInteraction":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.MCvssV40":{"description":"advisory.MCvssV40","properties":{"attackComplexity":{"type":"string"},"attackRequirements":{"type":"string"},"attackVector":{"type":"string"},"automatable":{"type":"string"},"baseScore":{"type":"number"},"baseSeverity":{"type":"string"},"privilegesRequired":{"type":"string"},"providerUrgency":{"type":"string"},"recovery":{"type":"string"},"safety":{"type":"string"},"subAvailabilityImpact":{"type":"string"},"subConfidentialityImpact":{"type":"string"},"subIntegrityImpact":{"type":"string"},"userInteraction":{"type":"string"},"valueDensity":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"},"vulnAvailabilityImpact":{"type":"string"},"vulnConfidentialityImpact":{"type":"string"},"vulnIntegrityImpact":{"type":"string"},"vulnerabilityResponseEffort":{"type":"string"}},"type":"object"},"advisory.MDescriptions":{"description":"advisory.MDescriptions","properties":{"lang":{"type":"string"},"value":{"type":"string"}},"type":"object"},"advisory.MDocumentTracking":{"description":"advisory.MDocumentTracking","properties":{"CurrentReleaseDate":{"type":"string"},"InitialReleaseDate":{"type":"string"},"identification":{"$ref":"#/components/schemas/advisory.MIdentification"},"revisionhistory":{"description":"diff in xml/json","items":{"$ref":"#/components/schemas/advisory.RRevision"},"type":"array","uniqueItems":false},"status":{"description":"again - change in json/xml","type":"integer"},"version":{"type":"string"}},"type":"object"},"advisory.MEProduct":{"description":"advisory.MEProduct","properties":{"ID":{"type":"string"},"display_value":{"type":"string"}},"type":"object"},"advisory.MFiles":{"description":"advisory.MFiles","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MFullProductName":{"description":"advisory.MFullProductName","properties":{"CPE":{"type":"string"},"ProductID":{"type":"string"},"Value":{"type":"string"}},"type":"object"},"advisory.MISPValueNoID":{"description":"advisory.MISPValueNoID","properties":{"description":{"type":"string"},"meta":{"$ref":"#/components/schemas/advisory.MispMeta"},"related":{"items":{"$ref":"#/components/schemas/advisory.MispRelatedItem"},"type":"array","uniqueItems":false},"value":{"type":"string"}},"type":"object"},"advisory.MITREAttackGroupNoID":{"description":"advisory.MITREAttackGroupNoID","properties":{"aliases":{"items":{"type":"string"},"type":"array","uniqueItems":false},"description":{"type":"string"},"name":{"type":"string"},"techniques":{"items":{"$ref":"#/components/schemas/advisory.MitreAttackTechnique"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.MIdentification":{"description":"advisory.MIdentification","properties":{"alias":{"$ref":"#/components/schemas/advisory.IVal"},"id":{"$ref":"#/components/schemas/advisory.IVal"}},"type":"object"},"advisory.MItem":{"description":"advisory.MItem","properties":{"Items":{"items":{"$ref":"#/components/schemas/advisory.MItem"},"type":"array","uniqueItems":false},"Name":{"type":"string"},"ProductID":{"type":"string"},"Type":{"description":"diff","type":"integer"},"Value":{"type":"string"}},"type":"object"},"advisory.MNodes":{"description":"advisory.MNodes","properties":{"cpeMatch":{"items":{"$ref":"#/components/schemas/advisory.MCPEMatch"},"type":"array","uniqueItems":false},"negate":{"type":"boolean"},"operator":{"type":"string"}},"type":"object"},"advisory.MProblemTypes":{"description":"advisory.MProblemTypes","properties":{"descriptions":{"items":{"$ref":"#/components/schemas/advisory.PTMDescriptions"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.MProductStatus":{"description":"advisory.MProductStatus","properties":{"ProductID":{"items":{"type":"string"},"type":"array","uniqueItems":false},"type":{"description":"diff","type":"integer"}},"type":"object"},"advisory.MProductTree":{"description":"advisory.MProductTree","properties":{"Branch":{"items":{"$ref":"#/components/schemas/advisory.MBranch"},"type":"array","uniqueItems":false},"FullProductName":{"items":{"$ref":"#/components/schemas/advisory.MFullProductName"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.MProviderMetadata":{"description":"OK","properties":{"dateUpdated":{"description":"FIXME: flip to time","type":"string"},"orgId":{"type":"string"},"shortName":{"type":"string"}},"type":"object"},"advisory.MReference":{"description":"advisory.MReference","properties":{"name":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"advisory.MRemediation":{"description":"advisory.MRemediation","properties":{"AffectedFiles":{"items":{"$ref":"#/components/schemas/advisory.AffectedFile"},"type":"array","uniqueItems":false},"Date":{"type":"string"},"DateSpecified":{"type":"boolean"},"Description":{"$ref":"#/components/schemas/advisory.IVal"},"FixedBuild":{"type":"string"},"ProductID":{"items":{"type":"string"},"type":"array","uniqueItems":false},"RestartRequired":{"$ref":"#/components/schemas/advisory.IVal"},"SubType":{"type":"string"},"Type":{"description":"diff","type":"integer"},"Url":{"type":"string"},"supercedence":{"type":"string"}},"type":"object"},"advisory.MSCVRF":{"description":"advisory.MSCVRF","properties":{"DocumentTitle":{"$ref":"#/components/schemas/advisory.MSDocumentTitle"},"DocumentTracking":{"$ref":"#/components/schemas/advisory.MDocumentTracking"},"ProductTree":{"$ref":"#/components/schemas/advisory.MProductTree"},"document_type":{"type":"string"},"documentnotes":{"description":"diff","items":{"$ref":"#/components/schemas/advisory.RNote"},"type":"array","uniqueItems":false},"documentpublisher":{"$ref":"#/components/schemas/advisory.DocumentPublisher"},"vulnerability":{"items":{"$ref":"#/components/schemas/advisory.MVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.MSDocumentTitle":{"description":"advisory.MSDocumentTitle","properties":{"Value":{"type":"string"}},"type":"object"},"advisory.MVersion":{"description":"advisory.MVersion","properties":{"lessThan":{"type":"string"},"lessThanOrEqual":{"type":"string"},"status":{"type":"string"},"version":{"type":"string"},"versionType":{"type":"string"}},"type":"object"},"advisory.MVulnerability":{"description":"advisory.MVulnerability","properties":{"ProductStatuses":{"items":{"$ref":"#/components/schemas/advisory.MProductStatus"},"type":"array","uniqueItems":false},"Remediations":{"items":{"$ref":"#/components/schemas/advisory.MRemediation"},"type":"array","uniqueItems":false},"Threats":{"items":{"$ref":"#/components/schemas/advisory.RThreat"},"type":"array","uniqueItems":false},"acknowledgments":{"items":{"$ref":"#/components/schemas/advisory.Acknowledgement"},"type":"array","uniqueItems":false},"cve":{"type":"string"},"cvssscoresets":{"items":{"$ref":"#/components/schemas/advisory.RScoreSet"},"type":"array","uniqueItems":false},"notes":{"items":{"$ref":"#/components/schemas/advisory.Note"},"type":"array","uniqueItems":false},"ordinal":{"type":"string"},"revisionhistory":{"description":"diff in xml/json","items":{"$ref":"#/components/schemas/advisory.RRevision"},"type":"array","uniqueItems":false},"title":{"$ref":"#/components/schemas/advisory.IVal"}},"type":"object"},"advisory.MaliciousPackage":{"description":"advisory.MaliciousPackage","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"malware":{"$ref":"#/components/schemas/advisory.OSVObj"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ManageEngine":{"description":"advisory.ManageEngine","properties":{"ADVISORY":{"type":"string"},"Added_Time":{"type":"string"},"CVE_Details_Link":{"$ref":"#/components/schemas/advisory.CVEDetailsLink"},"CVE_ID":{"type":"string"},"CVSS_Severity_Rating":{"type":"string"},"Fixed":{"type":"string"},"For_product_search":{"type":"string"},"ID":{"type":"string"},"Product":{"$ref":"#/components/schemas/advisory.MEProduct"},"Product_list":{"items":{"$ref":"#/components/schemas/advisory.MEProduct"},"type":"array","uniqueItems":false},"Product_specific_details":{"items":{"$ref":"#/components/schemas/advisory.ProductSpecificDetail"},"type":"array","uniqueItems":false},"Summary":{"type":"string"},"Version":{"type":"string"},"index_field":{"type":"string"}},"type":"object"},"advisory.ManageEngineAdvisory":{"description":"advisory.ManageEngineAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"manage_engine":{"$ref":"#/components/schemas/advisory.ManageEngine"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MbedTLS":{"description":"advisory.MbedTLS","properties":{"affects":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.McAfee":{"description":"advisory.McAfee","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"mcafee_score":{"items":{"$ref":"#/components/schemas/advisory.McAfeeScore"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.McAfeeScore":{"description":"advisory.McAfeeScore","properties":{"base":{"type":"string"},"cve":{"type":"string"},"temporal":{"type":"string"},"vector":{"type":"string"}},"type":"object"},"advisory.Mediatek":{"description":"advisory.Mediatek","properties":{"affected_chipsets":{"items":{"type":"string"},"type":"array","uniqueItems":false},"affected_software":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"severity":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MedtronicAdvisory":{"description":"advisory.MedtronicAdvisory","properties":{"affected_products":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"mitigation":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Mendix":{"description":"advisory.Mendix","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"id":{"type":"string"},"mendix_id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MetaAdvisories":{"description":"advisory.MetaAdvisories","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.MAffected"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MetaData":{"description":"advisory.MetaData","properties":{"advisory":{"$ref":"#/components/schemas/advisory.AdvisoryDetails"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"packages":{"items":{"$ref":"#/components/schemas/advisory.VulnCheckPackage"},"type":"array","uniqueItems":false},"references":{"items":{"$ref":"#/components/schemas/advisory.OvalReference"},"type":"array","uniqueItems":false},"title":{"type":"string"}},"type":"object"},"advisory.MetasploitExploit":{"description":"advisory.MetasploitExploit","properties":{"author":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Metric":{"description":"advisory.Metric","properties":{"cvssV2_0":{"$ref":"#/components/schemas/advisory.MCvssV20"},"cvssV3_0":{"$ref":"#/components/schemas/advisory.MCvssV30"},"cvssV3_1":{"$ref":"#/components/schemas/advisory.MCvssV31"},"cvssV4_0":{"$ref":"#/components/schemas/advisory.MCvssV40"},"format":{"type":"string"},"other":{"$ref":"#/components/schemas/advisory.MetricsOther"},"scenarios":{"items":{"$ref":"#/components/schemas/advisory.MetricScenario"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.MetricScenario":{"description":"advisory.MetricScenario","properties":{"lang":{"type":"string"},"value":{"type":"string"}},"type":"object"},"advisory.MetricsOther":{"description":"advisory.MetricsOther","properties":{"content":{"type":"object"},"type":{"type":"string"}},"type":"object"},"advisory.MicrosoftCSAF":{"description":"advisory.MicrosoftCSAF","properties":{"csaf":{"$ref":"#/components/schemas/advisory.CSAF"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MicrosoftCVRF":{"description":"advisory.MicrosoftCVRF","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvrf":{"$ref":"#/components/schemas/advisory.MSCVRF"},"date_added":{"type":"string"},"exploited_list":{"items":{"$ref":"#/components/schemas/advisory.ITW"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MicrosoftDriverBlockList":{"description":"advisory.MicrosoftDriverBlockList","properties":{"date_added":{"type":"string"},"file_id":{"description":"From FileAttrib or Deny","type":"string"},"file_metadata":{"$ref":"#/components/schemas/advisory.MicrosoftFileMetadata"}},"type":"object"},"advisory.MicrosoftFileMetadata":{"description":"File-level metadata","properties":{"file_name":{"description":"Full path (FilePath + FileName or FriendlyName)","type":"string"},"maximum_file_version":{"type":"string"},"minimum_file_version":{"type":"string"},"product_name":{"type":"string"},"sha1_hash":{"type":"string"},"sha256_hash":{"type":"string"}},"type":"object"},"advisory.MicrosoftKb":{"description":"advisory.MicrosoftKb","properties":{"cve":{"type":"string"},"date_added":{"type":"string"},"kbs":{"items":{"$ref":"#/components/schemas/advisory.Kb"},"type":"array","uniqueItems":false},"threat":{"$ref":"#/components/schemas/advisory.KbThreatDescription"},"title":{"type":"string"}},"type":"object"},"advisory.Mikrotik":{"description":"advisory.Mikrotik","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Mindray":{"description":"advisory.Mindray","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MispMeta":{"description":"advisory.MispMeta","properties":{"attribution-confidence":{"type":"string"},"cfr-suspected-state-sponsor":{"type":"string"},"cfr-suspected-victims":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cfr-target-category":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cfr-type-of-incident":{"items":{"type":"string"},"type":"array","uniqueItems":false},"country":{"type":"string"},"refs":{"items":{"type":"string"},"type":"array","uniqueItems":false},"synonyms":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.MispRelatedItem":{"description":"advisory.MispRelatedItem","properties":{"dest-uuid":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"type":{"type":"string"}},"type":"object"},"advisory.MispValue":{"description":"advisory.MispValue","properties":{"description":{"type":"string"},"meta":{"$ref":"#/components/schemas/advisory.MispMeta"},"related":{"items":{"$ref":"#/components/schemas/advisory.MispRelatedItem"},"type":"array","uniqueItems":false},"uuid":{"type":"string"},"value":{"type":"string"}},"type":"object"},"advisory.Mitel":{"description":"advisory.Mitel","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MitreAttackRef":{"description":"advisory.MitreAttackRef","properties":{"date_added":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MitreAttackTechWithRefs":{"description":"advisory.MitreAttackTechWithRefs","properties":{"domain":{"type":"string"},"id":{"type":"string"},"name":{"type":"string"},"nist_controls":{"items":{"$ref":"#/components/schemas/advisory.NISTControl"},"type":"array","uniqueItems":false},"references":{"items":{"$ref":"#/components/schemas/advisory.MitreAttackRef"},"type":"array","uniqueItems":false},"subtechnique":{"type":"boolean"},"tactics":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"advisory.MitreAttackTechnique":{"description":"advisory.MitreAttackTechnique","properties":{"sub_technique":{"type":"string"},"sub_technique_name":{"type":"string"},"tactic":{"items":{"type":"string"},"type":"array","uniqueItems":false},"technique_id":{"type":"string"},"technique_name":{"type":"string"}},"type":"object"},"advisory.MitreCVEListV5":{"description":"advisory.MitreCVEListV5","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"mitre_ref":{"$ref":"#/components/schemas/advisory.MitreCVEListV5Ref"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MitreCVEListV5Ref":{"description":"advisory.MitreCVEListV5Ref","properties":{"containers":{"$ref":"#/components/schemas/advisory.MContainers"},"cveMetadata":{"$ref":"#/components/schemas/advisory.MCveMetadata"},"dataType":{"type":"string"},"dataVersion":{"type":"string"}},"type":"object"},"advisory.MitreGroupCTI":{"description":"advisory.MitreGroupCTI","properties":{"aliases":{"items":{"type":"string"},"type":"array","uniqueItems":false},"description":{"type":"string"},"id":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.ExternalReferences"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.MitsubishiElectricAdvisory":{"description":"advisory.MitsubishiElectricAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_revised":{"description":"could nuke this at some pt in the future as it's a dupe","type":"string"},"mitsubishi_electric_id":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MongoDB":{"description":"advisory.MongoDB","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"score":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MoxaAdvisory":{"description":"advisory.MoxaAdvisory","properties":{"advisory_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MozillaAdvisory":{"description":"advisory.MozillaAdvisory","properties":{"affected_components":{"items":{"$ref":"#/components/schemas/advisory.MozillaComponent"},"type":"array","uniqueItems":false},"bugzilla":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"fixed_in":{"items":{"type":"string"},"type":"array","uniqueItems":false},"impact":{"type":"string"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"reporter":{"type":"string"},"risk":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MozillaComponent":{"description":"advisory.MozillaComponent","properties":{"bugzilla":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"description":{"type":"string"},"impact":{"type":"string"},"reporter":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.NCSC":{"description":"advisory.NCSC","properties":{"csaf":{"$ref":"#/components/schemas/advisory.CSAF"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary_nl":{"type":"string"},"title_nl":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NCSCCVE":{"description":"advisory.NCSCCVE","properties":{"csaf":{"$ref":"#/components/schemas/advisory.CSAF"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary_nl":{"type":"string"},"title_nl":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NEC":{"description":"advisory.NEC","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"nvd_id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NHS":{"description":"advisory.NHS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"summary":{"type":"string"},"threat_id":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NI":{"description":"advisory.NI","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"ovewrview":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NISTControl":{"description":"advisory.NISTControl","properties":{"cis_controls":{"items":{"$ref":"#/components/schemas/advisory.CISControl"},"type":"array","uniqueItems":false},"nist_control_family":{"type":"string"},"nist_control_id":{"type":"string"},"nist_control_name":{"type":"string"}},"type":"object"},"advisory.NTP":{"description":"advisory.NTP","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NVD20CVECPEMatch":{"description":"advisory.NVD20CVECPEMatch","properties":{"criteria":{"type":"string"},"matchCriteriaId":{"type":"string"},"versionEndExcluding":{"type":"string"},"versionEndIncluding":{"type":"string"},"versionStartExcluding":{"type":"string"},"versionStartIncluding":{"type":"string"},"vulnerable":{"type":"boolean"}},"type":"object"},"advisory.NVD20Configuration":{"description":"advisory.NVD20Configuration","properties":{"negate":{"type":"boolean"},"nodes":{"items":{"$ref":"#/components/schemas/advisory.NVD20Node"},"type":"array","uniqueItems":false},"operator":{"type":"string"}},"type":"object"},"advisory.NVD20Node":{"description":"advisory.NVD20Node","properties":{"cpeMatch":{"items":{"$ref":"#/components/schemas/advisory.NVD20CVECPEMatch"},"type":"array","uniqueItems":false},"negate":{"type":"boolean"},"operator":{"type":"string"}},"type":"object"},"advisory.NVD20Source":{"description":"advisory.NVD20Source","properties":{"contactEmail":{"type":"string"},"created":{"type":"string"},"cweAcceptanceLevel":{"$ref":"#/components/schemas/advisory.CweAcceptanceLevel"},"lastModified":{"type":"string"},"name":{"type":"string"},"sourceIdentifiers":{"items":{"type":"string"},"type":"array","uniqueItems":false},"v3AcceptanceLevel":{"$ref":"#/components/schemas/advisory.V3AcceptanceLevel"}},"type":"object"},"advisory.NVDCPEDictionary":{"description":"advisory.NVDCPEDictionary","properties":{"backupOnly":{"type":"string"}},"type":"object"},"advisory.NZAdvisory":{"description":"advisory.NZAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"happening":{"type":"string"},"link":{"type":"string"},"lookFor":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"title":{"type":"string"},"whatToDo":{"type":"string"}},"type":"object"},"advisory.Naver":{"description":"advisory.Naver","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Nessus":{"description":"advisory.Nessus","properties":{"cpe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"exploitability_ease":{"description":"seems like only 3 vals for this","type":"string"},"filename":{"type":"string"},"iava":{"items":{"type":"string"},"type":"array","uniqueItems":false},"name":{"type":"string"},"script_id":{"type":"integer"},"updated":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NetApp":{"description":"advisory.NetApp","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"impact":{"type":"string"},"ntap":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Netatalk":{"description":"advisory.Netatalk","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"fixed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Netgate":{"description":"advisory.Netgate","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Netgear":{"description":"advisory.Netgear","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"psvn_number":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Netskope":{"description":"advisory.Netskope","properties":{"advisory_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Nexpose":{"description":"advisory.Nexpose","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"identifier":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NginxAdvisory":{"description":"advisory.NginxAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"not_vuln_versions":{"items":{"type":"string"},"type":"array","uniqueItems":false},"patch_pgp":{"type":"string"},"patch_url":{"type":"string"},"severity":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vuln_versions":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.NodeAuthor":{"description":"advisory.NodeAuthor","properties":{"author":{"type":"string"},"username":{"type":"string"},"website":{"type":"string"}},"type":"object"},"advisory.NodeJS":{"description":"advisory.NodeJS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NodeSecurity":{"description":"advisory.NodeSecurity","properties":{"affected_environments":{"items":{"type":"string"},"type":"array","uniqueItems":false},"author":{"$ref":"#/components/schemas/advisory.NodeAuthor"},"coordinating_vendor":{"type":"string"},"created_at":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"number"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"id":{"type":"integer"},"module_name":{"type":"string"},"overview":{"type":"string"},"patched_versions":{"type":"string"},"publish_date":{"type":"string"},"recommendation":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vulnerable_versions":{"type":"string"}},"type":"object"},"advisory.Nokia":{"description":"advisory.Nokia","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Note":{"description":"advisory.Note","properties":{"ordinal":{"type":"string"},"text":{"type":"string"},"title":{"type":"string"},"type":{"type":"integer"}},"type":"object"},"advisory.NotePadPlusPlus":{"description":"advisory.NotePadPlusPlus","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Nozomi":{"description":"advisory.Nozomi","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Nuclei":{"description":"advisory.Nuclei","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"template":{"type":"object"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NvidiaRevision":{"description":"advisory.NvidiaRevision","properties":{"date":{"type":"string"},"description":{"type":"string"},"revision":{"type":"string"}},"type":"object"},"advisory.OCurl":{"description":"advisory.OCurl","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.CurlAffected"},"type":"array","uniqueItems":false},"aliases":{"items":{"type":"string"},"type":"array","uniqueItems":false},"credits":{"items":{"$ref":"#/components/schemas/advisory.CurlCredit"},"type":"array","uniqueItems":false},"database_specific":{"$ref":"#/components/schemas/advisory.DBSpecific"},"details":{"type":"string"},"id":{"type":"string"},"modified":{"type":"string"},"published":{"type":"string"},"schema_version":{"type":"string"},"summary":{"type":"string"}},"type":"object"},"advisory.OSV":{"description":"advisory.OSV","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_updated":{"type":"string"},"osv":{"$ref":"#/components/schemas/advisory.OSVObj"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OSVObj":{"description":"advisory.OSVObj","properties":{"affected":{"description":"collection based on https://ossf.github.io/osv-schema/","items":{"$ref":"#/components/schemas/advisory.Affected"},"type":"array","uniqueItems":false},"aliases":{"items":{"type":"string"},"type":"array","uniqueItems":false},"details":{"type":"string"},"id":{"type":"string"},"modified":{"type":"string"},"published":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.OSVReference"},"type":"array","uniqueItems":false},"related":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"withdrawn":{"type":"string"}},"type":"object"},"advisory.OSVPackage":{"description":"advisory.OSVPackage","properties":{"ecosystem":{"type":"string"},"name":{"type":"string"},"purl":{"type":"string"}},"type":"object"},"advisory.OSVReference":{"description":"advisory.OSVReference","properties":{"type":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OTRS":{"description":"advisory.OTRS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"id":{"type":"string"},"product":{"type":"string"},"release":{"type":"string"},"risk":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OctopusDeploy":{"description":"advisory.OctopusDeploy","properties":{"advisory_number":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Okta":{"description":"advisory.Okta","properties":{"affected_products":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"cwe":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"resolution":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Omron":{"description":"advisory.Omron","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OneE":{"description":"advisory.OneE","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OpenBSD":{"description":"advisory.OpenBSD","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"patch":{"type":"string"},"release":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OpenCVDB":{"description":"advisory.OpenCVDB","properties":{"affected_platforms":{"items":{"type":"string"},"type":"array","uniqueItems":false},"affected_services":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"disclosed_at":{"type":"string"},"known_itw_exploitation":{"type":"boolean"},"manual_remediation":{"type":"string"},"published_at":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OpenJDK":{"description":"advisory.OpenJDK","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"openjdk_cves":{"items":{"$ref":"#/components/schemas/advisory.OpenJDKCVE"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OpenJDKCVE":{"description":"advisory.OpenJDKCVE","properties":{"cve":{"type":"string"},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"}},"type":"object"},"advisory.OpenSSH":{"description":"advisory.OpenSSH","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OpenSSLSecAdv":{"description":"advisory.OpenSSLSecAdv","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_updated":{"type":"string"},"description":{"type":"string"},"filename":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"url":{"type":"string"},"vulnerabilities":{"items":{"$ref":"#/components/schemas/advisory.OpenSSLVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.OpenSSLVulnerability":{"description":"advisory.OpenSSLVulnerability","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"fixed":{"items":{"$ref":"#/components/schemas/advisory.FixAff"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.OpenStack":{"description":"advisory.OpenStack","properties":{"affects":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Opengear":{"description":"advisory.Opengear","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OracleCPU":{"description":"advisory.OracleCPU","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"product":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OracleCPUCSAF":{"description":"advisory.OracleCPUCSAF","properties":{"csaf":{"$ref":"#/components/schemas/advisory.CSAF"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OriginalGHSA":{"description":"advisory.OriginalGHSA","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.GHSAAffected"},"type":"array","uniqueItems":false},"aliases":{"items":{"type":"string"},"type":"array","uniqueItems":false},"database_specific":{"$ref":"#/components/schemas/advisory.GHSADatabaseSpecific"},"details":{"type":"string"},"id":{"type":"string"},"modified":{"type":"string"},"published":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.GHSAReference"},"type":"array","uniqueItems":false},"schema_version":{"type":"string"},"severity":{"items":{"$ref":"#/components/schemas/advisory.GHSASeverity"},"type":"array","uniqueItems":false},"summary":{"type":"string"}},"type":"object"},"advisory.OvalCVE":{"description":"advisory.OvalCVE","properties":{"href":{"type":"string"},"id":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.OvalReference":{"description":"advisory.OvalReference","properties":{"ref_id":{"type":"string"},"ref_url":{"type":"string"},"source":{"type":"string"}},"type":"object"},"advisory.Override":{"description":"advisory.Override","properties":{"_annotation":{"$ref":"#/components/schemas/advisory.OverrideAnnotation"},"cve":{"$ref":"#/components/schemas/advisory.OverrideCVE"}},"type":"object"},"advisory.OverrideAnnotation":{"description":"advisory.OverrideAnnotation","properties":{"cve_id":{"type":"string"},"modified":{"type":"string"},"published":{"type":"string"},"reason":{"type":"string"},"snapshot":{"type":"string"},"triage_notes":{"$ref":"#/components/schemas/advisory.TriageNotes"}},"type":"object"},"advisory.OverrideCVE":{"description":"advisory.OverrideCVE","properties":{"configurations":{"items":{"$ref":"#/components/schemas/advisory.OverrideConfiguration"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.OverrideConfiguration":{"description":"advisory.OverrideConfiguration","properties":{"nodes":{"items":{"$ref":"#/components/schemas/advisory.CPENode"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.OwnCloud":{"description":"advisory.OwnCloud","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PGFix":{"description":"advisory.PGFix","properties":{"affected":{"type":"string"},"fixed":{"type":"string"}},"type":"object"},"advisory.PHPMyAdmin":{"description":"advisory.PHPMyAdmin","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PKCert":{"description":"advisory.PKCert","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PTC":{"description":"advisory.PTC","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PTMDescriptions":{"description":"advisory.PTMDescriptions","properties":{"cweId":{"type":"string"},"description":{"type":"string"},"lang":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.Package":{"description":"advisory.Package","properties":{"filename":{"type":"string"},"name":{"description":"sort","type":"string"},"release":{"type":"string"},"src":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.PackageStat":{"description":"advisory.PackageStat","properties":{"cpe":{"type":"string"},"fix_state":{"type":"string"},"package_name":{"type":"string"},"product_name":{"type":"string"}},"type":"object"},"advisory.PacketstormExploit":{"description":"advisory.PacketstormExploit","properties":{"author":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"download_url":{"type":"string"},"md5":{"type":"string"},"summary":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Palantir":{"description":"advisory.Palantir","properties":{"affected_products":{"type":"string"},"background":{"type":"string"},"bulletin_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details":{"type":"string"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PaloAltoAdvisory":{"description":"advisory.PaloAltoAdvisory","properties":{"affected":{"type":"string"},"applicableVersions":{"type":"string"},"attackComplexity":{"type":"string"},"attackRequirements":{"type":"string"},"attackVector":{"type":"string"},"availabilityImpact":{"type":"string"},"confidentialityImpact":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvssbaseScore":{"type":"string"},"datePublished":{"type":"string"},"dateUpdated":{"type":"string"},"date_added":{"type":"string"},"id":{"type":"string"},"integrityImpact":{"type":"string"},"privilegesRequired":{"type":"string"},"problem":{"type":"string"},"product":{"type":"string"},"scope":{"type":"string"},"severity":{"type":"string"},"solution":{"type":"string"},"title":{"type":"string"},"unaffected":{"type":"string"},"url":{"type":"string"},"userInteraction":{"type":"string"},"workaround":{"type":"string"}},"type":"object"},"advisory.Panasonic":{"description":"advisory.Panasonic","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PaperCut":{"description":"advisory.PaperCut","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Patch":{"description":"advisory.Patch","properties":{"advisory_id":{"type":"string"},"component":{"type":"string"},"link":{"type":"string"},"os_sw":{"type":"string"}},"type":"object"},"advisory.Pega":{"description":"advisory.Pega","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"score":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PhilipsAdvisory":{"description":"advisory.PhilipsAdvisory","properties":{"affected_products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_updated":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PhoenixContactAdvisory":{"description":"advisory.PhoenixContactAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vde":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.PostgresSQL":{"description":"advisory.PostgresSQL","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"pg_fix":{"items":{"$ref":"#/components/schemas/advisory.PGFix"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PowerDNS":{"description":"advisory.PowerDNS","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PrimeVersion":{"description":"advisory.PrimeVersion","properties":{"jdK":{"type":"string"},"prime":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.Product":{"description":"advisory.Product","properties":{"name":{"type":"string"},"product_id":{"type":"string"},"product_identification_helper":{"$ref":"#/components/schemas/advisory.IdentificationHelper"}},"type":"object"},"advisory.ProductBranch":{"description":"ProductTree contains information about the product tree (branches only).\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#322-product-tree-property","properties":{"branches":{"items":{"$ref":"#/components/schemas/advisory.ProductBranch"},"type":"array","uniqueItems":false},"category":{"type":"string"},"name":{"type":"string"},"product":{"$ref":"#/components/schemas/advisory.Product"},"relationships":{"items":{"$ref":"#/components/schemas/advisory.CSAFRelationship"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.ProductSpecificDetail":{"description":"advisory.ProductSpecificDetail","properties":{"ID":{"type":"string"},"display_value":{"type":"string"}},"type":"object"},"advisory.ProductsAffected":{"description":"advisory.ProductsAffected","properties":{"cve":{"type":"string"},"description":{"type":"string"},"name":{"type":"string"}},"type":"object"},"advisory.Progress":{"description":"advisory.Progress","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Proofpoint":{"description":"advisory.Proofpoint","properties":{"advisory_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Publisher":{"description":"advisory.Publisher","properties":{"category":{"type":"string"},"contact_details":{"type":"string"},"issuing_authority":{"type":"string"},"name":{"type":"string"},"namespace":{"type":"string"}},"type":"object"},"advisory.PureStorage":{"description":"advisory.PureStorage","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"product":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PyPAAdvisory":{"description":"advisory.PyPAAdvisory","properties":{"advisory_id":{"description":"ID is the PYSEC- identifier","type":"string"},"affected":{"description":"Affected will list out the vulnerable versions.","items":{"$ref":"#/components/schemas/advisory.PyPAAffected"},"type":"array","uniqueItems":false},"aliases":{"description":"Aliases are other identifiers that refer to this, such as a CVE","items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details":{"description":"Details discuss the vulnerability information","type":"string"},"modified":{"description":"Modified is non-zero Time if entry was updated","type":"string"},"published":{"description":"Published is the datetime when this was released","type":"string"},"references":{"description":"References are links to more detailed advisories, fixes, etc.","items":{"$ref":"#/components/schemas/advisory.PyPAReference"},"type":"array","uniqueItems":false},"was_withdrawn":{"description":"WasWD indicates if the advisory was withdrawn or not.","type":"boolean"},"withdrawn":{"description":"Withdrawn is non-zero if this advisory has been withdrawn","type":"string"}},"type":"object"},"advisory.PyPAAffected":{"description":"advisory.PyPAAffected","properties":{"package":{"$ref":"#/components/schemas/advisory.PyPAPackage"},"ranges":{"items":{"$ref":"#/components/schemas/advisory.PyPARange"},"type":"array","uniqueItems":false},"versions":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.PyPAEvent":{"description":"advisory.PyPAEvent","properties":{"fixed":{"type":"string"},"introduced":{"type":"string"}},"type":"object"},"advisory.PyPAPackage":{"description":"advisory.PyPAPackage","properties":{"ecosystem":{"type":"string"},"name":{"type":"string"},"purl":{"type":"string"}},"type":"object"},"advisory.PyPARange":{"description":"advisory.PyPARange","properties":{"events":{"items":{"$ref":"#/components/schemas/advisory.PyPAEvent"},"type":"array","uniqueItems":false},"ranges_type":{"type":"string"}},"type":"object"},"advisory.PyPAReference":{"description":"advisory.PyPAReference","properties":{"refs_type":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.QNAPAdvisory":{"description":"advisory.QNAPAdvisory","properties":{"affected":{"type":"string"},"bulletin_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"last_update_date":{"type":"string"},"link":{"type":"string"},"severity":{"type":"string"},"severity_number":{"type":"string"},"status":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.QQID":{"description":"advisory.QQID","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss3_score":{"type":"string"},"cvss_score":{"type":"string"},"date_added":{"type":"string"},"qid":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.QSB":{"description":"advisory.QSB","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Qualcomm":{"description":"advisory.Qualcomm","properties":{"chipsets":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"score":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Qualys":{"description":"advisory.Qualys","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"exploits":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.QualysQID":{"description":"advisory.QualysQID","properties":{"consequence":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_v2":{"items":{"$ref":"#/components/schemas/advisory.CvsssV2_3"},"type":"array","uniqueItems":false},"cvss_v3":{"items":{"$ref":"#/components/schemas/advisory.CvsssV2_3"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_insert":{"type":"string"},"description":{"type":"string"},"patches":{"items":{"$ref":"#/components/schemas/advisory.Patch"},"type":"array","uniqueItems":false},"published":{"type":"string"},"qid":{"type":"string"},"severity":{"type":"string"},"solution":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"vendor_refs":{"items":{"$ref":"#/components/schemas/advisory.VendorRef"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.RDescription":{"description":"advisory.RDescription","properties":{"value":{"type":"string"}},"type":"object"},"advisory.RNote":{"description":"advisory.RNote","properties":{"audience":{"type":"string"},"ordinal":{"type":"string"},"text":{"type":"string"},"title":{"type":"string"},"type":{"description":"diff between xml \u0026\u0026 json","type":"integer"}},"type":"object"},"advisory.RRevision":{"description":"advisory.RRevision","properties":{"date":{"type":"string"},"description":{"$ref":"#/components/schemas/advisory.RDescription"},"number":{"type":"string"}},"type":"object"},"advisory.RScoreSet":{"description":"advisory.RScoreSet","properties":{"base_score":{"type":"string"},"product_id":{"type":"string"},"temporal_score":{"type":"string"},"vector":{"type":"string"}},"type":"object"},"advisory.RThreat":{"description":"advisory.RThreat","properties":{"Date":{"type":"string"},"DateSpecified":{"type":"boolean"},"Description":{"$ref":"#/components/schemas/advisory.IVal"},"ProductID":{"items":{"type":"string"},"type":"array","uniqueItems":false},"Type":{"description":"diff","type":"integer"}},"type":"object"},"advisory.Range":{"description":"advisory.Range","properties":{"events":{"items":{"$ref":"#/components/schemas/advisory.Event"},"type":"array","uniqueItems":false},"repo":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.RansomwareExploit":{"description":"advisory.RansomwareExploit","properties":{"associated_capecs":{"items":{"$ref":"#/components/schemas/advisory.Capec"},"type":"array","uniqueItems":false},"associated_cwes":{"items":{"$ref":"#/components/schemas/advisory.CweData"},"type":"array","uniqueItems":false},"associated_mitre_attack_techniques":{"items":{"$ref":"#/components/schemas/advisory.MitreAttackTechWithRefs"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve_references":{"items":{"$ref":"#/components/schemas/advisory.CVEReference"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"malpedia_url":{"type":"string"},"ransomware_family":{"type":"string"},"tools":{"items":{"$ref":"#/components/schemas/advisory.Tool"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.RecordType":{"description":"advisory.RecordType","properties":{"finding":{"type":"string"},"id":{"type":"string"},"kind":{"type":"string"}},"type":"object"},"advisory.RedLion":{"description":"advisory.RedLion","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.RedhatCVE":{"description":"advisory.RedhatCVE","properties":{"advisories":{"items":{"type":"string"},"type":"array","uniqueItems":false},"advisory_csaf_vex_url":{"items":{"type":"string"},"type":"array","uniqueItems":false},"affected_packages":{"description":"used for un-marshlling from redhat","items":{"type":"string"},"type":"array","uniqueItems":false},"affected_release":{"items":{"$ref":"#/components/schemas/advisory.AffectedRel"},"type":"array","uniqueItems":false},"bugzilla":{"type":"string"},"bugzilla_description":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve_csaf_vex_url":{"type":"string"},"cvss3_score":{"type":"string"},"cvss3_scoring_vector":{"type":"string"},"cvss_score":{"type":"number"},"cvss_scoring_vector":{"type":"string"},"cwe":{"type":"string"},"package_state":{"items":{"$ref":"#/components/schemas/advisory.PackageStat"},"type":"array","uniqueItems":false},"packages":{"description":"used to index into vulncheck OS","items":{"$ref":"#/components/schemas/advisory.VulnCheckPackage"},"type":"array","uniqueItems":false},"public_date":{"type":"string"},"resource_url":{"type":"string"},"severity":{"type":"string"}},"type":"object"},"advisory.Reference":{"description":"advisory.Reference","properties":{"href":{"description":"sort","type":"string"},"id":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.RelatedRule":{"description":"advisory.RelatedRule","properties":{"id":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.RemediationData":{"description":"advisory.RemediationData","properties":{"category":{"type":"string"},"date":{"type":"string"},"details":{"type":"string"},"entitlements":{"items":{"type":"string"},"type":"array","uniqueItems":false},"group_ids":{"items":{"type":"string"},"type":"array","uniqueItems":false},"product_ids":{"items":{"type":"string"},"type":"array","uniqueItems":false},"restart_required":{"$ref":"#/components/schemas/advisory.RestartData"}},"type":"object"},"advisory.Renesas":{"description":"advisory.Renesas","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ReportedExploit":{"description":"advisory.ReportedExploit","properties":{"date_added":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.RestartData":{"description":"advisory.RestartData","properties":{"category":{"type":"string"},"details":{"type":"string"}},"type":"object"},"advisory.RevisionHistory":{"description":"advisory.RevisionHistory","properties":{"date":{"type":"string"},"number":{"type":"string"},"summary":{"type":"string"}},"type":"object"},"advisory.Revive":{"description":"advisory.Revive","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.RhelCVE":{"description":"advisory.RhelCVE","properties":{"csaf":{"$ref":"#/components/schemas/advisory.CSAF"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Roche":{"description":"advisory.Roche","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"roche_cves":{"items":{"$ref":"#/components/schemas/advisory.RocheCVE"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.RocheCVE":{"description":"advisory.RocheCVE","properties":{"cve":{"type":"string"},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"}},"type":"object"},"advisory.Rockwell":{"description":"advisory.Rockwell","properties":{"affected_products":{"items":{"$ref":"#/components/schemas/advisory.RockwellAffectedProduct"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"impact":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.RockwellAffectedProduct":{"description":"advisory.RockwellAffectedProduct","properties":{"affectedCatalogNumber":{"type":"string"},"affectedVersion":{"type":"string"},"correctedVersion":{"type":"string"},"cve":{"type":"string"},"product":{"type":"string"}},"type":"object"},"advisory.RockyAdvisory":{"description":"advisory.RockyAdvisory","properties":{"affectedProducts":{"items":{"type":"string"},"type":"array","uniqueItems":false},"buildReferences":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cves":{"items":{"$ref":"#/components/schemas/advisory.RockyCve"},"type":"array","uniqueItems":false},"description":{"type":"string"},"fixes":{"items":{"$ref":"#/components/schemas/advisory.RockyFix"},"type":"array","uniqueItems":false},"name":{"type":"string"},"publishedAt":{"type":"string"},"rebootSuggested":{"type":"boolean"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"rpms":{"$ref":"#/components/schemas/advisory.RockyRpms"},"severity":{"type":"string"},"shortCode":{"type":"string"},"solution":{"type":"string"},"synopsis":{"type":"string"},"topic":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.RockyCve":{"description":"advisory.RockyCve","properties":{"cvss3BaseScore":{"type":"string"},"cvss3ScoringVector":{"type":"string"},"cwe":{"type":"string"},"name":{"type":"string"},"sourceBy":{"type":"string"},"sourceLink":{"type":"string"}},"type":"object"},"advisory.RockyErrata":{"description":"advisory.RockyErrata","properties":{"advisory":{"$ref":"#/components/schemas/advisory.RockyAdvisory"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"packages":{"items":{"$ref":"#/components/schemas/advisory.RockyPackage"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"advisory.RockyFix":{"description":"advisory.RockyFix","properties":{"description":{"type":"string"},"sourceBy":{"type":"string"},"sourceLink":{"type":"string"},"ticket":{"type":"string"}},"type":"object"},"advisory.RockyPackage":{"description":"advisory.RockyPackage","properties":{"distro":{"type":"string"},"name":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.RockyRpms":{"additionalProperties":{"$ref":"#/components/schemas/advisory.RockyVersion"},"description":"advisory.RockyRpms","type":"object"},"advisory.RockyVersion":{"description":"advisory.RockyVersion","properties":{"nvras":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.Rsync":{"description":"advisory.Rsync","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Ruckus":{"description":"advisory.Ruckus","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.RustsecAdvisory":{"description":"advisory.RustsecAdvisory","properties":{"advisory":{"$ref":"#/components/schemas/advisory.RustsecFrontMatterAdvisory"},"affected":{"$ref":"#/components/schemas/advisory.RustsecAffected"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"versions":{"$ref":"#/components/schemas/advisory.RustsecFrontMatterVersions"}},"type":"object"},"advisory.RustsecAffected":{"description":"advisory.RustsecAffected","properties":{"arch":{"items":{"type":"string"},"type":"array","uniqueItems":false},"functions":{"type":"string"},"os":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.RustsecFrontMatterAdvisory":{"description":"advisory.RustsecFrontMatterAdvisory","properties":{"aliases":{"description":"Vulnerability aliases, e.g. CVE IDs (optional but recommended)\nRequest a CVE for your RustSec vulns: https://iwantacve.org/","items":{"type":"string"},"type":"array","uniqueItems":false},"categories":{"description":"Optional: Categories this advisory falls under. Valid categories are:\n\"code-execution\", \"crypto-failure\", \"denial-of-service\", \"file-disclosure\"\n\"format-injection\", \"memory-corruption\", \"memory-exposure\", \"privilege-escalation\"","items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"description":"Optional: a Common Vulnerability Scoring System score. More information\ncan be found on the CVSS website, https://www.first.org/cvss/.","type":"string"},"date":{"description":"Disclosure date of the advisory as an RFC 3339 date (mandatory)","type":"string"},"informational":{"description":"Optional: Indicates the type of informational security advisory\n - \"unsound\" for soundness issues\n - \"unmaintained\" for crates that are no longer maintained\n - \"notice\" for other informational notices","type":"string"},"keywords":{"description":"Freeform keywords which describe this vulnerability, similar to Cargo (optional)","items":{"type":"string"},"type":"array","uniqueItems":false},"package":{"description":"Name of the affected crate (mandatory)","type":"string"},"references":{"description":"URL to additional helpful references regarding the advisory (optional)","items":{"type":"string"},"type":"array","uniqueItems":false},"related":{"description":"Related vulnerabilities (optional)\ne.g. CVE for a C library wrapped by a -sys crate)","items":{"type":"string"},"type":"array","uniqueItems":false},"rustsec_id":{"description":"Identifier for the advisory (mandatory). Will be assigned a \"RUSTSEC-YYYY-NNNN\"\nidentifier e.g. RUSTSEC-2018-0001. Please use \"RUSTSEC-0000-0000\" in PRs.","type":"string"},"url":{"description":"URL to a long-form description of this issue, e.g. a GitHub issue/PR,\na change log entry, or a blogpost announcing the release (optional)","type":"string"},"withdrawn":{"description":"Whether the advisory is withdrawn (optional)","type":"string"}},"type":"object"},"advisory.RustsecFrontMatterVersions":{"description":"advisory.RustsecFrontMatterVersions","properties":{"patched":{"items":{"type":"string"},"type":"array","uniqueItems":false},"unaffected":{"description":"Versions which were never vulnerable (optional)","items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.SAAdvisory":{"description":"advisory.SAAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"link":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"severity":{"type":"string"},"threats":{"type":"string"},"vendor":{"type":"string"},"warningDate":{"type":"string"},"warningNumber":{"type":"string"}},"type":"object"},"advisory.SAP":{"description":"advisory.SAP","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SECConsult":{"description":"advisory.SECConsult","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SSASource":{"description":"advisory.SSASource","properties":{"document":{"$ref":"#/components/schemas/advisory.SiemensDocument"},"product_tree":{"$ref":"#/components/schemas/advisory.SiemensProductTree"},"vulnerabilities":{"items":{"$ref":"#/components/schemas/advisory.SiemensVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.SSDAdvisory":{"description":"advisory.SSDAdvisory","properties":{"analysis":{"type":"string"},"credit":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"link":{"type":"string"},"poc":{"description":"contains actual poc code","type":"string"},"published":{"type":"string"},"response_ref":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.Safran":{"description":"advisory.Safran","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SaintExploit":{"description":"advisory.SaintExploit","properties":{"bid":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"osvdb":{"type":"string"},"saint_id":{"type":"string"},"type":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SalesForce":{"description":"advisory.SalesForce","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"integer"},"link":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.Samba":{"description":"advisory.Samba","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"issues":{"type":"string"},"patches":{"items":{"type":"string"},"type":"array","uniqueItems":false},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.Sandisk":{"description":"advisory.Sandisk","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SansDshield":{"description":"advisory.SansDshield","properties":{"count":{"type":"integer"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"firstSeen":{"type":"string"},"lastSeen":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SchneiderCVE":{"description":"advisory.SchneiderCVE","properties":{"cve":{"type":"string"},"cvss_score3":{"type":"string"},"cvss_score4":{"type":"string"},"cvss_vector3":{"type":"string"},"cvss_vector4":{"type":"string"}},"type":"object"},"advisory.SchneiderElectricAdvisory":{"description":"advisory.SchneiderElectricAdvisory","properties":{"csaf_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"pdf_url":{"type":"string"},"schneider_cves":{"items":{"$ref":"#/components/schemas/advisory.SchneiderCVE"},"type":"array","uniqueItems":false},"schneider_electric_id":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Schutzwerk":{"description":"advisory.Schutzwerk","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SecFix":{"description":"advisory.SecFix","properties":{"arch":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"release":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.SecurityBulletin":{"description":"advisory.SecurityBulletin","properties":{"acknowledgement":{"type":"string"},"bulletinId":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvedetails":{"items":{"$ref":"#/components/schemas/advisory.CVEDetail"},"type":"array"},"date_added":{"type":"string"},"hardwareUpdates":{"items":{"$ref":"#/components/schemas/advisory.HardwareUpdate"},"type":"array"},"lastUpdated":{"type":"string"},"link":{"type":"string"},"revisions":{"items":{"$ref":"#/components/schemas/advisory.NvidiaRevision"},"type":"array"},"severity":{"type":"string"},"softwareUpdates":{"items":{"$ref":"#/components/schemas/advisory.SoftwareUpdate"},"type":"array"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.SecurityLab":{"description":"advisory.SecurityLab","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"title_ru":{"type":"string"},"url":{"type":"string"},"vendor":{"type":"string"}},"type":"object"},"advisory.SeebugExploit":{"description":"advisory.SeebugExploit","properties":{"author":{"type":"string"},"category":{"type":"string"},"cnnvd":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cnvd":{"items":{"type":"string"},"type":"array","uniqueItems":false},"component":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"find_time":{"type":"string"},"name":{"type":"string"},"ssv_id":{"type":"string"},"submitter":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Sel":{"description":"advisory.Sel","properties":{"acknowledgement":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SentinelOne":{"description":"advisory.SentinelOne","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ServiceNow":{"description":"advisory.ServiceNow","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SevenZip":{"description":"advisory.SevenZip","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Severity":{"description":"advisory.Severity","properties":{"score":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.ShadowServerExploitedVulnerability":{"description":"advisory.ShadowServerExploitedVulnerability","properties":{"cnvd":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"detections_last_1_day":{"type":"integer"},"detections_last_30_days":{"type":"integer"},"detections_last_7_days":{"type":"integer"},"detections_last_90_days":{"type":"integer"},"edb":{"type":"string"},"in_kev":{"type":"boolean"},"is_iot":{"type":"boolean"},"is_ransomware":{"type":"boolean"},"product":{"type":"string"},"url":{"type":"string"},"vendor":{"type":"string"},"vulnerability_id":{"type":"string"},"vulnerability_link":{"type":"string"}},"type":"object"},"advisory.Shielder":{"description":"advisory.Shielder","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Sick":{"description":"advisory.Sick","properties":{"csaf_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"id":{"type":"string"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"}},"type":"object"},"advisory.SiemensAcknowledgments":{"description":"advisory.SiemensAcknowledgments","properties":{"names":{"items":{"type":"string"},"type":"array","uniqueItems":false},"organization":{"type":"string"},"summary":{"type":"string"}},"type":"object"},"advisory.SiemensAdvisory":{"description":"advisory.SiemensAdvisory","properties":{"csaf_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvrf_url":{"type":"string"},"date_added":{"type":"string"},"html_url":{"type":"string"},"id":{"type":"string"},"last_update":{"description":"could potentially kill this in the future as it's a dupe","type":"string"},"pdf_url":{"type":"string"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"ssa":{"$ref":"#/components/schemas/advisory.SSASource"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"txt_url":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.SiemensBranch":{"description":"advisory.SiemensBranch","properties":{"branches":{"items":{"$ref":"#/components/schemas/advisory.SiemensSubBranch"},"type":"array","uniqueItems":false},"category":{"type":"string"},"name":{"type":"string"}},"type":"object"},"advisory.SiemensCVSSV3":{"description":"advisory.SiemensCVSSV3","properties":{"baseScore":{"type":"number"},"baseSeverity":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.SiemensCWE":{"description":"advisory.SiemensCWE","properties":{"id":{"type":"string"},"name":{"type":"string"}},"type":"object"},"advisory.SiemensDistribution":{"description":"advisory.SiemensDistribution","properties":{"text":{"type":"string"},"tlp":{"$ref":"#/components/schemas/advisory.SiemensTLP"}},"type":"object"},"advisory.SiemensDocument":{"description":"advisory.SiemensDocument","properties":{"acknowledgments":{"items":{"$ref":"#/components/schemas/advisory.SiemensAcknowledgments"},"type":"array","uniqueItems":false},"category":{"type":"string"},"csaf_version":{"type":"string"},"distribution":{"$ref":"#/components/schemas/advisory.SiemensDistribution"},"notes":{"items":{"$ref":"#/components/schemas/advisory.SiemensNotes"},"type":"array","uniqueItems":false},"publisher":{"$ref":"#/components/schemas/advisory.SiemensPublisher"},"references":{"items":{"$ref":"#/components/schemas/advisory.SiemensReferences"},"type":"array","uniqueItems":false},"title":{"type":"string"},"tracking":{"$ref":"#/components/schemas/advisory.SiemensTracking"}},"type":"object"},"advisory.SiemensEngine":{"description":"advisory.SiemensEngine","properties":{"name":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.SiemensGenerator":{"description":"advisory.SiemensGenerator","properties":{"engine":{"$ref":"#/components/schemas/advisory.SiemensEngine"}},"type":"object"},"advisory.SiemensNotes":{"description":"advisory.SiemensNotes","properties":{"category":{"type":"string"},"text":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.SiemensProduct":{"description":"advisory.SiemensProduct","properties":{"name":{"type":"string"},"product_id":{"type":"string"},"product_identification_helper":{"$ref":"#/components/schemas/advisory.SiemensProductIdentificationHelper"}},"type":"object"},"advisory.SiemensProductIdentificationHelper":{"description":"advisory.SiemensProductIdentificationHelper","properties":{"model_numbers":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.SiemensProductStatus":{"description":"advisory.SiemensProductStatus","properties":{"known_affected":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.SiemensProductTree":{"description":"advisory.SiemensProductTree","properties":{"branches":{"items":{"$ref":"#/components/schemas/advisory.SiemensBranch"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.SiemensPublisher":{"description":"advisory.SiemensPublisher","properties":{"category":{"type":"string"},"contact_details":{"type":"string"},"name":{"type":"string"},"namespace":{"type":"string"}},"type":"object"},"advisory.SiemensReferences":{"description":"advisory.SiemensReferences","properties":{"category":{"type":"string"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SiemensRemediation":{"description":"advisory.SiemensRemediation","properties":{"category":{"type":"string"},"details":{"type":"string"},"product_ids":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"advisory.SiemensRevisionHistory":{"description":"advisory.SiemensRevisionHistory","properties":{"date":{"type":"string"},"legacy_version":{"type":"string"},"number":{"type":"string"},"summary":{"type":"string"}},"type":"object"},"advisory.SiemensScore":{"description":"advisory.SiemensScore","properties":{"cvss_v3":{"$ref":"#/components/schemas/advisory.SiemensCVSSV3"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.SiemensSubBranch":{"description":"advisory.SiemensSubBranch","properties":{"branches":{"items":{"$ref":"#/components/schemas/advisory.SiemensSubSubBranch"},"type":"array","uniqueItems":false},"category":{"type":"string"},"name":{"type":"string"}},"type":"object"},"advisory.SiemensSubSubBranch":{"description":"advisory.SiemensSubSubBranch","properties":{"category":{"type":"string"},"name":{"type":"string"},"product":{"$ref":"#/components/schemas/advisory.SiemensProduct"}},"type":"object"},"advisory.SiemensTLP":{"description":"advisory.SiemensTLP","properties":{"label":{"type":"string"}},"type":"object"},"advisory.SiemensTracking":{"description":"advisory.SiemensTracking","properties":{"current_release_date":{"type":"string"},"generator":{"$ref":"#/components/schemas/advisory.SiemensGenerator"},"id":{"type":"string"},"initial_release_date":{"type":"string"},"revision_history":{"items":{"$ref":"#/components/schemas/advisory.SiemensRevisionHistory"},"type":"array","uniqueItems":false},"status":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.SiemensVulnerability":{"description":"advisory.SiemensVulnerability","properties":{"cve":{"type":"string"},"cwe":{"$ref":"#/components/schemas/advisory.SiemensCWE"},"notes":{"items":{"$ref":"#/components/schemas/advisory.SiemensNotes"},"type":"array","uniqueItems":false},"product_status":{"$ref":"#/components/schemas/advisory.SiemensProductStatus"},"references":{"items":{"$ref":"#/components/schemas/advisory.SiemensReferences"},"type":"array","uniqueItems":false},"remediations":{"items":{"$ref":"#/components/schemas/advisory.SiemensRemediation"},"type":"array","uniqueItems":false},"scores":{"items":{"$ref":"#/components/schemas/advisory.SiemensScore"},"type":"array","uniqueItems":false},"title":{"type":"string"}},"type":"object"},"advisory.SierraWireless":{"description":"advisory.SierraWireless","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"swid":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SigmaRule":{"description":"advisory.SigmaRule","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"mitre_attack_techniques":{"items":{"type":"string"},"type":"array","uniqueItems":false},"sigma_rule":{"$ref":"#/components/schemas/advisory.SigmaRuleRule"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SigmaRuleRule":{"description":"advisory.SigmaRuleRule","properties":{"author":{"type":"string"},"date":{"type":"string"},"description":{"type":"string"},"detection":{"additionalProperties":{},"type":"object"},"false_positives":{"items":{"type":"string"},"type":"array","uniqueItems":false},"fields":{"items":{"type":"string"},"type":"array","uniqueItems":false},"id":{"type":"string"},"level":{"type":"string"},"logsource":{"$ref":"#/components/schemas/advisory.LogSource"},"modified":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"related":{"items":{"$ref":"#/components/schemas/advisory.RelatedRule"},"type":"array","uniqueItems":false},"status":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"}},"type":"object"},"advisory.SingCert":{"description":"advisory.SingCert","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"link":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"summary":{"type":"string"},"title":{"type":"string"},"updated":{"type":"string"}},"type":"object"},"advisory.Sitecore":{"description":"advisory.Sitecore","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"refs":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"summary_ja":{"type":"string"},"title":{"type":"string"},"title_ja":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Slackware":{"description":"advisory.Slackware","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SoftwareUpdate":{"description":"advisory.SoftwareUpdate","properties":{"affectedVersion":{"type":"string"},"cves":{"items":{"type":"string"},"type":"array"},"operatingSystem":{"type":"string"},"softwareProduct":{"type":"string"},"updatedVersion":{"type":"string"}},"type":"object"},"advisory.SolarWindsAdvisory":{"description":"advisory.SolarWindsAdvisory","properties":{"affected_products":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"date_added":{"type":"string"},"fixed_version":{"type":"string"},"severity":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Solr":{"description":"advisory.Solr","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Sonatype":{"description":"advisory.Sonatype","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SonicWallAdvisory":{"description":"advisory.SonicWallAdvisory","properties":{"advisory_id":{"type":"string"},"affected_products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"cvss_vector":{"type":"string"},"cvss_version":{"type":"number"},"cwe":{"type":"string"},"date_added":{"type":"string"},"impact":{"type":"string"},"is_workaround_available":{"type":"boolean"},"last_updated_when":{"type":"string"},"published_when":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"vuln_status":{"type":"string"},"vulnerable_products_list":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.SpacelabsHealthcareAdvisory":{"description":"advisory.SpacelabsHealthcareAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Splunk":{"description":"advisory.Splunk","properties":{"advisory_id":{"type":"string"},"affected_products":{"items":{"$ref":"#/components/schemas/advisory.SplunkProduct"},"type":"array","uniqueItems":false},"bug_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SplunkProduct":{"description":"advisory.SplunkProduct","properties":{"affected_version":{"type":"string"},"component":{"type":"string"},"fixed_version":{"type":"string"},"product":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.Spring":{"description":"advisory.Spring","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Stormshield":{"description":"advisory.Stormshield","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.StrykerAdvisory":{"description":"advisory.StrykerAdvisory","properties":{"affected_components":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Sudo":{"description":"advisory.Sudo","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details":{"type":"string"},"fix":{"type":"string"},"impact":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"workaround":{"type":"string"}},"type":"object"},"advisory.SuseSecurity":{"description":"advisory.SuseSecurity","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SwisslogHealthcareAdvisory":{"description":"advisory.SwisslogHealthcareAdvisory","properties":{"affected_components":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Symfony":{"description":"advisory.Symfony","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Synacktiv":{"description":"advisory.Synacktiv","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SyncroSoft":{"description":"advisory.SyncroSoft","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Synology":{"description":"advisory.Synology","properties":{"affected_products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"last_updated":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"status":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Syss":{"description":"advisory.Syss","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.TI":{"description":"advisory.TI","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"incident_id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.TPLink":{"description":"advisory.TPLink","properties":{"bulletin_id":{"type":"integer"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.TWCertAdvisory":{"description":"advisory.TWCertAdvisory","properties":{"affected_cn":{"type":"string"},"affected_en":{"type":"string"},"credit_cn":{"type":"string"},"credit_en":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description_cn":{"type":"string"},"description_en":{"type":"string"},"link":{"type":"string"},"solution_cn":{"type":"string"},"solution_en":{"type":"string"},"title_cn":{"type":"string"},"title_en":{"type":"string"},"tvnid":{"type":"string"}},"type":"object"},"advisory.Tailscale":{"description":"advisory.Tailscale","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.TalosAdvisory":{"description":"advisory.TalosAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"talos_id":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.TeamViewer":{"description":"advisory.TeamViewer","properties":{"bulletin_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.TenableResearchAdvisory":{"description":"advisory.TenableResearchAdvisory","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Tencent":{"description":"advisory.Tencent","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary_cn":{"type":"string"},"title_cn":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Thales":{"description":"advisory.Thales","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.TheMissingLink":{"description":"advisory.TheMissingLink","properties":{"affected_versions":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed_versions":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ThermoFisher":{"description":"advisory.ThermoFisher","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ThreatActorWithExternalObjects":{"description":"advisory.ThreatActorWithExternalObjects","properties":{"associated_capecs":{"items":{"$ref":"#/components/schemas/advisory.Capec"},"type":"array","uniqueItems":false},"associated_cwes":{"items":{"$ref":"#/components/schemas/advisory.CweData"},"type":"array","uniqueItems":false},"associated_mitre_attack_techniques":{"items":{"$ref":"#/components/schemas/advisory.MitreAttackTechWithRefs"},"type":"array","uniqueItems":false},"country":{"type":"string"},"cve_references":{"items":{"$ref":"#/components/schemas/advisory.CVEReference"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"malpedia_url":{"type":"string"},"misp_id":{"type":"string"},"misp_threat_actor":{"$ref":"#/components/schemas/advisory.MISPValueNoID"},"mitre_attack_group":{"$ref":"#/components/schemas/advisory.MITREAttackGroupNoID"},"mitre_group_cti":{"$ref":"#/components/schemas/advisory.MitreGroupCTI"},"mitre_id":{"type":"string"},"threat_actor_name":{"type":"string"},"tools":{"items":{"$ref":"#/components/schemas/advisory.Tool"},"type":"array","uniqueItems":false},"vendor_names_for_threat_actors":{"items":{"$ref":"#/components/schemas/advisory.VendorNameForThreatActor"},"type":"array","uniqueItems":false},"vendors_and_products_targeted":{"items":{"$ref":"#/components/schemas/advisory.VendorProduct"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.ThreatData":{"description":"advisory.ThreatData","properties":{"category":{"type":"string"},"details":{"type":"string"},"product_ids":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.Tibco":{"description":"advisory.Tibco","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"impact":{"type":"string"},"overview":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Timeline":{"description":"advisory.Timeline","properties":{"lang":{"type":"string"},"time":{"description":"FIXME: flip to time","type":"string"},"value":{"type":"string"}},"type":"object"},"advisory.Tool":{"description":"advisory.Tool","properties":{"name":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.ToolRef"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.ToolRef":{"description":"advisory.ToolRef","properties":{"date_added":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Tracking":{"description":"advisory.Tracking","properties":{"current_release_date":{"type":"string"},"id":{"type":"string"},"initial_release_date":{"type":"string"},"revision_history":{"items":{"$ref":"#/components/schemas/advisory.RevisionHistory"},"type":"array","uniqueItems":false},"status":{"type":"string"},"version":{"description":"should match last 'number' in []RevisionHistory","type":"string"}},"type":"object"},"advisory.TrackingID":{"description":"advisory.TrackingID","properties":{"system_name":{"type":"string"},"text":{"type":"string"}},"type":"object"},"advisory.TraneTechnology":{"description":"advisory.TraneTechnology","properties":{"brand":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"product":{"type":"string"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.TrendMicro":{"description":"advisory.TrendMicro","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"scores":{"type":"string"},"severity":{"type":"string"},"solution":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.TriageNotes":{"description":"advisory.TriageNotes","properties":{"references":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.Trustwave":{"description":"advisory.Trustwave","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.USD":{"description":"advisory.USD","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.USOMAdvisory":{"description":"advisory.USOMAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"effect_tr":{"type":"string"},"general_information_tr":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"solution_tr":{"type":"string"},"title_tr":{"type":"string"},"trid":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Ubiquiti":{"description":"advisory.Ubiquiti","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"links":{"items":{"type":"string"},"type":"array","uniqueItems":false},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.UbuntuCVE":{"description":"advisory.UbuntuCVE","properties":{"affected_packages":{"items":{"$ref":"#/components/schemas/advisory.AffectedUbuntuPackage"},"type":"array","uniqueItems":false},"cve":{"description":"Candidate","items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"description":"PublicDate","type":"string"},"reference_urls":{"description":"References","items":{"type":"string"},"type":"array","uniqueItems":false},"source_url":{"type":"string"},"status":{"description":"active || retired","type":"string"},"ubuntu_url":{"type":"string"},"usn":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.UbuntuPackageReleaseStatus":{"description":"advisory.UbuntuPackageReleaseStatus","properties":{"affected":{"type":"boolean"},"fixed":{"type":"boolean"},"fixed_version":{"type":"string"},"lts":{"type":"boolean"},"release":{"type":"string"},"release_long":{"type":"string"},"release_version":{"type":"string"},"status":{"type":"string"}},"type":"object"},"advisory.Unify":{"description":"advisory.Unify","properties":{"advisory_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Unisoc":{"description":"advisory.Unisoc","properties":{"access_vector":{"type":"string"},"affected_chipsets":{"type":"string"},"affected_software":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"rating":{"type":"string"},"score":{"type":"string"},"severity":{"type":"string"},"technology":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vulnerability":{"type":"string"}},"type":"object"},"advisory.Update":{"description":"advisory.Update","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"description":"sort // key","type":"string"},"issued":{"$ref":"#/components/schemas/advisory.DateTime"},"os_arch":{"type":"string"},"os_version":{"type":"string"},"packages":{"items":{"$ref":"#/components/schemas/advisory.Package"},"type":"array","uniqueItems":false},"references":{"items":{"$ref":"#/components/schemas/advisory.Reference"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"},"updated":{"$ref":"#/components/schemas/advisory.DateTime"}},"type":"object"},"advisory.Updated":{"description":"advisory.Updated","type":"object"},"advisory.V3AcceptanceLevel":{"description":"advisory.V3AcceptanceLevel","properties":{"description":{"type":"string"},"lastModified":{"type":"string"}},"type":"object"},"advisory.VCCPEDictionary":{"description":"advisory.VCCPEDictionary","properties":{"baseCPE":{"type":"string"},"versions":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.VCVulnerableCPEs":{"description":"advisory.VCVulnerableCPEs","properties":{"cve":{"type":"string"},"unrolled":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.VDEAdvisory":{"description":"advisory.VDEAdvisory","properties":{"csaf_json":{"$ref":"#/components/schemas/advisory.CSAF"},"csaf_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_revised":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vde":{"type":"string"}},"type":"object"},"advisory.VLC":{"description":"advisory.VLC","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.VMWareAdvisory":{"description":"advisory.VMWareAdvisory","properties":{"AdvisoryID":{"type":"string"},"AdvisoryURL":{"type":"string"},"CVSSv3Range":{"type":"string"},"IssueDate":{"type":"string"},"Severity":{"type":"string"},"Synopsis":{"type":"string"},"UpdatedOn":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.VYAIREAdvisory":{"description":"advisory.VYAIREAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.VanDyke":{"description":"advisory.VanDyke","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.VapidLabsAdvisory":{"description":"advisory.VapidLabsAdvisory","properties":{"author":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"exploit":{"type":"string"},"link":{"type":"string"},"title":{"type":"string"},"vapidId":{"type":"string"},"vendor":{"type":"string"},"vulnerability":{"type":"string"}},"type":"object"},"advisory.Veeam":{"description":"advisory.Veeam","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"solution":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.VendorNameForThreatActor":{"description":"advisory.VendorNameForThreatActor","properties":{"threat_actor_name":{"type":"string"},"url":{"type":"string"},"vendor_name":{"type":"string"}},"type":"object"},"advisory.VendorProduct":{"description":"advisory.VendorProduct","properties":{"product":{"type":"string"},"vendor":{"type":"string"}},"type":"object"},"advisory.VendorRef":{"description":"advisory.VendorRef","properties":{"vendor_ref":{"type":"string"},"vendor_ref_url":{"type":"string"}},"type":"object"},"advisory.Veritas":{"description":"advisory.Veritas","properties":{"bulletin_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Virtuozzo":{"description":"advisory.Virtuozzo","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.VoidSec":{"description":"advisory.VoidSec","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.VulnCheck":{"description":"advisory.VulnCheck","properties":{"affecting":{"items":{"type":"string"},"type":"array","uniqueItems":false},"credit":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"cvss_v3_vector":{"type":"string"},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.VulnCheckCVEListV5":{"description":"advisory.VulnCheckCVEListV5","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"mitre_ref":{"$ref":"#/components/schemas/advisory.MitreCVEListV5Ref"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.VulnCheckConfig":{"description":"advisory.VulnCheckConfig","properties":{"config":{"items":{"$ref":"#/components/schemas/advisory.NVD20Configuration"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"}},"type":"object"},"advisory.VulnCheckKEV":{"description":"advisory.VulnCheckKEV","properties":{"_timestamp":{"type":"string"},"cisa_date_added":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwes":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"dueDate":{"type":"string"},"knownRansomwareCampaignUse":{"type":"string"},"product":{"type":"string"},"reported_exploited_by_vulncheck_canaries":{"type":"boolean"},"required_action":{"type":"string"},"shortDescription":{"type":"string"},"vendorProject":{"type":"string"},"vulncheck_reported_exploitation":{"items":{"$ref":"#/components/schemas/advisory.ReportedExploit"},"type":"array","uniqueItems":false},"vulncheck_xdb":{"items":{"$ref":"#/components/schemas/advisory.XDB"},"type":"array","uniqueItems":false},"vulnerabilityName":{"type":"string"}},"type":"object"},"advisory.VulnCheckPackage":{"description":"advisory.VulnCheckPackage","properties":{"arch":{"type":"string"},"distro":{"type":"string"},"filename":{"type":"string"},"md5":{"type":"string"},"name":{"type":"string"},"purl":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.VulnerableDebianPackage":{"description":"advisory.VulnerableDebianPackage","properties":{"associated_cves":{"items":{"$ref":"#/components/schemas/advisory.DebianCVE"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"package_name":{"type":"string"}},"type":"object"},"advisory.VulnerableProduct":{"description":"advisory.VulnerableProduct","properties":{"name":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.Vulnrichment":{"description":"advisory.Vulnrichment","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"mitre_ref":{"$ref":"#/components/schemas/advisory.VulnrichmentCVERef"},"url":{"type":"string"}},"type":"object"},"advisory.VulnrichmentCVERef":{"description":"advisory.VulnrichmentCVERef","properties":{"containers":{"$ref":"#/components/schemas/advisory.VulnrichmentContainers"},"cveMetadata":{"$ref":"#/components/schemas/advisory.MCveMetadata"},"dataType":{"type":"string"},"dataVersion":{"type":"string"}},"type":"object"},"advisory.VulnrichmentContainers":{"description":"advisory.VulnrichmentContainers","properties":{"adp":{"items":{"$ref":"#/components/schemas/advisory.ADP"},"type":"array","uniqueItems":false},"cna":{"$ref":"#/components/schemas/advisory.MCna"}},"type":"object"},"advisory.VulnrichmentContent":{"description":"advisory.VulnrichmentContent","properties":{"id":{"type":"string"},"options":{"items":{"$ref":"#/components/schemas/advisory.VulnrichmentOption"},"type":"array","uniqueItems":false},"role":{"type":"string"},"timestamp":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.VulnrichmentMetric":{"description":"advisory.VulnrichmentMetric","properties":{"other":{"$ref":"#/components/schemas/advisory.VulnrichmentOther"}},"type":"object"},"advisory.VulnrichmentOption":{"description":"advisory.VulnrichmentOption","properties":{"Automatable":{"type":"string"},"Exploitation":{"type":"string"},"Technical Impact":{"type":"string"}},"type":"object"},"advisory.VulnrichmentOther":{"description":"advisory.VulnrichmentOther","properties":{"content":{"$ref":"#/components/schemas/advisory.VulnrichmentContent"},"type":{"type":"string"}},"type":"object"},"advisory.WRT":{"description":"advisory.WRT","properties":{"advisory":{"type":"string"},"affectedVersions":{"type":"string"},"credits":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"mitigations":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"requirements":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.WatchGuard":{"description":"advisory.WatchGuard","properties":{"advisory_id":{"type":"string"},"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"resolution":{"type":"string"},"score":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.WhatsApp":{"description":"advisory.WhatsApp","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Wibu":{"description":"advisory.Wibu","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Wireshark":{"description":"advisory.Wireshark","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.WithSecure":{"description":"advisory.WithSecure","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.WolfSSL":{"description":"advisory.WolfSSL","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"fixed_version":{"type":"string"},"severity":{"type":"string"}},"type":"object"},"advisory.Wolfi":{"description":"advisory.Wolfi","properties":{"apkurl":{"type":"string"},"archs":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"description":"un-used","type":"string"},"packages":{"items":{"$ref":"#/components/schemas/advisory.WolfiPackage"},"type":"array","uniqueItems":false},"reponame":{"type":"string"},"urlprefix":{"type":"string"}},"type":"object"},"advisory.WolfiPackage":{"description":"advisory.WolfiPackage","properties":{"name":{"type":"string"},"secfixes":{"items":{"$ref":"#/components/schemas/advisory.WolfiSecFix"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.WolfiSecFix":{"description":"advisory.WolfiSecFix","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"version":{"type":"string"}},"type":"object"},"advisory.Wordfence":{"description":"advisory.Wordfence","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"fixed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.XDB":{"description":"advisory.XDB","properties":{"clone_ssh_url":{"type":"string"},"date_added":{"type":"string"},"exploit_type":{"type":"string"},"xdb_id":{"type":"string"},"xdb_url":{"type":"string"}},"type":"object"},"advisory.Xen":{"description":"advisory.Xen","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updatedAt":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Xerox":{"description":"advisory.Xerox","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Xiaomi":{"description":"advisory.Xiaomi","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"internal_id":{"type":"string"},"summary":{"type":"string"},"summary_cn":{"type":"string"},"title":{"type":"string"},"title_cn":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Xylem":{"description":"advisory.Xylem","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"xsa":{"type":"string"}},"type":"object"},"advisory.Yamaha":{"description":"advisory.Yamaha","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"summary_ja":{"type":"string"},"title_ja":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.YokogawaAdvisory":{"description":"advisory.YokogawaAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_revised":{"type":"string"},"name":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"ysar_id":{"type":"string"}},"type":"object"},"advisory.Yubico":{"description":"advisory.Yubico","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ZDI":{"description":"advisory.ZDI","properties":{"cves":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"cvss_version":{"type":"string"},"discoverers":{"items":{"type":"string"},"type":"array","uniqueItems":false},"filter_ids_dv":{"items":{"type":"string"},"type":"array","uniqueItems":false},"last_updated_at":{"type":"string"},"products":{"items":{"$ref":"#/components/schemas/advisory.ZDIProduct"},"type":"array","uniqueItems":false},"public_advisory":{"type":"string"},"published_date":{"type":"string"},"responses":{"items":{"$ref":"#/components/schemas/advisory.ZDIResponse"},"type":"array","uniqueItems":false},"title":{"type":"string"},"zdi_can":{"type":"string"},"zdi_public":{"type":"string"}},"type":"object"},"advisory.ZDIProduct":{"description":"advisory.ZDIProduct","properties":{"name":{"type":"string"},"uri":{"type":"string"},"vendor":{"$ref":"#/components/schemas/advisory.ZDIVendor"}},"type":"object"},"advisory.ZDIResponse":{"description":"advisory.ZDIResponse","properties":{"text":{"type":"string"},"uri":{"type":"string"},"vendor":{"$ref":"#/components/schemas/advisory.ZDIResponseVendor"}},"type":"object"},"advisory.ZDIResponseVendor":{"description":"advisory.ZDIResponseVendor","properties":{"name":{"type":"string"}},"type":"object"},"advisory.ZDIVendor":{"description":"advisory.ZDIVendor","properties":{"name":{"type":"string"},"uri":{"type":"string"}},"type":"object"},"advisory.Zebra":{"description":"advisory.Zebra","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ZeroDayAdvisory":{"description":"advisory.ZeroDayAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"zdi":{"$ref":"#/components/schemas/advisory.ZDI"}},"type":"object"},"advisory.ZeroScienceAdvisory":{"description":"advisory.ZeroScienceAdvisory","properties":{"advisoryId":{"type":"string"},"affectedVersions":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"impact":{"type":"string"},"link":{"type":"string"},"poC":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"risk":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"},"vendor":{"type":"string"}},"type":"object"},"advisory.Zimbra":{"description":"advisory.Zimbra","properties":{"bugs":{"items":{"type":"integer"},"type":"array"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"fix":{"type":"string"},"rating":{"type":"string"},"reporter":{"type":"string"},"summary":{"type":"string"}},"type":"object"},"advisory.Zoom":{"description":"advisory.Zoom","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"zsb":{"type":"string"}},"type":"object"},"advisory.Zscaler":{"description":"advisory.Zscaler","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ZuluVersion":{"description":"advisory.ZuluVersion","properties":{"jdk":{"type":"string"},"type":{"type":"string"},"zulu":{"type":"string"}},"type":"object"},"advisory.Zuso":{"description":"advisory.Zuso","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"zaid":{"type":"string"}},"type":"object"},"advisory.Zyxel":{"description":"advisory.Zyxel","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"api.BaseMetricV2":{"description":"api.BaseMetricV2","properties":{"acInsufInfo":{"type":"boolean"},"cvssV2":{"$ref":"#/components/schemas/api.CVSSV2"},"exploitabilityScore":{"type":"number"},"impactScore":{"type":"number"},"obtainAllPrivilege":{"type":"boolean"},"obtainOtherPrivilege":{"type":"boolean"},"obtainUserPrivilege":{"type":"boolean"},"severity":{"type":"string"},"userInteractionRequired":{"type":"boolean"}},"type":"object"},"api.BaseMetricV3":{"description":"api.BaseMetricV3","properties":{"cvssV3":{"$ref":"#/components/schemas/api.CVSSV3"},"exploitabilityScore":{"type":"number"},"impactScore":{"type":"number"}},"type":"object"},"api.CPE":{"description":"api.CPE","properties":{"edition":{"type":"string"},"language":{"type":"string"},"other":{"type":"string"},"part":{"type":"string"},"product":{"type":"string"},"sw_edition":{"type":"string"},"target_hw":{"type":"string"},"target_sw":{"type":"string"},"update":{"type":"string"},"vendor":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.CPEMatch":{"description":"api.CPEMatch","properties":{"cpe22Uri":{"type":"string"},"cpe23Uri":{"type":"string"},"cpe_name":{"items":{"$ref":"#/components/schemas/api.CPEName"},"type":"array","uniqueItems":false},"versionEndExcluding":{"type":"string"},"versionEndIncluding":{"type":"string"},"versionStartExcluding":{"type":"string"},"versionStartIncluding":{"type":"string"},"vulnerable":{"type":"boolean"}},"type":"object"},"api.CPEName":{"description":"api.CPEName","properties":{"cpe22Uri":{"type":"string"},"cpe23Uri":{"type":"string"},"lastModifiedDate":{"type":"string"}},"type":"object"},"api.CVE":{"description":"api.CVE","properties":{"CVE_data_meta":{"$ref":"#/components/schemas/api.CVEDataMeta"},"data_format":{"type":"string"},"data_type":{"type":"string"},"data_version":{"type":"string"},"description":{"$ref":"#/components/schemas/api.Description"},"problemtype":{"$ref":"#/components/schemas/api.ProblemType"},"references":{"$ref":"#/components/schemas/api.References"}},"type":"object"},"api.CVEDataMeta":{"description":"api.CVEDataMeta","properties":{"ASSIGNER":{"type":"string"},"ID":{"type":"string"}},"type":"object"},"api.CVEDataMetaExtended":{"description":"api.CVEDataMetaExtended","properties":{"ALIAS":{"type":"string"},"ASSIGNER":{"type":"string"},"ID":{"type":"string"},"STATUS":{"type":"string"}},"type":"object"},"api.CVEExtended":{"description":"api.CVEExtended","properties":{"CVE_data_meta":{"$ref":"#/components/schemas/api.CVEDataMetaExtended"},"categorization":{"$ref":"#/components/schemas/api.CategorizationExtended"},"data_format":{"type":"string"},"data_type":{"type":"string"},"data_version":{"type":"string"},"description":{"$ref":"#/components/schemas/api.Description"},"problemtype":{"$ref":"#/components/schemas/api.ProblemTypeExtended"},"references":{"$ref":"#/components/schemas/api.ReferencesExtended"}},"type":"object"},"api.CVSSV2":{"description":"api.CVSSV2","properties":{"accessComplexity":{"type":"string"},"accessVector":{"type":"string"},"authentication":{"type":"string"},"availabilityImpact":{"type":"string"},"baseScore":{"type":"number"},"confidentialityImpact":{"type":"string"},"integrityImpact":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.CVSSV3":{"description":"api.CVSSV3","properties":{"attackComplexity":{"type":"string"},"attackVector":{"type":"string"},"availabilityImpact":{"type":"string"},"baseScore":{"type":"number"},"baseSeverity":{"type":"string"},"confidentialityImpact":{"type":"string"},"integrityImpact":{"type":"string"},"privilegesRequired":{"type":"string"},"scope":{"type":"string"},"userInteraction":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.CWE":{"description":"api.CWE","properties":{"abstraction":{"type":"string"},"description":{"type":"string"},"kev_count":{"type":"integer"},"status":{"type":"string"},"structure":{"type":"string"},"vulncheck_nvd_count":{"type":"integer"},"weakness_id":{"type":"string"},"weakness_name":{"type":"string"},"weighted_score":{"type":"number"}},"type":"object"},"api.CategorizationExtended":{"description":"api.CategorizationExtended","properties":{"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"api.ClientFingerprints":{"description":"api.ClientFingerprints","properties":{"hassh":{"type":"string"},"ja3":{"type":"string"},"ja4":{"type":"string"}},"type":"object"},"api.Configurations":{"description":"api.Configurations","properties":{"CVE_data_version":{"type":"string"},"nodes":{"items":{"$ref":"#/components/schemas/api.Nodes"},"type":"array","uniqueItems":false}},"type":"object"},"api.CveItems":{"description":"api.CveItems","properties":{"configurations":{"$ref":"#/components/schemas/api.Configurations"},"cve":{"$ref":"#/components/schemas/api.CVE"},"impact":{"$ref":"#/components/schemas/api.Impact"},"lastModifiedDate":{"type":"string"},"publishedDate":{"type":"string"},"vcConfigurations":{"$ref":"#/components/schemas/api.Configurations"},"vcVulnerableCPEs":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"api.CveItemsExtended":{"description":"api.CveItemsExtended","properties":{"_timestamp":{"type":"string"},"configurations":{"$ref":"#/components/schemas/api.Configurations"},"cve":{"$ref":"#/components/schemas/api.CVEExtended"},"date_added":{"type":"string"},"documentGenerationDate":{"description":"the deep tag instructs deep.Equal to ignore this field (used during OpenSearch loading)","type":"string"},"impact":{"$ref":"#/components/schemas/api.ImpactExtended"},"lastModifiedDate":{"type":"string"},"mitre_attack_techniques":{"items":{"$ref":"#/components/schemas/api.MitreAttackTech"},"type":"array","uniqueItems":false},"publishedDate":{"type":"string"},"related_attack_patterns":{"items":{"$ref":"#/components/schemas/api.RelatedAttackPattern"},"type":"array","uniqueItems":false},"vcConfigurations":{"$ref":"#/components/schemas/api.Configurations"},"vcVulnerableCPEs":{"items":{"type":"string"},"type":"array","uniqueItems":false},"vulnerable_cpes":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"api.DateTime":{"description":"api.DateTime","type":"object"},"api.Description":{"description":"api.Description","properties":{"description_data":{"items":{"$ref":"#/components/schemas/api.DescriptionData"},"type":"array","uniqueItems":false}},"type":"object"},"api.DescriptionData":{"description":"api.DescriptionData","properties":{"lang":{"type":"string"},"value":{"type":"string"}},"type":"object"},"api.EPSS":{"description":"exclude EPSS from changelog","properties":{"epss_percentile":{"type":"number"},"epss_score":{"type":"number"},"last_modified":{"type":"string"}},"type":"object"},"api.EPSSData":{"description":"api.EPSSData","properties":{"_timestamp":{"type":"string"},"cve":{"type":"string"},"epss_percentile":{"type":"number"},"epss_score":{"type":"number"}},"type":"object"},"api.ExploitChain":{"description":"api.ExploitChain","properties":{"cves":{"items":{"$ref":"#/components/schemas/api.ExploitChainCVE"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"url":{"type":"string"}},"type":"object"},"api.ExploitChainCVE":{"description":"api.ExploitChainCVE","properties":{"cve":{"type":"string"},"type":{"type":"string"}},"type":"object"},"api.ExploitV3Result":{"description":"api.ExploitV3Result","properties":{"_timestamp":{"description":"ignore this field when checking for differences/changes","type":"string"},"commercial_exploit_found":{"type":"boolean"},"counts":{"$ref":"#/components/schemas/api.ExploitsV3Count"},"date_added":{"type":"string"},"epss":{"$ref":"#/components/schemas/api.EPSS"},"exploits":{"items":{"$ref":"#/components/schemas/api.NormalizedExploitV3Entry"},"type":"array","uniqueItems":false},"id":{"type":"string"},"inKEV":{"type":"boolean"},"inVCKEV":{"type":"boolean"},"max_exploit_maturity":{"type":"string"},"public_exploit_found":{"type":"boolean"},"reported_exploitation":{"items":{"$ref":"#/components/schemas/api.NormalizedReportV3Entry"},"type":"array","uniqueItems":false},"reported_exploited":{"type":"boolean"},"reported_exploited_by_botnets":{"type":"boolean"},"reported_exploited_by_honeypot_service":{"type":"boolean"},"reported_exploited_by_ransomware":{"type":"boolean"},"reported_exploited_by_threat_actors":{"type":"boolean"},"reported_exploited_by_vulncheck_canaries":{"type":"boolean"},"timeline":{"$ref":"#/components/schemas/api.ExploitsV3Timeline"},"trending":{"$ref":"#/components/schemas/api.ExploitsTrending"},"weaponized_exploit_found":{"type":"boolean"}},"type":"object"},"api.ExploitsChange":{"description":"api.ExploitsChange","properties":{"change_time":{"type":"string"},"change_type":{"type":"string"},"field":{"type":"string"},"new_value":{},"old_value":{}},"type":"object"},"api.ExploitsChangelog":{"description":"api.ExploitsChangelog","properties":{"changes":{"items":{"$ref":"#/components/schemas/api.ExploitsChange"},"type":"array","uniqueItems":false},"cve":{"type":"string"}},"type":"object"},"api.ExploitsTrending":{"description":"api.ExploitsTrending","properties":{"github":{"type":"boolean"}},"type":"object"},"api.ExploitsV3Count":{"description":"api.ExploitsV3Count","properties":{"botnets":{"type":"integer"},"exploits":{"type":"integer"},"ransomware_families":{"type":"integer"},"threat_actors":{"type":"integer"}},"type":"object"},"api.ExploitsV3Timeline":{"description":"api.ExploitsV3Timeline","properties":{"cisa_kev_date_added":{"type":"string"},"cisa_kev_date_due":{"type":"string"},"first_exploit_published":{"type":"string"},"first_exploit_published_weaponized_or_higher":{"type":"string"},"first_reported_botnet":{"type":"string"},"first_reported_ransomware":{"type":"string"},"first_reported_threat_actor":{"type":"string"},"most_recent_exploit_published":{"type":"string"},"most_recent_reported_botnet":{"type":"string"},"most_recent_reported_ransomware":{"type":"string"},"most_recent_reported_threat_actor":{"type":"string"},"nvd_last_modified":{"description":"it's often the case the nvd record was updated, but in a way that is irrelevant to the contents\nof a vc exploits record.","type":"string"},"nvd_published":{"type":"string"},"vulncheck_kev_date_added":{"type":"string"},"vulncheck_kev_date_due":{"type":"string"}},"type":"object"},"api.HTTPDetails":{"description":"api.HTTPDetails","properties":{"http_request_body":{"type":"string"},"http_user_agent":{"type":"string"},"method":{"type":"string"},"protocol":{"type":"string"},"url":{"type":"string"}},"type":"object"},"api.Impact":{"description":"api.Impact","properties":{"baseMetricV2":{"$ref":"#/components/schemas/api.BaseMetricV2"},"baseMetricV3":{"$ref":"#/components/schemas/api.BaseMetricV3"},"metricV40":{"$ref":"#/components/schemas/advisory.CVSSV40"}},"type":"object"},"api.ImpactExtended":{"description":"api.ImpactExtended","properties":{"baseMetricV2":{"$ref":"#/components/schemas/api.BaseMetricV2"},"baseMetricV3":{"$ref":"#/components/schemas/api.BaseMetricV3"},"correctedBaseMetricV3":{"$ref":"#/components/schemas/api.BaseMetricV3"},"epss":{"$ref":"#/components/schemas/api.EPSS"},"metricV40":{"$ref":"#/components/schemas/advisory.CVSSV40"},"ssvc":{"items":{"$ref":"#/components/schemas/api.SSVC"},"type":"array","uniqueItems":false},"temporalMetricV2":{"$ref":"#/components/schemas/api.TemporalMetricV2"},"temporalMetricV3":{"$ref":"#/components/schemas/api.TemporalMetricV3"},"temporalV3Corrected":{"$ref":"#/components/schemas/api.TemporalMetricV3"},"threatMetricV40":{"$ref":"#/components/schemas/advisory.CVSSV40Threat"}},"type":"object"},"api.InitialAccess":{"description":"api.InitialAccess","properties":{"artifacts":{"description":"Artifacts holds the set of available artifacts for this vulnerability, such as exploit, shodan queries, PCAP traces, and others.","items":{"$ref":"#/components/schemas/api.InitialAccessArtifact"},"type":"array","uniqueItems":false},"cve":{"description":"CVE identifier for the given initial access record.","type":"string"},"inKEV":{"description":"InKEV is true if this artifact is in CISA's Known Exploited Vulnerabilities (KEV) data set; otherwise, false.","type":"boolean"},"inVCKEV":{"description":"InVCKEV is true if this artifact is in VulnCheck's Known Exploited Vulnerabilities (VCKEV) data set; otherwise, false.","type":"boolean"},"vulnerable_cpes":{"description":"VulnerableCPEs is the list of vulnerable CPE strings associated with this CVE and artifact(s).","items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"api.InitialAccessArtifact":{"description":"api.InitialAccessArtifact","properties":{"artifactName":{"description":"ArtifactName is a title to associate with this artifact.","type":"string"},"artifactsURL":{"description":"ArtifactsURL are URLs to the available artifact.","items":{"type":"string"},"type":"array","uniqueItems":false},"baiduQueries":{"description":"...","items":{"type":"string"},"type":"array","uniqueItems":false},"baiduRawQueries":{"description":"...","items":{"type":"string"},"type":"array","uniqueItems":false},"censysLegacyQueries":{"description":"CensysLegacyQueries are legacy queries for examining potential Internet-exposed devices \u0026 applications with Censys in URL form.","items":{"type":"string"},"type":"array","uniqueItems":false},"censysLegacyRawQueries":{"description":"CensysLegacyRawQueries are raw legacy queries for examining potential Internet-exposed devices \u0026 applications with Censys.","items":{"type":"string"},"type":"array","uniqueItems":false},"censysQueries":{"description":"CensysQueries are queries for examining potential Internet-exposed devices \u0026 applications with Censys in URL form.","items":{"type":"string"},"type":"array","uniqueItems":false},"censysRawQueries":{"description":"CensysRawQueries are raw queries for examining potential Internet-exposed devices \u0026 applications with Censys.","items":{"type":"string"},"type":"array","uniqueItems":false},"cloneSSHURL":{"description":"CloneSSHURL is the git URL to clone the artifact with.","type":"string"},"dateAdded":{"description":"DateAdded is when this artifact entry was first added to the InitialAccess data set.","type":"string"},"driftnetQueries":{"description":"DriftnetQueries are queries for examining Internet exposed services with Driftnet.","items":{"type":"string"},"type":"array","uniqueItems":false},"driftnetRawQueries":{"description":"DriftnetRawQueries are queries for examining Internet exposed services with Driftnet.","items":{"type":"string"},"type":"array","uniqueItems":false},"exploit":{"description":"Exploit indicates whether or not an exploit is available in this artifact.","type":"boolean"},"fofaQueries":{"description":"FOFAQueries are raw queries for examining potential Internet-exposed devices \u0026 applications with FOFA.","items":{"type":"string"},"type":"array","uniqueItems":false},"fofaRawQueries":{"items":{"type":"string"},"type":"array","uniqueItems":false},"googleQueries":{"description":"google queries","items":{"type":"string"},"type":"array","uniqueItems":false},"googleRawQueries":{"description":"raw google queries","items":{"type":"string"},"type":"array","uniqueItems":false},"greynoiseQueries":{"description":"GreynoiseQueries are queries for finding the vulnerability via honeypot data.","items":{"type":"string"},"type":"array","uniqueItems":false},"mitreAttackTechniques":{"description":"MITRE ATT\u0026CK techniques","items":{"type":"string"},"type":"array","uniqueItems":false},"nmapScript":{"description":"NmapScript indicates whether or not an nmap script for scanning environment exists in this artifact.","type":"boolean"},"pcap":{"description":"PCAP indicates whether of not a package capture of the exploit PoC exploiting a vulnerable system exists in this artifact.","type":"boolean"},"product":{"description":"Product are the software that has the vulnerability.","items":{"type":"string"},"type":"array","uniqueItems":false},"shodanQueries":{"description":"ShodanQueries are queries for examining potential Internet-exposed devices \u0026 applications with Shodan in URL form.","items":{"type":"string"},"type":"array","uniqueItems":false},"shodanRawQueries":{"description":"ShodanRawQueries are raw queries for examining potential Internet-exposed devices \u0026 applications with Shodan.","items":{"type":"string"},"type":"array","uniqueItems":false},"sigmaRule":{"description":"SigmaRule indicates whether or not a Sigma rule designed to detect the exploitation of the vulnerability over the network exists in this artifact.","type":"boolean"},"snortRule":{"description":"SnortRule indicates whether or not a Snort rule designed to detect the exploitation of the vulnerability over the network exists in this artifact.","type":"boolean"},"suricataRule":{"description":"SuricataRule indicates whether or not a Suricata rule designed to detect the exploitation of the vulnerability over the network exists in this artifact.","type":"boolean"},"targetDocker":{"description":"TargetDocker indicates whether or not there is an available docker image with the vulnerability.","type":"boolean"},"targetEncryptedComms":{"description":"Encrypted communications?","type":"string"},"targetService":{"description":"TargetService indicates the service (HTTP, FTP, etc) that this exploit targets.","type":"string"},"vendor":{"description":"Vendor of the vulnerable product","type":"string"},"versionScanner":{"description":"VersionScanner indicates whether or not the exploit PoC can determine if target system is vulnerable without sending exploit payload in this artifact.","type":"boolean"},"yara":{"description":"YARA indicates whether or not a YARA rule designed to detect the exploit on an endpoint exists in this artifact.","type":"boolean"},"zeroday":{"description":"Zeroday indicates whether or not it is a VulnCheck zeroday.","type":"boolean"},"zoomEyeQueries":{"description":"ZoomEyeQueries are raw queries for examining potential Internet-exposed devices \u0026 applications with ZoomEye.","items":{"type":"string"},"type":"array","uniqueItems":false},"zoomEyeRawQueries":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"api.MitreAttackTech":{"description":"api.MitreAttackTech","properties":{"d3fendmapping":{"items":{"$ref":"#/components/schemas/api.MitreMitigation2D3fendMapping"},"type":"array","uniqueItems":false},"detections":{"items":{"$ref":"#/components/schemas/api.MitreDetectionTech"},"type":"array","uniqueItems":false},"domain":{"type":"string"},"id":{"type":"string"},"mitigations":{"items":{"$ref":"#/components/schemas/api.MitreMitigationTech"},"type":"array","uniqueItems":false},"name":{"type":"string"},"subtechnique":{"type":"boolean"},"tactics":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"api.MitreAttackToCVE":{"description":"api.MitreAttackToCVE","properties":{"cve_list":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"technique_id":{"$ref":"#/components/schemas/api.MitreAttackTech"}},"type":"object"},"api.MitreD3fendTechnique":{"description":"api.MitreD3fendTechnique","properties":{"id":{"type":"string"},"url":{"type":"string"}},"type":"object"},"api.MitreDetectionTech":{"description":"api.MitreDetectionTech","properties":{"datacomponent":{"type":"string"},"datasource":{"type":"string"},"detects":{"type":"string"},"id":{"type":"string"}},"type":"object"},"api.MitreMitigation2D3fendMapping":{"description":"api.MitreMitigation2D3fendMapping","properties":{"d3fendtechniques":{"items":{"$ref":"#/components/schemas/api.MitreD3fendTechnique"},"type":"array","uniqueItems":false},"id":{"type":"string"}},"type":"object"},"api.MitreMitigationTech":{"description":"api.MitreMitigationTech","properties":{"description":{"type":"string"},"id":{"type":"string"},"mitigation_url":{"type":"string"}},"type":"object"},"api.NVD20CPEMatch":{"description":"api.NVD20CPEMatch","properties":{"cpeLastModified":{"type":"string"},"created":{"type":"string"},"criteria":{"type":"string"},"lastModified":{"type":"string"},"matchCriteriaId":{"type":"string"},"matches":{"items":{"$ref":"#/components/schemas/api.NVD20CPEName"},"type":"array","uniqueItems":false},"status":{"type":"string"},"versionEndExcluding":{"type":"string"},"versionEndIncluding":{"type":"string"},"versionStartExcluding":{"type":"string"},"versionStartIncluding":{"type":"string"}},"type":"object"},"api.NVD20CPEName":{"description":"api.NVD20CPEName","properties":{"cpeName":{"type":"string"},"cpeNameId":{"type":"string"}},"type":"object"},"api.NVD20CVE":{"description":"api.NVD20CVE","properties":{"cisaActionDue":{"type":"string"},"cisaExploitAdd":{"type":"string"},"cisaRequiredAction":{"type":"string"},"cisaVulnerabilityName":{"type":"string"},"configurations":{"items":{"$ref":"#/components/schemas/advisory.NVD20Configuration"},"type":"array","uniqueItems":false},"descriptions":{"items":{"$ref":"#/components/schemas/api.NVD20Description"},"type":"array","uniqueItems":false},"evaluatorComment":{"type":"string"},"evaluatorImpact":{"type":"string"},"evaluatorSolution":{"type":"string"},"id":{"type":"string"},"lastModified":{"type":"string"},"metrics":{"$ref":"#/components/schemas/api.NVD20Metric"},"published":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/api.NVD20Reference"},"type":"array","uniqueItems":false},"sourceIdentifier":{"type":"string"},"vcConfigurations":{"items":{"$ref":"#/components/schemas/advisory.NVD20Configuration"},"type":"array","uniqueItems":false},"vcVulnerableCPEs":{"items":{"type":"string"},"type":"array","uniqueItems":false},"vendorComments":{"items":{"$ref":"#/components/schemas/api.NVD20VendorComment"},"type":"array","uniqueItems":false},"vulnStatus":{"type":"string"},"weaknesses":{"items":{"$ref":"#/components/schemas/api.NVD20Weakness"},"type":"array","uniqueItems":false}},"type":"object"},"api.NVD20CVEExtended":{"description":"api.NVD20CVEExtended","properties":{"ALIAS":{"type":"string"},"STATUS":{"type":"string"},"_timestamp":{"description":"the deep tag instructs deep.Equal to ignore this field (used during OpenSearch loading)","type":"string"},"categorization":{"$ref":"#/components/schemas/api.CategorizationExtended"},"cisaActionDue":{"type":"string"},"cisaExploitAdd":{"type":"string"},"cisaRequiredAction":{"type":"string"},"cisaVulnerabilityName":{"type":"string"},"configurations":{"items":{"$ref":"#/components/schemas/advisory.NVD20Configuration"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"descriptions":{"items":{"$ref":"#/components/schemas/api.NVD20Description"},"type":"array","uniqueItems":false},"documentGenerationDate":{"type":"string"},"evaluatorComment":{"type":"string"},"evaluatorImpact":{"type":"string"},"evaluatorSolution":{"type":"string"},"id":{"type":"string"},"lastModified":{"type":"string"},"metrics":{"$ref":"#/components/schemas/api.NVD20MetricExtended"},"mitreAttackTechniques":{"items":{"$ref":"#/components/schemas/api.MitreAttackTech"},"type":"array","uniqueItems":false},"published":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/api.NVD20ReferenceExtended"},"type":"array","uniqueItems":false},"relatedAttackPatterns":{"items":{"$ref":"#/components/schemas/api.RelatedAttackPattern"},"type":"array","uniqueItems":false},"sourceIdentifier":{"type":"string"},"vcConfigurations":{"items":{"$ref":"#/components/schemas/advisory.NVD20Configuration"},"type":"array","uniqueItems":false},"vcVulnerableCPEs":{"items":{"type":"string"},"type":"array","uniqueItems":false},"vendorComments":{"items":{"$ref":"#/components/schemas/api.NVD20VendorComment"},"type":"array","uniqueItems":false},"vulnStatus":{"type":"string"},"vulncheckKEVExploitAdd":{"type":"string"},"vulnerableCPEs":{"items":{"type":"string"},"type":"array","uniqueItems":false},"weaknesses":{"items":{"$ref":"#/components/schemas/api.NVD20WeaknessExtended"},"type":"array","uniqueItems":false}},"type":"object"},"api.NVD20CvssDataV2":{"description":"api.NVD20CvssDataV2","properties":{"accessComplexity":{"type":"string"},"accessVector":{"type":"string"},"authentication":{"type":"string"},"availabilityImpact":{"type":"string"},"availabilityRequirement":{"type":"string"},"baseScore":{"type":"number"},"collateralDamagePotential":{"type":"string"},"confidentialityImpact":{"type":"string"},"confidentialityRequirement":{"type":"string"},"environmentalScore":{"type":"number"},"exploitability":{"type":"string"},"integrityImpact":{"type":"string"},"integrityRequirement":{"type":"string"},"remediationLevel":{"type":"string"},"reportConfidence":{"type":"string"},"targetDistribution":{"type":"string"},"temporalScore":{"type":"number"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.NVD20CvssDataV3":{"description":"api.NVD20CvssDataV3","properties":{"attackComplexity":{"type":"string"},"attackVector":{"type":"string"},"availabilityImpact":{"type":"string"},"availabilityRequirement":{"type":"string"},"baseScore":{"type":"number"},"baseSeverity":{"type":"string"},"confidentialityImpact":{"type":"string"},"confidentialityRequirement":{"type":"string"},"environmentalScore":{"type":"number"},"environmentalSeverity":{"type":"string"},"exploitCodeMaturity":{"type":"string"},"integrityImpact":{"type":"string"},"integrityRequirement":{"type":"string"},"modifiedAttackComplexity":{"type":"string"},"modifiedAttackVector":{"type":"string"},"modifiedAvailabilityImpact":{"type":"string"},"modifiedConfidentialityImpact":{"type":"string"},"modifiedIntegrityImpact":{"type":"string"},"modifiedPrivilegesRequired":{"type":"string"},"modifiedScope":{"type":"string"},"modifiedUserInteraction":{"type":"string"},"privilegesRequired":{"type":"string"},"remediationLevel":{"type":"string"},"reportConfidence":{"type":"string"},"scope":{"type":"string"},"temporalScore":{"type":"number"},"temporalSeverity":{"type":"string"},"userInteraction":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.NVD20CvssMetricV2":{"description":"api.NVD20CvssMetricV2","properties":{"acInsufInfo":{"type":"boolean"},"baseSeverity":{"type":"string"},"cvssData":{"$ref":"#/components/schemas/api.NVD20CvssDataV2"},"exploitabilityScore":{"type":"number"},"impactScore":{"type":"number"},"obtainAllPrivilege":{"type":"boolean"},"obtainOtherPrivilege":{"type":"boolean"},"obtainUserPrivilege":{"type":"boolean"},"source":{"type":"string"},"type":{"type":"string"},"userInteractionRequired":{"type":"boolean"}},"type":"object"},"api.NVD20CvssMetricV3":{"description":"api.NVD20CvssMetricV3","properties":{"cvssData":{"$ref":"#/components/schemas/api.NVD20CvssDataV3"},"exploitabilityScore":{"type":"number"},"impactScore":{"type":"number"},"source":{"type":"string"},"type":{"type":"string"}},"type":"object"},"api.NVD20CvssMetricV40":{"description":"api.NVD20CvssMetricV40","properties":{"cvssData":{"$ref":"#/components/schemas/advisory.CVSSV40"},"source":{"type":"string"},"type":{"type":"string"}},"type":"object"},"api.NVD20Description":{"description":"api.NVD20Description","properties":{"lang":{"type":"string"},"value":{"type":"string"}},"type":"object"},"api.NVD20Metric":{"description":"api.NVD20Metric","properties":{"cvssMetricV2":{"items":{"$ref":"#/components/schemas/api.NVD20CvssMetricV2"},"type":"array","uniqueItems":false},"cvssMetricV30":{"items":{"$ref":"#/components/schemas/api.NVD20CvssMetricV3"},"type":"array","uniqueItems":false},"cvssMetricV31":{"items":{"$ref":"#/components/schemas/api.NVD20CvssMetricV3"},"type":"array","uniqueItems":false},"cvssMetricV40":{"items":{"$ref":"#/components/schemas/api.NVD20CvssMetricV40"},"type":"array","uniqueItems":false}},"type":"object"},"api.NVD20MetricExtended":{"description":"api.NVD20MetricExtended","properties":{"cvssMetricV2":{"items":{"$ref":"#/components/schemas/api.NVD20CvssMetricV2"},"type":"array","uniqueItems":false},"cvssMetricV30":{"items":{"$ref":"#/components/schemas/api.NVD20CvssMetricV3"},"type":"array","uniqueItems":false},"cvssMetricV31":{"items":{"$ref":"#/components/schemas/api.NVD20CvssMetricV3"},"type":"array","uniqueItems":false},"cvssMetricV40":{"items":{"$ref":"#/components/schemas/api.NVD20CvssMetricV40"},"type":"array","uniqueItems":false},"epss":{"$ref":"#/components/schemas/api.EPSS"},"ssvc":{"items":{"$ref":"#/components/schemas/api.SSVC"},"type":"array","uniqueItems":false},"temporalCVSSV2":{"$ref":"#/components/schemas/api.NVD20TemporalCVSSV2"},"temporalCVSSV2Secondary":{"items":{"$ref":"#/components/schemas/api.NVD20TemporalCVSSV2"},"type":"array","uniqueItems":false},"temporalCVSSV30":{"$ref":"#/components/schemas/api.NVD20TemporalCVSSV3"},"temporalCVSSV30Secondary":{"items":{"$ref":"#/components/schemas/api.NVD20TemporalCVSSV3"},"type":"array","uniqueItems":false},"temporalCVSSV31":{"$ref":"#/components/schemas/api.NVD20TemporalCVSSV3"},"temporalCVSSV31Secondary":{"items":{"$ref":"#/components/schemas/api.NVD20TemporalCVSSV3"},"type":"array","uniqueItems":false},"threatCVSSV40":{"$ref":"#/components/schemas/api.NVD20ThreatCVSSV40"},"threatCVSSV40Secondary":{"items":{"$ref":"#/components/schemas/api.NVD20ThreatCVSSV40"},"type":"array","uniqueItems":false}},"type":"object"},"api.NVD20Reference":{"description":"api.NVD20Reference","properties":{"source":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"api.NVD20ReferenceExtended":{"description":"api.NVD20ReferenceExtended","properties":{"date_added":{"type":"string"},"external_id":{"type":"string"},"lang":{"type":"string"},"name":{"type":"string"},"previous_url":{"type":"string"},"refsource":{"type":"string"},"source":{"type":"string"},"status":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"api.NVD20TemporalAssociatedBaseMetric":{"description":"api.NVD20TemporalAssociatedBaseMetric","properties":{"baseScore":{"type":"number"},"source":{"type":"string"},"type":{"type":"string"}},"type":"object"},"api.NVD20TemporalCVSSV2":{"description":"api.NVD20TemporalCVSSV2","properties":{"associatedBaseMetricV2":{"$ref":"#/components/schemas/api.NVD20TemporalAssociatedBaseMetric"},"exploitability":{"type":"string"},"remediationLevel":{"type":"string"},"reportConfidence":{"type":"string"},"temporalScore":{"type":"number"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.NVD20TemporalCVSSV3":{"description":"api.NVD20TemporalCVSSV3","properties":{"associatedBaseMetricV3":{"$ref":"#/components/schemas/api.NVD20TemporalAssociatedBaseMetric"},"exploitCodeMaturity":{"type":"string"},"remediationLevel":{"type":"string"},"reportConfidence":{"type":"string"},"temporalScore":{"type":"number"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.NVD20ThreatAssociatedBaseMetric":{"description":"api.NVD20ThreatAssociatedBaseMetric","properties":{"baseScore":{"type":"number"},"source":{"type":"string"},"type":{"type":"string"}},"type":"object"},"api.NVD20ThreatCVSSV40":{"description":"api.NVD20ThreatCVSSV40","properties":{"associatedBaseMetricV40":{"$ref":"#/components/schemas/api.NVD20ThreatAssociatedBaseMetric"},"baseThreatScore":{"type":"number"},"baseThreatSeverity":{"type":"string"},"exploitMaturity":{"type":"string"}},"type":"object"},"api.NVD20VendorComment":{"description":"api.NVD20VendorComment","properties":{"comment":{"type":"string"},"lastModified":{"type":"string"},"organization":{"type":"string"}},"type":"object"},"api.NVD20Weakness":{"description":"api.NVD20Weakness","properties":{"description":{"items":{"$ref":"#/components/schemas/api.NVD20Description"},"type":"array","uniqueItems":false},"source":{"type":"string"},"type":{"type":"string"}},"type":"object"},"api.NVD20WeaknessDescExtended":{"description":"api.NVD20WeaknessDescExtended","properties":{"lang":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"},"value":{"type":"string"}},"type":"object"},"api.NVD20WeaknessExtended":{"description":"api.NVD20WeaknessExtended","properties":{"description":{"items":{"$ref":"#/components/schemas/api.NVD20WeaknessDescExtended"},"type":"array","uniqueItems":false},"source":{"type":"string"},"type":{"type":"string"}},"type":"object"},"api.Nodes":{"description":"api.Nodes","properties":{"children":{"items":{"$ref":"#/components/schemas/api.Nodes"},"type":"array","uniqueItems":false},"cpe_match":{"items":{"$ref":"#/components/schemas/api.CPEMatch"},"type":"array","uniqueItems":false},"operator":{"type":"string"}},"type":"object"},"api.NormalizedExploitV3Entry":{"description":"api.NormalizedExploitV3Entry","properties":{"clone_ssh_url":{"type":"string"},"clone_ssh_url_cached":{"type":"string"},"date_added":{"type":"string"},"exploit_availability":{"type":"string"},"exploit_maturity":{"type":"string"},"exploit_type":{"type":"string"},"name":{"type":"string"},"reference_url":{"type":"string"},"refsource":{"type":"string"},"repo_id":{"type":"string"},"url":{"type":"string"}},"type":"object"},"api.NormalizedReportV3Entry":{"description":"api.NormalizedReportV3Entry","properties":{"date_added":{"type":"string"},"name":{"type":"string"},"refsource":{"type":"string"},"url":{"type":"string"}},"type":"object"},"api.OSSPackage":{"description":"api.OSSPackage","properties":{"artifacts":{"$ref":"#/components/schemas/api.OSSPackageArtifacts"},"cves":{"items":{"type":"string"},"type":"array","uniqueItems":false},"licenses":{"items":{"type":"string"},"type":"array","uniqueItems":false},"name":{"type":"string"},"published_date":{"type":"string"},"purl":{"items":{"type":"string"},"type":"array","uniqueItems":false},"research_attributes":{"$ref":"#/components/schemas/api.OSSPackageResearchAttributes"},"version":{"type":"string"},"vulnerabilities":{"items":{"$ref":"#/components/schemas/api.OSSPackageVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"api.OSSPackageArtifacts":{"description":"api.OSSPackageArtifacts","properties":{"binary":{"items":{"$ref":"#/components/schemas/api.OSSPackageDownloadInfo"},"type":"array","uniqueItems":false},"source":{"items":{"$ref":"#/components/schemas/api.OSSPackageDownloadInfo"},"type":"array","uniqueItems":false}},"type":"object"},"api.OSSPackageDownloadInfo":{"description":"api.OSSPackageDownloadInfo","properties":{"hashes":{"items":{"$ref":"#/components/schemas/api.OSSPackageHashInfo"},"type":"array","uniqueItems":false},"reference":{"type":"string"},"type":{"description":"See OSSPackageDownloadInfoType* consts","type":"string"},"url":{"type":"string"}},"type":"object"},"api.OSSPackageHashInfo":{"description":"api.OSSPackageHashInfo","properties":{"algorithm":{"description":"See OSSPackageHashInfoAlgo* consts","type":"string"},"type":{"description":"See OSSPackageHashInfoType* consts","type":"string"},"value":{"description":"hex string digest or link to hash","type":"string"}},"type":"object"},"api.OSSPackageResearchAttributes":{"description":"api.OSSPackageResearchAttributes","properties":{"abandoned":{"type":"boolean"},"eol":{"type":"boolean"},"is_malicious":{"type":"boolean"},"malicious_source":{"type":"string"},"repo_hijackable":{"type":"boolean"},"squatted_package":{"type":"string"}},"type":"object"},"api.OSSPackageVulnerability":{"description":"api.OSSPackageVulnerability","properties":{"detection":{"type":"string"},"fixed_version":{"type":"string"}},"type":"object"},"api.Package":{"description":"api.Package","properties":{"filename":{"type":"string"},"name":{"description":"sort","type":"string"},"release":{"type":"string"},"src":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.ProblemType":{"description":"api.ProblemType","properties":{"problemtype_data":{"items":{"$ref":"#/components/schemas/api.ProblemTypeData"},"type":"array","uniqueItems":false}},"type":"object"},"api.ProblemTypeData":{"description":"api.ProblemTypeData","properties":{"description":{"items":{"$ref":"#/components/schemas/api.ProblemTypeDescription"},"type":"array","uniqueItems":false}},"type":"object"},"api.ProblemTypeDataExtended":{"description":"api.ProblemTypeDataExtended","properties":{"description":{"items":{"$ref":"#/components/schemas/api.ProblemTypeDescriptionExtended"},"type":"array","uniqueItems":false}},"type":"object"},"api.ProblemTypeDescription":{"description":"api.ProblemTypeDescription","properties":{"lang":{"type":"string"},"value":{"type":"string"}},"type":"object"},"api.ProblemTypeDescriptionExtended":{"description":"api.ProblemTypeDescriptionExtended","properties":{"lang":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"},"value":{"type":"string"}},"type":"object"},"api.ProblemTypeExtended":{"description":"api.ProblemTypeExtended","properties":{"problemtype_data":{"items":{"$ref":"#/components/schemas/api.ProblemTypeDataExtended"},"type":"array","uniqueItems":false}},"type":"object"},"api.Reference":{"description":"api.Reference","properties":{"href":{"description":"sort","type":"string"},"id":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"}},"type":"object"},"api.ReferenceData":{"description":"api.ReferenceData","properties":{"name":{"type":"string"},"refsource":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"api.ReferenceDataExtended":{"description":"api.ReferenceDataExtended","properties":{"date_added":{"type":"string"},"external_id":{"type":"string"},"lang":{"type":"string"},"name":{"type":"string"},"previous_url":{"type":"string"},"refsource":{"type":"string"},"status":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"api.References":{"description":"api.References","properties":{"reference_data":{"items":{"$ref":"#/components/schemas/api.ReferenceData"},"type":"array","uniqueItems":false}},"type":"object"},"api.ReferencesExtended":{"description":"api.ReferencesExtended","properties":{"reference_data":{"description":"ExploitData []NormalizedExploit `json:\"exploit_data,omitempty\"`\n\t\tThreatActorData []ThreatActorExtended `json:\"threat_actor_data,omitempty\"`\n\t\tRansomwareData []RansomwareReferenceData `json:\"ransomware_data,omitempty\"`\n\t\tAdvisoryData []AdvisoryExtended `json:\"advisory_data,omitempty\"`\n\t\tIdentifierData []IdentifierExtended `json:\"identifier_data,omitempty\"`","items":{"$ref":"#/components/schemas/api.ReferenceDataExtended"},"type":"array","uniqueItems":false}},"type":"object"},"api.RelatedAttackPattern":{"description":"api.RelatedAttackPattern","properties":{"capec_id":{"type":"string"},"capec_name":{"type":"string"},"capec_url":{"type":"string"},"lang":{"type":"string"}},"type":"object"},"api.SSVC":{"description":"api.SSVC","properties":{"automatable":{"type":"string"},"exploitation":{"type":"string"},"source":{"type":"string"},"technicalImpact":{"type":"string"}},"type":"object"},"api.TemporalCVSSV2":{"description":"api.TemporalCVSSV2","properties":{"exploitability":{"type":"string"},"remediationLevel":{"type":"string"},"reportConfidence":{"type":"string"},"temporalScore":{"type":"number"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.TemporalCVSSV3":{"description":"api.TemporalCVSSV3","properties":{"exploitCodeMaturity":{"type":"string"},"remediationLevel":{"type":"string"},"reportConfidence":{"type":"string"},"temporalScore":{"type":"number"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.TemporalMetricV2":{"description":"api.TemporalMetricV2","properties":{"cvssV2":{"$ref":"#/components/schemas/api.TemporalCVSSV2"}},"type":"object"},"api.TemporalMetricV3":{"description":"api.TemporalMetricV3","properties":{"cvssV3":{"$ref":"#/components/schemas/api.TemporalCVSSV3"}},"type":"object"},"api.Update":{"description":"api.Update","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"description":"sort // key","type":"string"},"issued":{"$ref":"#/components/schemas/api.DateTime"},"os_arch":{"type":"string"},"os_version":{"type":"string"},"packages":{"items":{"$ref":"#/components/schemas/api.Package"},"type":"array","uniqueItems":false},"references":{"items":{"$ref":"#/components/schemas/api.Reference"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"},"updated":{"$ref":"#/components/schemas/api.DateTime"}},"type":"object"},"api.VulnCheckCanary":{"description":"api.VulnCheckCanary","properties":{"category":{"type":"string"},"client_fingerprints":{"$ref":"#/components/schemas/api.ClientFingerprints"},"cve":{"type":"string"},"dst_country":{"type":"string"},"http":{"$ref":"#/components/schemas/api.HTTPDetails"},"payload":{"type":"string"},"severity":{"type":"integer"},"signature":{"type":"string"},"signature_id":{"type":"integer"},"src_country":{"type":"string"},"src_ip":{"type":"string"},"src_port":{"type":"integer"},"timestamp":{"type":"string"}},"type":"object"},"api.VulnerabilityAlias":{"description":"api.VulnerabilityAlias","properties":{"alias":{"type":"string"},"cve":{"type":"string"},"reference_url":{"type":"string"}},"type":"object"},"models.Entitlements":{"description":"models.Entitlements","properties":{"entitlements":{"additionalProperties":{"items":{"type":"string"},"type":"array"},"description":"Entitlements provides a map of roles to a list of entitlements","type":"object"}},"type":"object"},"paginate.Match":{"description":"paginate.Match","properties":{"field":{"type":"string"},"value":{"type":"string"}},"type":"object"},"paginate.Pagination":{"description":"paginate.Pagination","properties":{"cursor":{"description":"Cursor for the current page","type":"string"},"first_item":{"description":"First and last Item","type":"integer"},"index":{"description":"The requested index","type":"string"},"last_item":{"type":"integer"},"limit":{"description":"Per-Page limit","type":"integer"},"matches":{"items":{"$ref":"#/components/schemas/paginate.Match"},"type":"array","uniqueItems":false},"max_pages":{"type":"integer"},"next_cursor":{"description":"Cursor for the next page","type":"string"},"opensearch_query":{"type":"object"},"order":{"type":"string"},"page":{"description":"The current Page number","type":"integer"},"pages":{"items":{"type":"string"},"type":"array","uniqueItems":false},"parameters":{"items":{"$ref":"#/components/schemas/paginate.Param"},"type":"array","uniqueItems":false},"show_pages":{"type":"boolean"},"show_query":{"type":"boolean"},"sort":{"type":"string"},"timestamp":{"type":"string"},"total_documents":{"description":"The total number of items","type":"integer"},"total_pages":{"description":"The total number of pages","type":"integer"},"warnings":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"paginate.Param":{"description":"paginate.Param","properties":{"filtering":{"type":"string"},"format":{"type":"string"},"name":{"type":"string"}},"type":"object"},"params.IndexBackup":{"description":"params.IndexBackup","properties":{"date_added":{"type":"string"},"filename":{"type":"string"},"sha256":{"type":"string"},"url":{"type":"string"},"url_ap-southeast-2":{"type":"string"},"url_eu-west-2":{"type":"string"},"url_expires":{"type":"string"},"url_il-central-1":{"type":"string"},"url_me-central-1":{"type":"string"},"url_mrap":{"type":"string"},"url_ttl_minutes":{"type":"integer"},"url_us-east-1":{"type":"string"},"url_us-west-2":{"type":"string"}},"type":"object"},"params.IndexBackupList":{"description":"params.IndexBackupList","properties":{"description":{"type":"string"},"href":{"description":"Href API endpoint URI to detailed backup information","type":"string"},"name":{"type":"string"}},"type":"object"},"params.IndexList":{"description":"params.IndexList","properties":{"description":{"type":"string"},"href":{"description":"Href API endpoint URI to detailed index information","type":"string"},"name":{"type":"string"}},"type":"object"},"purl.BatchVulnFinding":{"description":"purl.BatchVulnFinding","properties":{"cves":{"description":"list of associated CVE 's","items":{"type":"string"},"type":"array","uniqueItems":false},"purl":{"description":"the purl, ex. hex/coherence@0.1.2","type":"string"},"purl_struct":{"$ref":"#/components/schemas/purl.PackageURLJSON"},"research_attributes":{"$ref":"#/components/schemas/api.OSSPackageResearchAttributes"},"vulnerabilities":{"description":"list of associated vulnerabilities","items":{"$ref":"#/components/schemas/api.OSSPackageVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"purl.PackageURLJSON":{"description":"meta-data about the purl","properties":{"name":{"type":"string"},"namespace":{"type":"string"},"qualifiers":{"items":{"$ref":"#/components/schemas/purl.QualifierJSON"},"type":"array","uniqueItems":false},"subpath":{"type":"string"},"type":{"type":"string"},"version":{"type":"string"}},"type":"object"},"purl.QualifierJSON":{"description":"purl.QualifierJSON","properties":{"key":{"type":"string"},"value":{"type":"string"}},"type":"object"},"purls.Artifact":{"description":"purls.Artifact","type":"object"},"purls.PurlResponse":{"description":"purls.PurlResponse","properties":{"artifacts":{"$ref":"#/components/schemas/purls.Artifact"},"cves":{"items":{"type":"string"},"type":"array","uniqueItems":false},"licenses":{"items":{"type":"string"},"type":"array","uniqueItems":false},"name":{"type":"string"},"published_date":{"type":"string"},"purl":{"items":{"type":"string"},"type":"array","uniqueItems":false},"version":{"type":"string"},"vulnerabilities":{"items":{"$ref":"#/components/schemas/purls.Vulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"purls.Vulnerability":{"description":"purls.Vulnerability","properties":{"arch":{"type":"string"},"detection":{"type":"string"},"fixed_version":{"type":"string"}},"type":"object"},"render.Response-array_params_IndexBackupList":{"description":"render.Response-array_params_IndexBackupList","properties":{"_benchmark":{"type":"number"},"data":{"items":{"$ref":"#/components/schemas/params.IndexBackupList"},"type":"array","uniqueItems":false}},"type":"object"},"render.Response-array_params_IndexList":{"description":"render.Response-array_params_IndexList","properties":{"_benchmark":{"type":"number"},"data":{"items":{"$ref":"#/components/schemas/params.IndexList"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_A10-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_A10-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.A10"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ABBAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ABBAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ABBAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AIX-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AIX-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AIX"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AMD-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AMD-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AMD"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AMI-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AMI-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AMI"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ASRG-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ASRG-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ASRG"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AVEVAAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AVEVAAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AVEVAAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AVIDMLAdvs-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AVIDMLAdvs-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AVIDMLAdvs"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AWS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AWS-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AWS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Abbott-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Abbott-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Abbott"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Absolute-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Absolute-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Absolute"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Acronis-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Acronis-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Acronis"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AdobeAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AdobeAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AdobeAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Advantech-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Advantech-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Advantech"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Advisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Advisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Advisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AdvisoryRecord-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AdvisoryRecord-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AdvisoryRecord"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AlephResearch-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AlephResearch-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AlephResearch"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Alibaba-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Alibaba-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Alibaba"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AlmaLinuxUpdate-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AlmaLinuxUpdate-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AlmaLinuxUpdate"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AlpineLinuxSecDB-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AlpineLinuxSecDB-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AlpineLinuxSecDB"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AmazonCVE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AmazonCVE-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AmazonCVE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AnchoreNVDOverride-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AnchoreNVDOverride-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AnchoreNVDOverride"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AndroidAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AndroidAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AndroidAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheActiveMQ-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheActiveMQ-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheActiveMQ"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheArchiva-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheArchiva-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheArchiva"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheArrow-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheArrow-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheArrow"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheCamel-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheCamel-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheCamel"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheCommons-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheCommons-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheCommons"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheCouchDB-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheCouchDB-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheCouchDB"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheFlink-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheFlink-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheFlink"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheGuacamole-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheGuacamole-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheGuacamole"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheHTTP-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheHTTP-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheHTTP"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheHadoop-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheHadoop-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheHadoop"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheJSPWiki-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheJSPWiki-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheJSPWiki"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheKafka-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheKafka-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheKafka"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheLoggingServices-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheLoggingServices-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheLoggingServices"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheNiFi-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheNiFi-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheNiFi"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheOFBiz-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheOFBiz-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheOFBiz"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheOpenMeetings-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheOpenMeetings-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheOpenMeetings"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheOpenOffice-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheOpenOffice-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheOpenOffice"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApachePulsar-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApachePulsar-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApachePulsar"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheShiro-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheShiro-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheShiro"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheSpark-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheSpark-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheSpark"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheStruts-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheStruts-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheStruts"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheSubversion-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheSubversion-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheSubversion"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheSuperset-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheSuperset-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheSuperset"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheTomcat-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheTomcat-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheTomcat"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheZooKeeper-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheZooKeeper-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheZooKeeper"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AppCheck-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AppCheck-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AppCheck"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Appgate-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Appgate-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Appgate"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AppleAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AppleAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AppleAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ArchIssue-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ArchIssue-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ArchIssue"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Arista-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Arista-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Arista"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Aruba-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Aruba-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Aruba"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AssetNote-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AssetNote-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AssetNote"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Asterisk-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Asterisk-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Asterisk"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Astra-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Astra-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Astra"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Asus-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Asus-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Asus"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AtlassianAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AtlassianAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AtlassianAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AtlassianVuln-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AtlassianVuln-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AtlassianVuln"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Atredis-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Atredis-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Atredis"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Audiocodes-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Audiocodes-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Audiocodes"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AusCert-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AusCert-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AusCert"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Autodesk-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Autodesk-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Autodesk"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Avaya-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Avaya-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Avaya"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Avigilon-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Avigilon-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Avigilon"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Axis-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Axis-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Axis"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Azul-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Azul-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Azul"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BBraunAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BBraunAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.BBraunAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BDUAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BDUAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.BDUAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BLS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BLS-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.BLS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Bandr-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Bandr-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Bandr"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BaxterAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BaxterAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.BaxterAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BeckhoffAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BeckhoffAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.BeckhoffAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BeckmanCoulter-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BeckmanCoulter-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.BeckmanCoulter"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BectonDickinsonAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BectonDickinsonAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.BectonDickinsonAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BeldenAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BeldenAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.BeldenAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BeyondTrust-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BeyondTrust-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.BeyondTrust"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Binarly-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Binarly-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Binarly"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BitDefender-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BitDefender-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.BitDefender"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BlackBerry-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BlackBerry-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.BlackBerry"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BoschAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BoschAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.BoschAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BostonScientificAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BostonScientificAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.BostonScientificAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Botnet-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Botnet-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Botnet"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CACyberCentreAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CACyberCentreAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CACyberCentreAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CBLMariner-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CBLMariner-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CBLMariner"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CERTEUAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CERTEUAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CERTEUAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CESA-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CESA-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CESA"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CISAAlert-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CISAAlert-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CISAAlert"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CNNVDEntryJSON-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CNNVDEntryJSON-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CNNVDEntryJSON"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CNVDBulletin-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CNVDBulletin-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CNVDBulletin"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CNVDFlaw-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CNVDFlaw-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CNVDFlaw"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CanvasExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CanvasExploit-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CanvasExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CarestreamAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CarestreamAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CarestreamAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Carrier-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Carrier-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Carrier"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CertBE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CertBE-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CertBE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CertFRAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CertFRAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CertFRAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CertIN-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CertIN-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CertIN"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CertIRSecurityAlert-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CertIRSecurityAlert-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CertIRSecurityAlert"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CertSE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CertSE-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CertSE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CertUA-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CertUA-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CertUA"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ChainGuard-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ChainGuard-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ChainGuard"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CheckPoint-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CheckPoint-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CheckPoint"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Chrome-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Chrome-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Chrome"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Ciena-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Ciena-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Ciena"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CisaCsafAdv-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CisaCsafAdv-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CisaCsafAdv"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CiscoAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CiscoAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CiscoAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CiscoCSAF-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CiscoCSAF-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CiscoCSAF"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CiscoKnownGoodValue-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CiscoKnownGoodValue-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CiscoKnownGoodValue"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CitrixAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CitrixAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CitrixAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ClarotyVulnerability-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ClarotyVulnerability-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ClarotyVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CloudBees-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CloudBees-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CloudBees"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CloudVulnDBAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CloudVulnDBAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CloudVulnDBAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CodesysAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CodesysAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CodesysAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CommVault-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CommVault-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CommVault"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CompassSecurity-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CompassSecurity-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CompassSecurity"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ContainerOS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ContainerOS-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ContainerOS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CoreImpactExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CoreImpactExploit-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CoreImpactExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Crestron-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Crestron-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Crestron"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CrowdSec-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CrowdSec-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CrowdSec"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Curl-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Curl-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Curl"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Cvrf-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Cvrf-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Cvrf"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_DFNCert-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_DFNCert-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.DFNCert"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_DLink-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_DLink-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.DLink"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_DNN-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_DNN-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.DNN"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Dahua-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Dahua-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Dahua"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Danfoss-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Danfoss-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Danfoss"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Dassault-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Dassault-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Dassault"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_DebianSecurityAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_DebianSecurityAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.DebianSecurityAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Dell-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Dell-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Dell"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_DeltaAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_DeltaAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.DeltaAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_DistroPackage-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_DistroPackage-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.DistroPackage"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Django-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Django-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Django"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_DotCMS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_DotCMS-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.DotCMS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_DragosAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_DragosAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.DragosAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Draytek-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Draytek-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Draytek"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Drupal-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Drupal-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Drupal"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_EOLAlibaba-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_EOLAlibaba-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.EOLAlibaba"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_EOLMicrosoft-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_EOLMicrosoft-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.EOLMicrosoft"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_EOLReleaseData-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_EOLReleaseData-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.EOLReleaseData"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_EUVD-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_EUVD-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.EUVD"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_EatonAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_EatonAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.EatonAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Elastic-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Elastic-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Elastic"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Elspec-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Elspec-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Elspec"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_EmergingThreatsSnort-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_EmergingThreatsSnort-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.EmergingThreatsSnort"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_EmersonAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_EmersonAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.EmersonAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_EndOfLife-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_EndOfLife-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.EndOfLife"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Endress-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Endress-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Endress"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ExodusIntel-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ExodusIntel-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ExodusIntel"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ExploitDBExploitv2-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ExploitDBExploitv2-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ExploitDBExploitv2"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_F5-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_F5-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.F5"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_FSecure-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_FSecure-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.FSecure"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Fanuc-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Fanuc-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Fanuc"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Fastly-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Fastly-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Fastly"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Festo-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Festo-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Festo"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_FileCloud-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_FileCloud-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.FileCloud"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_FileZilla-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_FileZilla-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.FileZilla"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_FlattSecurity-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_FlattSecurity-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.FlattSecurity"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ForgeRock-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ForgeRock-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ForgeRock"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_FortinetAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_FortinetAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.FortinetAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_FortinetIPS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_FortinetIPS-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.FortinetIPS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Foxit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Foxit-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Foxit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Fresenius-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Fresenius-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Fresenius"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GCP-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GCP-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.GCP"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GEGas-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GEGas-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.GEGas"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GEHealthcareAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GEHealthcareAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.GEHealthcareAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GHAdvisoryJSONLean-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GHAdvisoryJSONLean-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.GHAdvisoryJSONLean"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GHSA-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GHSA-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.GHSA"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GMOCyberSecurity-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GMOCyberSecurity-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.GMOCyberSecurity"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Gallagher-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Gallagher-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Gallagher"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Gen-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Gen-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Gen"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Genetec-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Genetec-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Genetec"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Gigabyte-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Gigabyte-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Gigabyte"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GitHubExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GitHubExploit-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.GitHubExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GitLabExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GitLabExploit-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.GitLabExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GiteeExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GiteeExploit-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.GiteeExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GitlabAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GitlabAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.GitlabAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Glibc-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Glibc-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Glibc"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GnuTLS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GnuTLS-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.GnuTLS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GoVulnJSON-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GoVulnJSON-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.GoVulnJSON"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Grafana-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Grafana-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Grafana"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GreyNoiseDetection-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GreyNoiseDetection-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.GreyNoiseDetection"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HCL-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HCL-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.HCL"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HIKVision-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HIKVision-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.HIKVision"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HKCert-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HKCert-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.HKCert"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HMS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HMS-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.HMS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HP-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HP-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.HP"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HPE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HPE-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.HPE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Hacktivity-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Hacktivity-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Hacktivity"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HarmonyOS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HarmonyOS-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.HarmonyOS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HashiCorp-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HashiCorp-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.HashiCorp"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HaskellSADBAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HaskellSADBAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.HaskellSADBAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HillromAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HillromAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.HillromAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Hitachi-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Hitachi-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Hitachi"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HitachiEnergy-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HitachiEnergy-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.HitachiEnergy"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Honeywell-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Honeywell-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Honeywell"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Huawei-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Huawei-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Huawei"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HuaweiEulerOS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HuaweiEulerOS-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.HuaweiEulerOS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HuaweiIPS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HuaweiIPS-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.HuaweiIPS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_IAVA-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_IAVA-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.IAVA"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_IBM-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_IBM-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.IBM"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ITWExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ITWExploit-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ITWExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Idemia-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Idemia-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Idemia"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Igel-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Igel-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Igel"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_IncibeAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_IncibeAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.IncibeAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Intel-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Intel-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Intel"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_IpIntelRecord-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_IpIntelRecord-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.IpIntelRecord"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_IsraeliAlert-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_IsraeliAlert-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.IsraeliAlert"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_IsraeliVulnerability-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_IsraeliVulnerability-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.IsraeliVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Istio-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Istio-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Istio"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Ivanti-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Ivanti-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Ivanti"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_IvantiRSS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_IvantiRSS-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.IvantiRSS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_JFrog-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_JFrog-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.JFrog"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_JNJAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_JNJAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.JNJAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_JVN-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_JVN-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.JVN"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_JVNAdvisoryItem-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_JVNAdvisoryItem-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.JVNAdvisoryItem"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Jenkins-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Jenkins-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Jenkins"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_JetBrains-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_JetBrains-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.JetBrains"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_JohnsonControls-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_JohnsonControls-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.JohnsonControls"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Juniper-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Juniper-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Juniper"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_K8S-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_K8S-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.K8S"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_KEVCatalogVulnerability-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_KEVCatalogVulnerability-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.KEVCatalogVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_KRCertAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_KRCertAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.KRCertAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_KasperskyICSCERTAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_KasperskyICSCERTAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.KasperskyICSCERTAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_KoreLogic-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_KoreLogic-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.KoreLogic"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Kunbus-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Kunbus-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Kunbus"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_LG-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_LG-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.LG"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Lantronix-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Lantronix-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Lantronix"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Lenovo-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Lenovo-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Lenovo"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_LexmarkAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_LexmarkAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.LexmarkAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_LibreOffice-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_LibreOffice-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.LibreOffice"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Linux-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Linux-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Linux"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_LolAdvs-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_LolAdvs-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.LolAdvs"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MACert-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MACert-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MACert"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MFiles-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MFiles-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MFiles"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MaliciousPackage-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MaliciousPackage-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MaliciousPackage"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ManageEngineAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ManageEngineAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ManageEngineAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MbedTLS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MbedTLS-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MbedTLS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_McAfee-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_McAfee-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.McAfee"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Mediatek-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Mediatek-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Mediatek"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MedtronicAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MedtronicAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MedtronicAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Mendix-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Mendix-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Mendix"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MetaAdvisories-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MetaAdvisories-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MetaAdvisories"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MetaData-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MetaData-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MetaData"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MetasploitExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MetasploitExploit-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MetasploitExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MicrosoftCSAF-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MicrosoftCSAF-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MicrosoftCSAF"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MicrosoftCVRF-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MicrosoftCVRF-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MicrosoftCVRF"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MicrosoftDriverBlockList-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MicrosoftDriverBlockList-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MicrosoftDriverBlockList"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MicrosoftKb-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MicrosoftKb-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MicrosoftKb"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Mikrotik-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Mikrotik-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Mikrotik"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Mindray-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Mindray-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Mindray"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MispValue-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MispValue-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MispValue"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Mitel-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Mitel-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Mitel"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MitreCVEListV5-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MitreCVEListV5-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MitreCVEListV5"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MitsubishiElectricAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MitsubishiElectricAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MitsubishiElectricAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MongoDB-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MongoDB-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MongoDB"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MoxaAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MoxaAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MoxaAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MozillaAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MozillaAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MozillaAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NCSC-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NCSC-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.NCSC"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NCSCCVE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NCSCCVE-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.NCSCCVE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NEC-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NEC-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.NEC"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NHS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NHS-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.NHS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NI-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NI-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.NI"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NTP-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NTP-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.NTP"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NVD20Source-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NVD20Source-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.NVD20Source"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NVDCPEDictionary-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NVDCPEDictionary-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.NVDCPEDictionary"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NZAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NZAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.NZAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Naver-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Naver-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Naver"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Nessus-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Nessus-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Nessus"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NetApp-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NetApp-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.NetApp"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Netatalk-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Netatalk-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Netatalk"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Netgate-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Netgate-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Netgate"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Netgear-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Netgear-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Netgear"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Netskope-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Netskope-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Netskope"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Nexpose-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Nexpose-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Nexpose"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NginxAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NginxAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.NginxAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NodeJS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NodeJS-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.NodeJS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NodeSecurity-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NodeSecurity-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.NodeSecurity"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Nokia-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Nokia-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Nokia"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NotePadPlusPlus-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NotePadPlusPlus-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.NotePadPlusPlus"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Nozomi-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Nozomi-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Nozomi"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Nuclei-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Nuclei-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Nuclei"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OSV-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OSV-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.OSV"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OTRS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OTRS-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.OTRS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OctopusDeploy-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OctopusDeploy-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.OctopusDeploy"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Okta-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Okta-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Okta"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Omron-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Omron-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Omron"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OneE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OneE-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.OneE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OpenBSD-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OpenBSD-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.OpenBSD"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OpenCVDB-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OpenCVDB-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.OpenCVDB"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OpenJDK-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OpenJDK-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.OpenJDK"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OpenSSH-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OpenSSH-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.OpenSSH"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OpenSSLSecAdv-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OpenSSLSecAdv-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.OpenSSLSecAdv"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OpenStack-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OpenStack-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.OpenStack"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Opengear-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Opengear-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Opengear"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OracleCPU-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OracleCPU-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.OracleCPU"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OracleCPUCSAF-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OracleCPUCSAF-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.OracleCPUCSAF"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OwnCloud-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OwnCloud-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.OwnCloud"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PHPMyAdmin-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PHPMyAdmin-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.PHPMyAdmin"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PKCert-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PKCert-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.PKCert"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PTC-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PTC-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.PTC"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PacketstormExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PacketstormExploit-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.PacketstormExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Palantir-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Palantir-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Palantir"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PaloAltoAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PaloAltoAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.PaloAltoAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Panasonic-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Panasonic-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Panasonic"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PaperCut-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PaperCut-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.PaperCut"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Pega-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Pega-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Pega"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PhilipsAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PhilipsAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.PhilipsAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PhoenixContactAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PhoenixContactAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.PhoenixContactAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PostgresSQL-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PostgresSQL-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.PostgresSQL"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PowerDNS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PowerDNS-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.PowerDNS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Progress-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Progress-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Progress"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Proofpoint-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Proofpoint-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Proofpoint"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PureStorage-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PureStorage-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.PureStorage"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PyPAAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PyPAAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.PyPAAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_QNAPAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_QNAPAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.QNAPAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_QQID-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_QQID-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.QQID"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_QSB-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_QSB-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.QSB"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Qualcomm-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Qualcomm-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Qualcomm"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Qualys-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Qualys-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Qualys"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_QualysQID-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_QualysQID-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.QualysQID"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_RansomwareExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_RansomwareExploit-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.RansomwareExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_RedLion-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_RedLion-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.RedLion"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_RedhatCVE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_RedhatCVE-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.RedhatCVE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Renesas-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Renesas-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Renesas"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Revive-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Revive-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Revive"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_RhelCVE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_RhelCVE-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.RhelCVE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Roche-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Roche-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Roche"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Rockwell-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Rockwell-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Rockwell"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_RockyErrata-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_RockyErrata-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.RockyErrata"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Rsync-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Rsync-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Rsync"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Ruckus-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Ruckus-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Ruckus"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_RustsecAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_RustsecAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.RustsecAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SAAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SAAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SAAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SAP-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SAP-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SAP"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SECConsult-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SECConsult-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SECConsult"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SSDAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SSDAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SSDAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Safran-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Safran-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Safran"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SaintExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SaintExploit-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SaintExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SalesForce-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SalesForce-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SalesForce"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Samba-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Samba-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Samba"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Sandisk-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Sandisk-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Sandisk"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SansDshield-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SansDshield-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SansDshield"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SchneiderElectricAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SchneiderElectricAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SchneiderElectricAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Schutzwerk-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Schutzwerk-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Schutzwerk"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SecurityBulletin-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SecurityBulletin-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SecurityBulletin"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SecurityLab-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SecurityLab-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SecurityLab"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SeebugExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SeebugExploit-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SeebugExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Sel-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Sel-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Sel"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SentinelOne-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SentinelOne-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SentinelOne"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ServiceNow-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ServiceNow-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ServiceNow"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SevenZip-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SevenZip-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SevenZip"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ShadowServerExploitedVulnerability-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ShadowServerExploitedVulnerability-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ShadowServerExploitedVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Shielder-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Shielder-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Shielder"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Sick-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Sick-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Sick"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SiemensAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SiemensAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SiemensAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SierraWireless-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SierraWireless-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SierraWireless"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SigmaRule-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SigmaRule-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SigmaRule"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SingCert-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SingCert-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SingCert"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Sitecore-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Sitecore-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Sitecore"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Slackware-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Slackware-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Slackware"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SolarWindsAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SolarWindsAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SolarWindsAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Solr-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Solr-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Solr"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Sonatype-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Sonatype-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Sonatype"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SonicWallAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SonicWallAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SonicWallAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SpacelabsHealthcareAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SpacelabsHealthcareAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SpacelabsHealthcareAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Splunk-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Splunk-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Splunk"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Spring-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Spring-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Spring"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Stormshield-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Stormshield-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Stormshield"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_StrykerAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_StrykerAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.StrykerAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Sudo-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Sudo-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Sudo"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SuseSecurity-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SuseSecurity-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SuseSecurity"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SwisslogHealthcareAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SwisslogHealthcareAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SwisslogHealthcareAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Symfony-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Symfony-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Symfony"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Synacktiv-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Synacktiv-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Synacktiv"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SyncroSoft-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SyncroSoft-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SyncroSoft"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Synology-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Synology-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Synology"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Syss-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Syss-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Syss"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_TI-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_TI-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.TI"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_TPLink-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_TPLink-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.TPLink"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_TWCertAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_TWCertAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.TWCertAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Tailscale-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Tailscale-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Tailscale"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_TalosAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_TalosAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.TalosAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_TeamViewer-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_TeamViewer-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.TeamViewer"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_TenableResearchAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_TenableResearchAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.TenableResearchAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Tencent-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Tencent-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Tencent"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Thales-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Thales-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Thales"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_TheMissingLink-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_TheMissingLink-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.TheMissingLink"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ThermoFisher-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ThermoFisher-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ThermoFisher"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ThreatActorWithExternalObjects-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ThreatActorWithExternalObjects-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ThreatActorWithExternalObjects"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Tibco-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Tibco-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Tibco"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_TraneTechnology-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_TraneTechnology-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.TraneTechnology"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_TrendMicro-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_TrendMicro-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.TrendMicro"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Trustwave-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Trustwave-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Trustwave"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_USD-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_USD-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.USD"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_USOMAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_USOMAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.USOMAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Ubiquiti-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Ubiquiti-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Ubiquiti"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_UbuntuCVE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_UbuntuCVE-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.UbuntuCVE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Unify-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Unify-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Unify"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Unisoc-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Unisoc-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Unisoc"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Update-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Update-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Update"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VCCPEDictionary-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VCCPEDictionary-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.VCCPEDictionary"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VCVulnerableCPEs-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VCVulnerableCPEs-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.VCVulnerableCPEs"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VDEAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VDEAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.VDEAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VLC-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VLC-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.VLC"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VMWareAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VMWareAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.VMWareAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VYAIREAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VYAIREAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.VYAIREAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VanDyke-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VanDyke-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.VanDyke"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VapidLabsAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VapidLabsAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.VapidLabsAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Veeam-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Veeam-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Veeam"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Veritas-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Veritas-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Veritas"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Virtuozzo-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Virtuozzo-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Virtuozzo"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VoidSec-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VoidSec-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.VoidSec"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VulnCheck-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VulnCheck-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.VulnCheck"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VulnCheckCVEListV5-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VulnCheckCVEListV5-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.VulnCheckCVEListV5"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VulnCheckConfig-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VulnCheckConfig-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.VulnCheckConfig"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VulnCheckKEV-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VulnCheckKEV-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.VulnCheckKEV"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VulnerableDebianPackage-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VulnerableDebianPackage-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.VulnerableDebianPackage"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Vulnrichment-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Vulnrichment-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Vulnrichment"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_WRT-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_WRT-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.WRT"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_WatchGuard-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_WatchGuard-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.WatchGuard"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_WhatsApp-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_WhatsApp-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.WhatsApp"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Wibu-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Wibu-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Wibu"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Wireshark-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Wireshark-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Wireshark"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_WithSecure-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_WithSecure-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.WithSecure"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_WolfSSL-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_WolfSSL-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.WolfSSL"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Wolfi-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Wolfi-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Wolfi"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Wordfence-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Wordfence-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Wordfence"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Xen-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Xen-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Xen"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Xerox-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Xerox-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Xerox"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Xiaomi-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Xiaomi-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Xiaomi"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Xylem-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Xylem-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Xylem"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Yamaha-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Yamaha-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Yamaha"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_YokogawaAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_YokogawaAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.YokogawaAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Yubico-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Yubico-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Yubico"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Zebra-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Zebra-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Zebra"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ZeroDayAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ZeroDayAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ZeroDayAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ZeroScienceAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ZeroScienceAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ZeroScienceAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Zimbra-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Zimbra-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Zimbra"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Zoom-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Zoom-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Zoom"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Zscaler-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Zscaler-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Zscaler"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Zuso-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Zuso-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Zuso"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Zyxel-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Zyxel-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Zyxel"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_CWE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_CWE-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/api.CWE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_CveItems-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_CveItems-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/api.CveItems"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_CveItemsExtended-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_CveItemsExtended-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/api.CveItemsExtended"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_EPSSData-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_EPSSData-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/api.EPSSData"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_ExploitChain-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_ExploitChain-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/api.ExploitChain"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_ExploitV3Result-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_ExploitV3Result-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/api.ExploitV3Result"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_ExploitsChangelog-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_ExploitsChangelog-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/api.ExploitsChangelog"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_InitialAccess-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_InitialAccess-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/api.InitialAccess"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_MitreAttackToCVE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_MitreAttackToCVE-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/api.MitreAttackToCVE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_NVD20CPEMatch-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_NVD20CPEMatch-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/api.NVD20CPEMatch"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_NVD20CVE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_NVD20CVE-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/api.NVD20CVE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_NVD20CVEExtended-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_NVD20CVEExtended-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/api.NVD20CVEExtended"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/api.OSSPackage"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_Update-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_Update-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/api.Update"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_VulnCheckCanary-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_VulnCheckCanary-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/api.VulnCheckCanary"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_VulnerabilityAlias-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_VulnerabilityAlias-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/api.VulnerabilityAlias"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_purls_PurlResponse-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_purls_PurlResponse-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/purls.PurlResponse"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_string-v3controllers_ResponseMetadata":{"description":"render.ResponseWithMetadata-array_string-v3controllers_ResponseMetadata","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/v3controllers.ResponseMetadata"},"data":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-v3controllers_BackupResponseData-v3controllers_BackupResponseMetadata":{"description":"render.ResponseWithMetadata-v3controllers_BackupResponseData-v3controllers_BackupResponseMetadata","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/v3controllers.BackupResponseMetadata"},"data":{"items":{"$ref":"#/components/schemas/params.IndexBackup"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-v3controllers_PurlResponseData-v3controllers_PurlResponseMetadata":{"description":"render.ResponseWithMetadata-v3controllers_PurlResponseData-v3controllers_PurlResponseMetadata","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/v3controllers.PurlResponseMetadata"},"data":{"$ref":"#/components/schemas/v3controllers.PurlResponseData"}},"type":"object"},"render.ResponseWithMetadata-v3controllers_PurlsResponseData-v3controllers_PurlsResponseMetadata":{"description":"render.ResponseWithMetadata-v3controllers_PurlsResponseData-v3controllers_PurlsResponseMetadata","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/v3controllers.PurlsResponseMetadata"},"data":{"items":{"$ref":"#/components/schemas/purl.BatchVulnFinding"},"type":"array","uniqueItems":false}},"type":"object"},"search.ErrorResponse":{"description":"search.ErrorResponse","properties":{"error":{"type":"boolean"},"errors":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"search.V4AdvisoryMeta":{"description":"search.V4AdvisoryMeta","properties":{"cursor":{"type":"string"},"filtered":{"type":"integer"},"limit":{"type":"integer"},"next_cursor":{"type":"string"},"page":{"type":"integer"},"pages":{"type":"integer"},"total":{"type":"integer"}},"type":"object"},"search.V4AdvisoryReturnValue":{"description":"search.V4AdvisoryReturnValue","properties":{"_meta":{"$ref":"#/components/schemas/search.V4AdvisoryMeta"},"data":{"items":{"$ref":"#/components/schemas/advisory.MitreCVEListV5Ref"},"type":"array","uniqueItems":false}},"type":"object"},"search.V4FeedItem":{"description":"search.V4FeedItem","properties":{"description":{"type":"string"},"href":{"type":"string"},"name":{"type":"string"}},"type":"object"},"search.V4ListFeedReturnValue":{"description":"search.V4ListFeedReturnValue","properties":{"data":{"items":{"$ref":"#/components/schemas/search.V4FeedItem"},"type":"array","uniqueItems":false}},"type":"object"},"v3controllers.BackupResponseMetadata":{"description":"v3controllers.BackupResponseMetadata","properties":{"index":{"type":"string"},"timestamp":{"type":"string"}},"type":"object"},"v3controllers.PurlResponseData":{"description":"v3controllers.PurlResponseData","properties":{"cves":{"description":"list of associated CVE 's","items":{"type":"string"},"type":"array","uniqueItems":false},"vulnerabilities":{"description":"list of associated vulnerabilities","items":{"$ref":"#/components/schemas/api.OSSPackageVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"v3controllers.PurlResponseMetadata":{"description":"v3controllers.PurlResponseMetadata","properties":{"purl_struct":{"$ref":"#/components/schemas/purl.PackageURLJSON"},"timestamp":{"description":"time of the transaction","type":"string"},"total_documents":{"description":"number of results found","type":"integer"}},"type":"object"},"v3controllers.PurlsResponseMetadata":{"description":"v3controllers.PurlsResponseMetadata","properties":{"timestamp":{"description":"time of the transaction","type":"string"},"total_documents":{"description":"number of results found","type":"integer"}},"type":"object"},"v3controllers.ResponseMetadata":{"description":"v3controllers.ResponseMetadata","properties":{"cpe":{"type":"string"},"cpe_struct":{"$ref":"#/components/schemas/api.CPE"},"timestamp":{"type":"string"},"total_documents":{"type":"integer"}},"type":"object"}},"securitySchemes":{"Bearer":{"in":"header","name":"Authorization","type":"apiKey"}}},"externalDocs":{"description":"","url":""},"info":{"contact":{"email":"support@vulncheck.com","name":"VulnCheck API Support"},"description":"VulnCheck API (v3 + v4)","termsOfService":"https://vulncheck.com/terms","title":"VulnCheck API","version":"latest"},"openapi":"3.1.0","paths":{"/advisory":{"get":{"description":"Query the VulnCheck v4 advisory index","parameters":[{"description":"Filter by advisory feed name (e.g. 'vulncheck')","in":"query","name":"name","schema":{"type":"string"}},{"description":"Filter by CVE ID (e.g. 'CVE-2024-1234')","in":"query","name":"cve_id","schema":{"type":"string"}},{"description":"Filter by vendor name","in":"query","name":"vendor","schema":{"type":"string"}},{"description":"Filter by product name","in":"query","name":"product","schema":{"type":"string"}},{"description":"Filter by OS/platform","in":"query","name":"platform","schema":{"type":"string"}},{"description":"Filter by product version (semver-aware)","in":"query","name":"version","schema":{"type":"string"}},{"description":"Filter by CPE (e.g. 'cpe:2.3:a:vendor:product:*')","in":"query","name":"cpe","schema":{"type":"string"}},{"description":"Filter by package name","in":"query","name":"package_name","schema":{"type":"string"}},{"description":"Filter by package URL (PURL)","in":"query","name":"purl","schema":{"type":"string"}},{"description":"Filter by reference URL","in":"query","name":"reference_url","schema":{"type":"string"}},{"description":"Filter by reference tag (e.g. 'patch', 'advisory')","in":"query","name":"reference_tag","schema":{"type":"string"}},{"description":"Filter by description language (e.g. 'en')","in":"query","name":"description_lang","schema":{"type":"string"}},{"description":"Return advisories updated after this date (RFC3339 or date-math e.g. 'now-30d')","in":"query","name":"updatedAfter","schema":{"type":"string"}},{"description":"Return advisories updated before this date (RFC3339 or date-math)","in":"query","name":"updatedBefore","schema":{"type":"string"}},{"description":"Page number (default: 1)","in":"query","name":"page","schema":{"type":"integer"}},{"description":"Results per page, max 100 (default: 10)","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"Presence activates cursor mode from the first page (value is ignored; cannot be combined with page)","in":"query","name":"start_cursor","schema":{"type":"string"}},{"description":"Cursor from previous response _meta.next_cursor to fetch the next page","in":"query","name":"cursor","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.V4AdvisoryReturnValue"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.ErrorResponse"}}},"description":"Bad Request"},"401":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.ErrorResponse"}}},"description":"Unauthorized"},"402":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.ErrorResponse"}}},"description":"Payment Required"},"503":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.ErrorResponse"}}},"description":"Service Unavailable"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v4"}],"summary":"Query advisories","tags":["advisory"]}},"/advisory/list":{"get":{"description":"Return a list of available advisory feed names","responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.V4ListFeedReturnValue"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.ErrorResponse"}}},"description":"Bad Request"},"401":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.ErrorResponse"}}},"description":"Unauthorized"},"402":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.ErrorResponse"}}},"description":"Payment Required"},"503":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.ErrorResponse"}}},"description":"Service Unavailable"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v4"}],"summary":"List advisory feeds","tags":["advisory"]}},"/backup":{"get":{"description":"Return a list of indexes with backup and endpoint links that the user has access to","responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.Response-array_params_IndexBackupList"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"oneOf":[{"type":"string"},{"type":"string"}]}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return a list of indexes with backup and endpoint links","tags":["endpoints"]}},"/backup/{index}":{"get":{"description":"Retrieve a list of VulnCheck backups by index","parameters":[{"description":"Name of an exploit, vulnerability, or advisory index","in":"path","name":"index","required":true,"schema":{"enum":["7zip","a10","abb","abbott","absolute","acronis","adobe","advantech","advisories","aix","aleph-research","alibaba-advs","alma","alpine","alpine-purls","amazon","amazon-cve","amd","ami","anchore-nvd-override","android","apache-activemq","apache-archiva","apache-arrow","apache-camel","apache-commons","apache-couchdb","apache-flink","apache-guacamole","apache-hadoop","apache-http","apache-jspwiki","apache-kafka","apache-loggingservices","apache-nifi","apache-ofbiz","apache-openmeetings","apache-openoffice","apache-pulsar","apache-shiro","apache-spark","apache-struts","apache-subversion","apache-superset","apache-tomcat","apache-zookeeper","appcheck","appgate","apple","arch","arista","aruba","asrg","assetnote","asterisk","astra","asus","atlassian","atlassian-vulns","atredis","audiocodes","auscert","autodesk","avaya","aveva","avidml-advs","avigilon","aws","axis","azul","bandr","baxter","bbraun","bd","bdu","beckhoff","beckman-coulter","belden","beyond-trust","binarly","bitdefender","blackberry","bls","bosch","boston-scientific","botnets","ca-cyber-centre","canvas","carestream","cargo","carrier","cbl-mariner","centos","cert-be","cert-in","cert-ir-security-alerts","cert-se","cert-ua","certeu","certfr","chainguard","checkpoint","chrome","ciena","cisa-alerts","cisa-csaf","cisa-kev","cisco","cisco-csaf","cisco-known-good-values","cisco-talos","citrix","claroty","cloudbees","cloudvulndb","cnnvd","cnvd-bulletins","cnvd-flaws","cocoapods","codesys","commvault","compass-security","composer","conan","coreimpact","cpe-vulnerable","crestron","crowdsec","curl","cwe","dahua","danfoss","dassault","debian","debian-dsa","debian-packages","debian-purls","dell","delta","dfn-cert","django","dlink","dnn","dotcms","dragos","draytek","drupal","eaton","elastic","elspec","emerging-threats-snort","emerson","endoflife","endress","eol","eol-alibaba","eol-microsoft","epss","euvd","exodus-intel","exploit-chains","exploitdb","exploits","exploits-changelog","f-secure","f5","fanuc","fastly","fedora","festo","filecloud","filezilla","flatt-security","forgerock","fortinet","fortinet-ips","foxit","freebsd","fresenius","gallagher","gcp","ge-gas","ge-healthcare","gem","gen","genetec","ghsa","gigabyte","gitee-exploits","github-exploits","github-security-advisories","gitlab-advisories-community","gitlab-exploits","glibc","gmo-cybersecurity","gnutls","go-vulndb","golang","google-0day-itw","google-container-optimized-os","grafana","greynoise-metadata","hackage","hacktivity","harmonyos","hashicorp","haskell-sadb","hcl","hex","hikvision","hillrom","hitachi","hitachi-energy","hkcert","hms","honeywell","hp","hpe","huawei-euleros","huawei-ips","huawei-psirt","iava","ibm","idemia","igel","il-alerts","il-vulnerabilities","incibe","initial-access","initial-access-git","intel","ipintel-10d","ipintel-30d","ipintel-3d","ipintel-90d","istio","ivanti","ivanti-rss","jenkins","jetbrains","jfrog","jnj","johnson-controls","juniper","jvn","jvndb","kaspersky-ics-cert","korelogic","krcert-security-notices","krcert-vulnerabilities","kubernetes","kunbus","lantronix","lenovo","lexmark","lg","libre-office","linux","lol-advs","m-files","macert","malicious-packages","manageengine","maven","mbed-tls","mcafee","mediatek","medtronic","mendix","meta-advisories","metasploit","microsoft-csaf","microsoft-cvrf","microsoft-driver-block-list","microsoft-kb","mikrotik","mindray","misp-threat-actors","mitel","mitre-attack-cve","mitre-cvelist-v5","mitsubishi-electric","mongodb","moxa","mozilla","naver","ncsc","ncsc-cves","nec","nessus","netapp","netatalk","netgate","netgear","netskope","nexpose","nginx","nhs","ni","nist-nvd","nist-nvd2","nist-nvd2-cpematch","nist-nvd2-sources","node-security","nodejs","nokia","notepadplusplus","nozomi","npm","ntp","nuclei","nuget","nvd-cpe-dictionary","nvidia","nz-advisories","octopus-deploy","okta","omron","one-e","opam","open-cvdb","openbsd","opengear","openjdk","openssh","openssl-secadv","openstack","openwrt","oracle","oracle-cpu","oracle-cpu-csaf","osv","otrs","owncloud","packetstorm","palantir","palo-alto","panasonic","papercut","pega","philips","phoenix-contact","php-my-admin","pkcert","postgressql","powerdns","progress","proofpoint","ptc","pub","pure-storage","pypa-advisories","pypi","qnap","qqids","qualcomm","qualys","qualys-qids","qubes-qsb","ransomware","red-lion","redhat","redhat-cves","renesas","revive","roche","rockwell","rocky","rocky-errata","rocky-purls","rsync","ruckus","rustsec-advisories","sacert","safran","saint","salesforce","samba","sandisk","sans-dshield","sap","schneider-electric","schutzwerk","sec-consult","securitylab","seebug","sel","sentinelone","servicenow","shadowserver-exploited","shielder","sick","siemens","sierra-wireless","sigmahq-sigma-rules","singcert","sitecore","slackware","solarwinds","solr","sonatype","sonicwall","spacelabs-healthcare","splunk","spring","ssd","stormshield","stryker","sudo","suse","suse-security","swift","swisslog-healthcare","symfony","synacktiv","syncrosoft","synology","syss","tailscale","teamviewer","tenable-research-advisories","tencent","thales","themissinglink","thermo-fisher","threat-actors","ti","tibco","tp-link","trane-technology","trendmicro","trustwave","twcert","ubiquiti","ubuntu","ubuntu-purls","unify","unisoc","usd","usom","vandyke","vapidlabs","vc-cpe-dictionary","vde","veeam","veritas","virtuozzo","vlc","vmware","voidsec","vulncheck","vulncheck-canaries","vulncheck-canaries-10d","vulncheck-canaries-30d","vulncheck-canaries-3d","vulncheck-canaries-90d","vulncheck-config","vulncheck-cvelist-v5","vulncheck-kev","vulncheck-nvd","vulncheck-nvd2","vulnerability-aliases","vulnrichment","vyaire","watchguard","whatsapp","wibu","wireshark","with-secure","wolfi","wolfssl","wordfence","xen","xerox","xiaomi","xylem","yamaha","yokogawa","yubico","zdi","zebra","zeroscience","zimbra","zoom","zscaler","zuso","zyxel"],"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-v3controllers_BackupResponseData-v3controllers_BackupResponseMetadata"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Retrieve a list of backups by index","tags":["endpoints"]}},"/cpe":{"get":{"description":"Based on the specified CPE (Common Platform Enumeration) URI string, this endpoint will return a list of vulnerabilities that are related to the package. We support v2.2 and v2.3","parameters":[{"description":"CPE designation to lookup","in":"query","name":"cpe","required":true,"schema":{"type":"string"}},{"description":"Filter by vulnerability status (true/false). Defaults to false if not provided.","in":"query","name":"isVulnerable","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_string-v3controllers_ResponseMetadata"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return CVE 's associated with a specific NIST CPE","tags":["endpoints"]}},"/entitlements":{"get":{"description":"Retrieve entitlements for the current user","responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.Entitlements"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Retrieve user entitlements","tags":["endpoints"]}},"/index":{"get":{"description":"Return a list of available indexes with endpoint links that the user has access to","responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.Response-array_params_IndexList"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"oneOf":[{"type":"string"},{"type":"string"}]}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return a list of available indexes with endpoint links","tags":["endpoints"]}},"/index/7zip":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the 7zip index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** 7Zip Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/7zip?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/7zip?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SevenZip-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"7zip\"","tags":["indices"]}},"/index/a10":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the a10 index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** A10 Networks Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/a10?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/a10?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_A10-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"a10\"","tags":["indices"]}},"/index/abb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the abb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** ABB Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/abb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/abb?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ABBAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"abb\"","tags":["indices"]}},"/index/abbott":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the abbott index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Abbott Product Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/abbott?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/abbott?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Abbott-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"abbott\"","tags":["indices"]}},"/index/absolute":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the absolute index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Absolute Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/absolute?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/absolute?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Absolute-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"absolute\"","tags":["indices"]}},"/index/acronis":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the acronis index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Acronis Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/acronis?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/acronis?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Acronis-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"acronis\"","tags":["indices"]}},"/index/adobe":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the adobe index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Adobe Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/adobe?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/adobe?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AdobeAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"adobe\"","tags":["indices"]}},"/index/advantech":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the advantech index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Advantech Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/advantech?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/advantech?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Advantech-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"advantech\"","tags":["indices"]}},"/index/advisories":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the advisories index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/advisories?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/advisories?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AdvisoryRecord-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"advisories\"","tags":["indices"]}},"/index/aix":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the aix index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AIX Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/aix?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/aix?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AIX-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"aix\"","tags":["indices"]}},"/index/aleph-research":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the aleph-research index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Aleph Research Vulnerability Reports\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/aleph-research?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/aleph-research?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AlephResearch-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"aleph-research\"","tags":["indices"]}},"/index/alibaba-advs":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the alibaba-advs index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Alibaba Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/alibaba-advs?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/alibaba-advs?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Alibaba-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"alibaba-advs\"","tags":["indices"]}},"/index/alma":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the alma index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Alma Linux Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/alma?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/alma?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AlmaLinuxUpdate-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"alma\"","tags":["indices"]}},"/index/alpine":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the alpine index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Alpine Linux Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/alpine?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/alpine?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AlpineLinuxSecDB-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"alpine\"","tags":["indices"]}},"/index/alpine-purls":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the alpine-purls index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Alpine Purls\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/alpine-purls?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/alpine-purls?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_purls_PurlResponse-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"alpine-purls\"","tags":["indices"]}},"/index/amazon":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the amazon index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Amazon Linux Security Center\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/amazon?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/amazon?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Update-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"amazon\"","tags":["indices"]}},"/index/amazon-cve":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the amazon-cve index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Amazon CVEs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/amazon-cve?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/amazon-cve?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AmazonCVE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"amazon-cve\"","tags":["indices"]}},"/index/amd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the amd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AMD Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/amd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/amd?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AMD-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"amd\"","tags":["indices"]}},"/index/ami":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ami index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AMI Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ami?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ami?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AMI-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ami\"","tags":["indices"]}},"/index/anchore-nvd-override":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the anchore-nvd-override index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Anchore NVD Data Overrides\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/anchore-nvd-override?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/anchore-nvd-override?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AnchoreNVDOverride-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"anchore-nvd-override\"","tags":["indices"]}},"/index/android":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the android index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Android Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/android?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/android?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AndroidAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"android\"","tags":["indices"]}},"/index/apache-activemq":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-activemq index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache ActiveMQ Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-activemq?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-activemq?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheActiveMQ-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-activemq\"","tags":["indices"]}},"/index/apache-archiva":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-archiva index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Archiva Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-archiva?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-archiva?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheArchiva-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-archiva\"","tags":["indices"]}},"/index/apache-arrow":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-arrow index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Arrow Security Issues\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-arrow?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-arrow?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheArrow-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-arrow\"","tags":["indices"]}},"/index/apache-camel":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-camel index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Camel Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-camel?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-camel?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheCamel-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-camel\"","tags":["indices"]}},"/index/apache-commons":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-commons index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Commons Known Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-commons?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-commons?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheCommons-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-commons\"","tags":["indices"]}},"/index/apache-couchdb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-couchdb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache CouchDB Security Issues\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-couchdb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-couchdb?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheCouchDB-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-couchdb\"","tags":["indices"]}},"/index/apache-flink":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-flink index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Flink Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-flink?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-flink?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheFlink-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-flink\"","tags":["indices"]}},"/index/apache-guacamole":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-guacamole index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Guacamole Security Reports\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-guacamole?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-guacamole?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheGuacamole-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-guacamole\"","tags":["indices"]}},"/index/apache-hadoop":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-hadoop index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Hadoop CVEs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-hadoop?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-hadoop?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheHadoop-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-hadoop\"","tags":["indices"]}},"/index/apache-http":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-http index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache HTTP Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-http?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-http?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheHTTP-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-http\"","tags":["indices"]}},"/index/apache-jspwiki":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-jspwiki index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache JSPWiki CVEs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-jspwiki?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-jspwiki?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheJSPWiki-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-jspwiki\"","tags":["indices"]}},"/index/apache-kafka":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-kafka index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Kafka Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-kafka?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-kafka?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheKafka-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-kafka\"","tags":["indices"]}},"/index/apache-loggingservices":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-loggingservices index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Logging Services Known Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-loggingservices?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-loggingservices?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheLoggingServices-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-loggingservices\"","tags":["indices"]}},"/index/apache-nifi":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-nifi index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache NiFi Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-nifi?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-nifi?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheNiFi-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-nifi\"","tags":["indices"]}},"/index/apache-ofbiz":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-ofbiz index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache OFBiz Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-ofbiz?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-ofbiz?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheOFBiz-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-ofbiz\"","tags":["indices"]}},"/index/apache-openmeetings":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-openmeetings index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache OpenMeetings Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-openmeetings?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-openmeetings?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheOpenMeetings-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-openmeetings\"","tags":["indices"]}},"/index/apache-openoffice":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-openoffice index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache OpenOffice Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-openoffice?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-openoffice?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheOpenOffice-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-openoffice\"","tags":["indices"]}},"/index/apache-pulsar":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-pulsar index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Pulsar Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-pulsar?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-pulsar?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApachePulsar-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-pulsar\"","tags":["indices"]}},"/index/apache-shiro":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-shiro index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Shiro Vulnerability Reports\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-shiro?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-shiro?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheShiro-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-shiro\"","tags":["indices"]}},"/index/apache-spark":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-spark index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Spark Known Security Issues\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-spark?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-spark?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheSpark-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-spark\"","tags":["indices"]}},"/index/apache-struts":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-struts index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Struts Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-struts?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-struts?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheStruts-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-struts\"","tags":["indices"]}},"/index/apache-subversion":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-subversion index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Subversion Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-subversion?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-subversion?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheSubversion-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-subversion\"","tags":["indices"]}},"/index/apache-superset":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-superset index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Superset CVEs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-superset?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-superset?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheSuperset-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-superset\"","tags":["indices"]}},"/index/apache-tomcat":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-tomcat index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Tomcat Security Vunlnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-tomcat?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-tomcat?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheTomcat-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-tomcat\"","tags":["indices"]}},"/index/apache-zookeeper":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-zookeeper index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache ZooKeeper Vulnerability Reports\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-zookeeper?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-zookeeper?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheZooKeeper-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-zookeeper\"","tags":["indices"]}},"/index/appcheck":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the appcheck index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AppCheck Security Alerts\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/appcheck?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/appcheck?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AppCheck-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"appcheck\"","tags":["indices"]}},"/index/appgate":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the appgate index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Appgate SDP Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/appgate?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/appgate?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Appgate-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"appgate\"","tags":["indices"]}},"/index/apple":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apple index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apple Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apple?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apple?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AppleAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apple\"","tags":["indices"]}},"/index/arch":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the arch index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Arch Linux\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/arch?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/arch?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ArchIssue-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"arch\"","tags":["indices"]}},"/index/arista":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the arista index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Arista Networks Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/arista?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/arista?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Arista-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"arista\"","tags":["indices"]}},"/index/aruba":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the aruba index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Aruba Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/aruba?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/aruba?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Aruba-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"aruba\"","tags":["indices"]}},"/index/asrg":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the asrg index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** ASRG Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/asrg?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/asrg?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ASRG-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"asrg\"","tags":["indices"]}},"/index/assetnote":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the assetnote index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AssetNote Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/assetnote?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/assetnote?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AssetNote-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"assetnote\"","tags":["indices"]}},"/index/asterisk":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the asterisk index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Asterisk Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/asterisk?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/asterisk?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Asterisk-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"asterisk\"","tags":["indices"]}},"/index/astra":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the astra index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Astra Linux Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/astra?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/astra?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Astra-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"astra\"","tags":["indices"]}},"/index/asus":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the asus index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** ASUSTek Computer Inc.\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/asus?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/asus?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Asus-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"asus\"","tags":["indices"]}},"/index/atlassian":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the atlassian index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Atlassian Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/atlassian?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/atlassian?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AtlassianAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"atlassian\"","tags":["indices"]}},"/index/atlassian-vulns":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the atlassian-vulns index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Atlassian Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/atlassian-vulns?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/atlassian-vulns?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AtlassianVuln-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"atlassian-vulns\"","tags":["indices"]}},"/index/atredis":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the atredis index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Atredis Partners Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/atredis?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/atredis?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Atredis-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"atredis\"","tags":["indices"]}},"/index/audiocodes":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the audiocodes index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AudioCodes Product Notices\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/audiocodes?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/audiocodes?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Audiocodes-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"audiocodes\"","tags":["indices"]}},"/index/auscert":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the auscert index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AusCERT Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/auscert?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/auscert?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AusCert-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"auscert\"","tags":["indices"]}},"/index/autodesk":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the autodesk index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Autodesk Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/autodesk?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/autodesk?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Autodesk-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"autodesk\"","tags":["indices"]}},"/index/avaya":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the avaya index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Avaya Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/avaya?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/avaya?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Avaya-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"avaya\"","tags":["indices"]}},"/index/aveva":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the aveva index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AVEVA Group Limited\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/aveva?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/aveva?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AVEVAAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"aveva\"","tags":["indices"]}},"/index/avidml-advs":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the avidml-advs index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AI Vulnerability Database\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/avidml-advs?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/avidml-advs?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AVIDMLAdvs-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"avidml-advs\"","tags":["indices"]}},"/index/avigilon":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the avigilon index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Avigilon Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/avigilon?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/avigilon?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Avigilon-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"avigilon\"","tags":["indices"]}},"/index/aws":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the aws index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AWS Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/aws?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/aws?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AWS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"aws\"","tags":["indices"]}},"/index/axis":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the axis index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Axis OS Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/axis?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/axis?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Axis-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"axis\"","tags":["indices"]}},"/index/azul":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the azul index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Azul Common Vulnerabilities and Exposures\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/azul?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/azul?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Azul-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"azul\"","tags":["indices"]}},"/index/bandr":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the bandr index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** B\u0026R Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/bandr?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/bandr?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Bandr-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"bandr\"","tags":["indices"]}},"/index/baxter":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the baxter index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Baxter Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/baxter?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/baxter?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BaxterAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"baxter\"","tags":["indices"]}},"/index/bbraun":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the bbraun index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** B. Braun Medical Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/bbraun?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/bbraun?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BBraunAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"bbraun\"","tags":["indices"]}},"/index/bd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the bd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Becton Dickinson Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/bd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/bd?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BectonDickinsonAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"bd\"","tags":["indices"]}},"/index/bdu":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the bdu index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** BDU Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/bdu?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/bdu?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BDUAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"bdu\"","tags":["indices"]}},"/index/beckhoff":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the beckhoff index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Beckhoff Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/beckhoff?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/beckhoff?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BeckhoffAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"beckhoff\"","tags":["indices"]}},"/index/beckman-coulter":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the beckman-coulter index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Beckman Coulter Product Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/beckman-coulter?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/beckman-coulter?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BeckmanCoulter-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"beckman-coulter\"","tags":["indices"]}},"/index/belden":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the belden index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Belden Security Bulletins Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/belden?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/belden?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BeldenAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"belden\"","tags":["indices"]}},"/index/beyond-trust":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the beyond-trust index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Beyond Trust Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/beyond-trust?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/beyond-trust?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BeyondTrust-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"beyond-trust\"","tags":["indices"]}},"/index/binarly":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the binarly index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Binarly Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/binarly?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/binarly?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Binarly-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"binarly\"","tags":["indices"]}},"/index/bitdefender":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the bitdefender index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Bitdefender Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/bitdefender?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/bitdefender?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BitDefender-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"bitdefender\"","tags":["indices"]}},"/index/blackberry":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the blackberry index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** BlackBerry Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/blackberry?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/blackberry?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BlackBerry-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"blackberry\"","tags":["indices"]}},"/index/bls":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the bls index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Black Lantern Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/bls?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/bls?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BLS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"bls\"","tags":["indices"]}},"/index/bosch":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the bosch index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Bosch Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/bosch?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/bosch?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BoschAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"bosch\"","tags":["indices"]}},"/index/boston-scientific":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the boston-scientific index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Boston Scientific Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/boston-scientific?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/boston-scientific?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BostonScientificAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"boston-scientific\"","tags":["indices"]}},"/index/botnets":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the botnets index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Botnets\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/botnets?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/botnets?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Botnet-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"botnets\"","tags":["indices"]}},"/index/ca-cyber-centre":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ca-cyber-centre index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Canadian Centre for Cyber Security Alerts and Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ca-cyber-centre?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ca-cyber-centre?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CACyberCentreAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ca-cyber-centre\"","tags":["indices"]}},"/index/canvas":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the canvas index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CANVAS Exploit Packs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/canvas?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/canvas?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CanvasExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"canvas\"","tags":["indices"]}},"/index/carestream":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the carestream index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Carestream Product Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/carestream?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/carestream?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CarestreamAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"carestream\"","tags":["indices"]}},"/index/cargo":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cargo index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cargo (Rust) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cargo?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cargo?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cargo\"","tags":["indices"]}},"/index/carrier":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the carrier index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Carrier Product Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/carrier?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/carrier?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Carrier-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"carrier\"","tags":["indices"]}},"/index/cbl-mariner":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cbl-mariner index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CBL-Mariner Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cbl-mariner?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cbl-mariner?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CBLMariner-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cbl-mariner\"","tags":["indices"]}},"/index/centos":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the centos index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CentOS Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/centos?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/centos?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CESA-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"centos\"","tags":["indices"]}},"/index/cert-be":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cert-be index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cert BE Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cert-be?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cert-be?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CertBE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cert-be\"","tags":["indices"]}},"/index/cert-in":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cert-in index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CERT IN Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cert-in?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cert-in?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CertIN-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cert-in\"","tags":["indices"]}},"/index/cert-ir-security-alerts":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cert-ir-security-alerts index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cert IR Security Warnings\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cert-ir-security-alerts?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cert-ir-security-alerts?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CertIRSecurityAlert-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cert-ir-security-alerts\"","tags":["indices"]}},"/index/cert-se":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cert-se index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cert SE Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cert-se?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cert-se?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CertSE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cert-se\"","tags":["indices"]}},"/index/cert-ua":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cert-ua index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cert UA Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cert-ua?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cert-ua?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CertUA-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cert-ua\"","tags":["indices"]}},"/index/certeu":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the certeu index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CERT-EU The Computer Emergency Response Team for the EU Institutions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/certeu?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/certeu?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CERTEUAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"certeu\"","tags":["indices"]}},"/index/certfr":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the certfr index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cert FR Security Alerts\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/certfr?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/certfr?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CertFRAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"certfr\"","tags":["indices"]}},"/index/chainguard":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the chainguard index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** ChainGuard Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/chainguard?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/chainguard?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ChainGuard-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"chainguard\"","tags":["indices"]}},"/index/checkpoint":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the checkpoint index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CheckPoint Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/checkpoint?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/checkpoint?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CheckPoint-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"checkpoint\"","tags":["indices"]}},"/index/chrome":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the chrome index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Google Chrome Release Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/chrome?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/chrome?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Chrome-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"chrome\"","tags":["indices"]}},"/index/ciena":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ciena index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Ciena\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ciena?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ciena?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Ciena-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ciena\"","tags":["indices"]}},"/index/cisa-alerts":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cisa-alerts index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CISA Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-alerts?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cisa-alerts?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CISAAlert-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cisa-alerts\"","tags":["indices"]}},"/index/cisa-csaf":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cisa-csaf index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CISA Security Advisories - CSAF\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-csaf?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cisa-csaf?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CisaCsafAdv-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cisa-csaf\"","tags":["indices"]}},"/index/cisa-kev":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cisa-kev index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CISA KEV (Known Exploited Vulnerabilities)\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-kev?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cisa-kev?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_KEVCatalogVulnerability-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cisa-kev\"","tags":["indices"]}},"/index/cisco":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cisco index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cisco Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cisco?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cisco?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CiscoAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cisco\"","tags":["indices"]}},"/index/cisco-csaf":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cisco-csaf index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cisco CSAF\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-csaf?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cisco-csaf?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CiscoCSAF-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cisco-csaf\"","tags":["indices"]}},"/index/cisco-known-good-values":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cisco-known-good-values index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cisco Known Good Values\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-known-good-values?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cisco-known-good-values?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CiscoKnownGoodValue-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cisco-known-good-values\"","tags":["indices"]}},"/index/cisco-talos":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cisco-talos index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cisco Talos Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-talos?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cisco-talos?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_TalosAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cisco-talos\"","tags":["indices"]}},"/index/citrix":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the citrix index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Citrix Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/citrix?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/citrix?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CitrixAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"citrix\"","tags":["indices"]}},"/index/claroty":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the claroty index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Team 82: The Claroty Research Team\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/claroty?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/claroty?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ClarotyVulnerability-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"claroty\"","tags":["indices"]}},"/index/cloudbees":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cloudbees index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CloudBees Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cloudbees?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cloudbees?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CloudBees-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cloudbees\"","tags":["indices"]}},"/index/cloudvulndb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cloudvulndb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CloudVulnDB\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cloudvulndb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cloudvulndb?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CloudVulnDBAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cloudvulndb\"","tags":["indices"]}},"/index/cnnvd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cnnvd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** The Chinese National Vulnerability Database\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cnnvd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cnnvd?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CNNVDEntryJSON-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cnnvd\"","tags":["indices"]}},"/index/cnvd-bulletins":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cnvd-bulletins index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CNVD Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cnvd-bulletins?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cnvd-bulletins?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CNVDBulletin-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cnvd-bulletins\"","tags":["indices"]}},"/index/cnvd-flaws":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cnvd-flaws index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CNVD Flaws\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cnvd-flaws?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cnvd-flaws?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CNVDFlaw-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cnvd-flaws\"","tags":["indices"]}},"/index/cocoapods":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cocoapods index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CocoaPods packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cocoapods?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cocoapods?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cocoapods\"","tags":["indices"]}},"/index/codesys":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the codesys index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Codesys Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/codesys?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/codesys?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CodesysAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"codesys\"","tags":["indices"]}},"/index/commvault":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the commvault index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Commvault Cloud Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/commvault?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/commvault?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CommVault-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"commvault\"","tags":["indices"]}},"/index/compass-security":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the compass-security index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Compass Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/compass-security?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/compass-security?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CompassSecurity-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"compass-security\"","tags":["indices"]}},"/index/composer":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the composer index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** PHP Composer packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/composer?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/composer?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"composer\"","tags":["indices"]}},"/index/conan":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the conan index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** C/C++ packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/conan?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/conan?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"conan\"","tags":["indices"]}},"/index/coreimpact":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the coreimpact index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Core Impact\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/coreimpact?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/coreimpact?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CoreImpactExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"coreimpact\"","tags":["indices"]}},"/index/cpe-vulnerable":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cpe-vulnerable index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Unrolled VulnCheck CPEs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cpe-vulnerable?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cpe-vulnerable?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VCVulnerableCPEs-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cpe-vulnerable\"","tags":["indices"]}},"/index/crestron":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the crestron index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Crestron Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/crestron?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/crestron?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Crestron-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"crestron\"","tags":["indices"]}},"/index/crowdsec":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the crowdsec index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CrowdSec Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/crowdsec?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/crowdsec?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CrowdSec-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"crowdsec\"","tags":["indices"]}},"/index/curl":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the curl index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Curl CVEs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/curl?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/curl?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Curl-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"curl\"","tags":["indices"]}},"/index/cwe":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cwe index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Common Weakness Enumeration Database\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cwe?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cwe?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_CWE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cwe\"","tags":["indices"]}},"/index/dahua":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the dahua index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Dahua Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/dahua?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/dahua?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Dahua-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"dahua\"","tags":["indices"]}},"/index/danfoss":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the danfoss index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Danfoss Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/danfoss?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/danfoss?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Danfoss-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"danfoss\"","tags":["indices"]}},"/index/dassault":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the dassault index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Dassault Systèmes Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/dassault?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/dassault?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Dassault-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"dassault\"","tags":["indices"]}},"/index/debian":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the debian index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Debian Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/debian?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/debian?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VulnerableDebianPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"debian\"","tags":["indices"]}},"/index/debian-dsa":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the debian-dsa index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Debian Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/debian-dsa?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/debian-dsa?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_DebianSecurityAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"debian-dsa\"","tags":["indices"]}},"/index/debian-packages":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the debian-packages index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Debian Packages\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/debian-packages?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/debian-packages?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_DistroPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"debian-packages\"","tags":["indices"]}},"/index/debian-purls":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the debian-purls index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Debian PURLs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/debian-purls?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/debian-purls?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_purls_PurlResponse-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"debian-purls\"","tags":["indices"]}},"/index/dell":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the dell index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Dell Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/dell?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/dell?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Dell-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"dell\"","tags":["indices"]}},"/index/delta":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the delta index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Delta Controls Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/delta?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/delta?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_DeltaAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"delta\"","tags":["indices"]}},"/index/dfn-cert":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the dfn-cert index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** DFN-CERT Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/dfn-cert?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/dfn-cert?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_DFNCert-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"dfn-cert\"","tags":["indices"]}},"/index/django":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the django index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Django Security Issues\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/django?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/django?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Django-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"django\"","tags":["indices"]}},"/index/dlink":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the dlink index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** DLink Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/dlink?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/dlink?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_DLink-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"dlink\"","tags":["indices"]}},"/index/dnn":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the dnn index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** DNN Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/dnn?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/dnn?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_DNN-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"dnn\"","tags":["indices"]}},"/index/dotcms":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the dotcms index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** DotCMS Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/dotcms?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/dotcms?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_DotCMS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"dotcms\"","tags":["indices"]}},"/index/dragos":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the dragos index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Dragos Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/dragos?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/dragos?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_DragosAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"dragos\"","tags":["indices"]}},"/index/draytek":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the draytek index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** DrayTek Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/draytek?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/draytek?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Draytek-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"draytek\"","tags":["indices"]}},"/index/drupal":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the drupal index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Drupal Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/drupal?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/drupal?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Drupal-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"drupal\"","tags":["indices"]}},"/index/eaton":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the eaton index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Eaton Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/eaton?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/eaton?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_EatonAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"eaton\"","tags":["indices"]}},"/index/elastic":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the elastic index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Elastic Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/elastic?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/elastic?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Elastic-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"elastic\"","tags":["indices"]}},"/index/elspec":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the elspec index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Elspec Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/elspec?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/elspec?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Elspec-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"elspec\"","tags":["indices"]}},"/index/emerging-threats-snort":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the emerging-threats-snort index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Emerging Threats Snort\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/emerging-threats-snort?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/emerging-threats-snort?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_EmergingThreatsSnort-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"emerging-threats-snort\"","tags":["indices"]}},"/index/emerson":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the emerson index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Emerson Cyber Security Notifications\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/emerson?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/emerson?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_EmersonAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"emerson\"","tags":["indices"]}},"/index/endoflife":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the endoflife index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** End Of Life\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/endoflife?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/endoflife?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_EndOfLife-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"endoflife\"","tags":["indices"]}},"/index/endress":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the endress index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Endress \u0026 Hauser Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/endress?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/endress?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Endress-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"endress\"","tags":["indices"]}},"/index/eol":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the eol index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck EOL Coverage\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/eol?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/eol?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_EOLReleaseData-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"eol\"","tags":["indices"]}},"/index/eol-alibaba":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the eol-alibaba index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Alibaba EOL\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/eol-alibaba?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/eol-alibaba?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_EOLAlibaba-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"eol-alibaba\"","tags":["indices"]}},"/index/eol-microsoft":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the eol-microsoft index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Microsoft EOL\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/eol-microsoft?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/eol-microsoft?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_EOLMicrosoft-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"eol-microsoft\"","tags":["indices"]}},"/index/epss":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the epss index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** EPSS Data\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/epss?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/epss?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_EPSSData-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"epss\"","tags":["indices"]}},"/index/euvd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the euvd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** European Union Vulnerability Database\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/euvd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/euvd?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_EUVD-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"euvd\"","tags":["indices"]}},"/index/exodus-intel":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the exodus-intel index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Exodus Intelligence Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/exodus-intel?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/exodus-intel?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ExodusIntel-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"exodus-intel\"","tags":["indices"]}},"/index/exploit-chains":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the exploit-chains index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Exploit Chains\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/exploit-chains?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/exploit-chains?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_ExploitChain-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"exploit-chains\"","tags":["indices"]}},"/index/exploitdb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the exploitdb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** The Exploit Database\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/exploitdb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/exploitdb?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ExploitDBExploitv2-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"exploitdb\"","tags":["indices"]}},"/index/exploits":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the exploits index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Exploit Intelligence Data\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/exploits?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/exploits?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_ExploitV3Result-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"exploits\"","tags":["indices"]}},"/index/exploits-changelog":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the exploits-changelog index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Changelog for VC Exploits Data\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/exploits-changelog?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/exploits-changelog?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_ExploitsChangelog-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"exploits-changelog\"","tags":["indices"]}},"/index/f-secure":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the f-secure index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** F-Secure Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/f-secure?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/f-secure?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_FSecure-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"f-secure\"","tags":["indices"]}},"/index/f5":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the f5 index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** F5 Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/f5?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/f5?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_F5-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"f5\"","tags":["indices"]}},"/index/fanuc":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the fanuc index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Fanuc Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/fanuc?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/fanuc?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Fanuc-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"fanuc\"","tags":["indices"]}},"/index/fastly":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the fastly index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Fastly Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/fastly?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/fastly?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Fastly-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"fastly\"","tags":["indices"]}},"/index/fedora":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the fedora index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Fedora Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/fedora?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/fedora?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Update-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"fedora\"","tags":["indices"]}},"/index/festo":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the festo index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Festo Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/festo?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/festo?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Festo-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"festo\"","tags":["indices"]}},"/index/filecloud":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the filecloud index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** FileCloud Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/filecloud?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/filecloud?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_FileCloud-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"filecloud\"","tags":["indices"]}},"/index/filezilla":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the filezilla index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** FileZilla Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/filezilla?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/filezilla?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_FileZilla-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"filezilla\"","tags":["indices"]}},"/index/flatt-security":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the flatt-security index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Flatt Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/flatt-security?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/flatt-security?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_FlattSecurity-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"flatt-security\"","tags":["indices"]}},"/index/forgerock":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the forgerock index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** ForgeRock Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/forgerock?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/forgerock?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ForgeRock-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"forgerock\"","tags":["indices"]}},"/index/fortinet":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the fortinet index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** FortiGuard Fortinet\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/fortinet?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/fortinet?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_FortinetAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"fortinet\"","tags":["indices"]}},"/index/fortinet-ips":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the fortinet-ips index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Fortinet Labs Threat Encyclopedia\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/fortinet-ips?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/fortinet-ips?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_FortinetIPS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"fortinet-ips\"","tags":["indices"]}},"/index/foxit":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the foxit index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Foxit Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/foxit?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/foxit?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Foxit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"foxit\"","tags":["indices"]}},"/index/freebsd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the freebsd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** FreeBSD Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/freebsd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/freebsd?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Advisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"freebsd\"","tags":["indices"]}},"/index/fresenius":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the fresenius index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Fresenius Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/fresenius?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/fresenius?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Fresenius-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"fresenius\"","tags":["indices"]}},"/index/gallagher":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gallagher index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Gallagher Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gallagher?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gallagher?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Gallagher-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"gallagher\"","tags":["indices"]}},"/index/gcp":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gcp index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GCP Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gcp?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gcp?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GCP-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"gcp\"","tags":["indices"]}},"/index/ge-gas":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ge-gas index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GE Gas Product Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ge-gas?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ge-gas?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GEGas-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ge-gas\"","tags":["indices"]}},"/index/ge-healthcare":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ge-healthcare index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GE Healthcare Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ge-healthcare?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ge-healthcare?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GEHealthcareAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ge-healthcare\"","tags":["indices"]}},"/index/gem":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gem index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Ruby (gem) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gem?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gem?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"gem\"","tags":["indices"]}},"/index/gen":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gen index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Gen Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gen?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gen?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Gen-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"gen\"","tags":["indices"]}},"/index/genetec":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the genetec index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Genetec Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/genetec?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/genetec?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Genetec-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"genetec\"","tags":["indices"]}},"/index/ghsa":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ghsa index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GHSA\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ghsa?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ghsa?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GHSA-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ghsa\"","tags":["indices"]}},"/index/gigabyte":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gigabyte index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GIGABYTE Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gigabyte?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gigabyte?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Gigabyte-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"gigabyte\"","tags":["indices"]}},"/index/gitee-exploits":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gitee-exploits index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Gitee Exploits\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gitee-exploits?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gitee-exploits?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GiteeExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"gitee-exploits\"","tags":["indices"]}},"/index/github-exploits":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the github-exploits index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GitHub Exploits\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/github-exploits?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/github-exploits?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GitHubExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"github-exploits\"","tags":["indices"]}},"/index/github-security-advisories":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the github-security-advisories index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Github Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/github-security-advisories?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/github-security-advisories?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GHAdvisoryJSONLean-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"github-security-advisories\"","tags":["indices"]}},"/index/gitlab-advisories-community":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gitlab-advisories-community index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GitLab Advisory Database\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gitlab-advisories-community?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gitlab-advisories-community?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GitlabAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"gitlab-advisories-community\"","tags":["indices"]}},"/index/gitlab-exploits":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gitlab-exploits index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GitLab Exploits\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gitlab-exploits?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gitlab-exploits?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GitLabExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"gitlab-exploits\"","tags":["indices"]}},"/index/glibc":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the glibc index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Glibc Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/glibc?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/glibc?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Glibc-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"glibc\"","tags":["indices"]}},"/index/gmo-cybersecurity":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gmo-cybersecurity index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GMO Cybersecurity Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gmo-cybersecurity?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gmo-cybersecurity?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GMOCyberSecurity-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"gmo-cybersecurity\"","tags":["indices"]}},"/index/gnutls":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gnutls index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GnuTLS Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gnutls?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gnutls?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GnuTLS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"gnutls\"","tags":["indices"]}},"/index/go-vulndb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the go-vulndb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Go Vulnerability Database\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/go-vulndb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/go-vulndb?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GoVulnJSON-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"go-vulndb\"","tags":["indices"]}},"/index/golang":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the golang index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Golang packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/golang?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/golang?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"golang\"","tags":["indices"]}},"/index/google-0day-itw":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the google-0day-itw index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Project Zero In the Wild Exploits\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/google-0day-itw?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/google-0day-itw?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ITWExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"google-0day-itw\"","tags":["indices"]}},"/index/google-container-optimized-os":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the google-container-optimized-os index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Container OS Release Notes\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/google-container-optimized-os?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/google-container-optimized-os?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ContainerOS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"google-container-optimized-os\"","tags":["indices"]}},"/index/grafana":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the grafana index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Grafana Labs Security Fixes\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/grafana?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/grafana?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Grafana-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"grafana\"","tags":["indices"]}},"/index/greynoise-metadata":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the greynoise-metadata index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GreyNoise Metadata\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/greynoise-metadata?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/greynoise-metadata?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GreyNoiseDetection-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"greynoise-metadata\"","tags":["indices"]}},"/index/hackage":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hackage index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Hackage (Haskell) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hackage?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hackage?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"hackage\"","tags":["indices"]}},"/index/hacktivity":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hacktivity index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Hackerone Hacktivity\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hacktivity?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hacktivity?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Hacktivity-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"hacktivity\"","tags":["indices"]}},"/index/harmonyos":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the harmonyos index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** HarmonyOS Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/harmonyos?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/harmonyos?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HarmonyOS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"harmonyos\"","tags":["indices"]}},"/index/hashicorp":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hashicorp index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** HashiCorp Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hashicorp?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hashicorp?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HashiCorp-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"hashicorp\"","tags":["indices"]}},"/index/haskell-sadb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the haskell-sadb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Haskell Security Advisory DB\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/haskell-sadb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/haskell-sadb?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HaskellSADBAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"haskell-sadb\"","tags":["indices"]}},"/index/hcl":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hcl index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** HCLSoftware Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hcl?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hcl?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HCL-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"hcl\"","tags":["indices"]}},"/index/hex":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hex index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Hex (Erlang) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hex?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hex?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"hex\"","tags":["indices"]}},"/index/hikvision":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hikvision index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Hikvision Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hikvision?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hikvision?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HIKVision-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"hikvision\"","tags":["indices"]}},"/index/hillrom":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hillrom index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Hillrom Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hillrom?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hillrom?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HillromAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"hillrom\"","tags":["indices"]}},"/index/hitachi":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hitachi index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Hitachi Software Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hitachi?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hitachi?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Hitachi-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"hitachi\"","tags":["indices"]}},"/index/hitachi-energy":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hitachi-energy index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Hitachi Energy Cybersecurity Advisories and Notifications\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hitachi-energy?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hitachi-energy?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HitachiEnergy-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"hitachi-energy\"","tags":["indices"]}},"/index/hkcert":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hkcert index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Hong Kong CERT Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hkcert?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hkcert?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HKCert-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"hkcert\"","tags":["indices"]}},"/index/hms":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hms index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** HMS (Hardware Meets Software) Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hms?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hms?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HMS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"hms\"","tags":["indices"]}},"/index/honeywell":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the honeywell index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Honeywell Cyber Security Notifications\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/honeywell?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/honeywell?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Honeywell-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"honeywell\"","tags":["indices"]}},"/index/hp":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hp index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** HP Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hp?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hp?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HP-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"hp\"","tags":["indices"]}},"/index/hpe":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hpe index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** HPE Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hpe?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hpe?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HPE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"hpe\"","tags":["indices"]}},"/index/huawei-euleros":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the huawei-euleros index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OpenEuler Operating System Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-euleros?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/huawei-euleros?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HuaweiEulerOS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"huawei-euleros\"","tags":["indices"]}},"/index/huawei-ips":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the huawei-ips index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Huawei IPS Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-ips?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/huawei-ips?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HuaweiIPS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"huawei-ips\"","tags":["indices"]}},"/index/huawei-psirt":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the huawei-psirt index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Huawei Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-psirt?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/huawei-psirt?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Huawei-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"huawei-psirt\"","tags":["indices"]}},"/index/iava":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the iava index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Information Assurance Vulnerability Alerts (IAVA)\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/iava?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/iava?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IAVA-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"iava\"","tags":["indices"]}},"/index/ibm":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ibm index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** IBM Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ibm?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ibm?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IBM-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ibm\"","tags":["indices"]}},"/index/idemia":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the idemia index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Idemia Product Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/idemia?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/idemia?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Idemia-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"idemia\"","tags":["indices"]}},"/index/igel":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the igel index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** IGEL Security Notices\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/igel?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/igel?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Igel-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"igel\"","tags":["indices"]}},"/index/il-alerts":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the il-alerts index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Gov.il Security Alerts\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/il-alerts?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/il-alerts?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IsraeliAlert-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"il-alerts\"","tags":["indices"]}},"/index/il-vulnerabilities":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the il-vulnerabilities index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Gov.il CVE Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/il-vulnerabilities?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/il-vulnerabilities?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IsraeliVulnerability-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"il-vulnerabilities\"","tags":["indices"]}},"/index/incibe":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the incibe index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Incibe CERT Early Warnings\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/incibe?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/incibe?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IncibeAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"incibe\"","tags":["indices"]}},"/index/initial-access":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the initial-access index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Initial Access Intelligence\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/initial-access?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/initial-access?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_InitialAccess-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"initial-access\"","tags":["indices"]}},"/index/initial-access-git":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the initial-access-git index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Initial Access Intelligence Git Backup for Subscribers\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/initial-access-git?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/initial-access-git?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_InitialAccess-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"initial-access-git\"","tags":["indices"]}},"/index/intel":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the intel index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Intel® Product Security Center Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/intel?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/intel?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Intel-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"intel\"","tags":["indices"]}},"/index/ipintel-10d":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ipintel-10d index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** 10-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-10d?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ipintel-10d?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify an IPv4 or IPv6 CIDR","in":"query","name":"cidr","schema":{"type":"string"}},{"description":"Autonomous system number","in":"query","name":"asn","schema":{"type":"string"}},{"description":"Country name ISO-3166?? format","in":"query","name":"country","schema":{"type":"string"}},{"description":"Country code in ISO-3166?? format","in":"query","name":"country_code","schema":{"type":"string"}},{"description":"Record type","in":"query","name":"id","schema":{"type":"string"}},{"description":"Kind of IpIntel Finding","in":"query","name":"kind","schema":{"type":"string"}},{"description":"Match a string in the list of hostnames","in":"query","name":"hostname","schema":{"type":"string"}},{"description":"Search for a string in the field describing the finding","in":"query","name":"matches","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IpIntelRecord-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ipintel-10d\"","tags":["indices"]}},"/index/ipintel-30d":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ipintel-30d index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** 30-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-30d?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ipintel-30d?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify an IPv4 or IPv6 CIDR","in":"query","name":"cidr","schema":{"type":"string"}},{"description":"Autonomous system number","in":"query","name":"asn","schema":{"type":"string"}},{"description":"Country name ISO-3166?? format","in":"query","name":"country","schema":{"type":"string"}},{"description":"Country code in ISO-3166?? format","in":"query","name":"country_code","schema":{"type":"string"}},{"description":"Record type","in":"query","name":"id","schema":{"type":"string"}},{"description":"Kind of IpIntel Finding","in":"query","name":"kind","schema":{"type":"string"}},{"description":"Match a string in the list of hostnames","in":"query","name":"hostname","schema":{"type":"string"}},{"description":"Search for a string in the field describing the finding","in":"query","name":"matches","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IpIntelRecord-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ipintel-30d\"","tags":["indices"]}},"/index/ipintel-3d":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ipintel-3d index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** 3-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-3d?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ipintel-3d?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify an IPv4 or IPv6 CIDR","in":"query","name":"cidr","schema":{"type":"string"}},{"description":"Autonomous system number","in":"query","name":"asn","schema":{"type":"string"}},{"description":"Country name ISO-3166?? format","in":"query","name":"country","schema":{"type":"string"}},{"description":"Country code in ISO-3166?? format","in":"query","name":"country_code","schema":{"type":"string"}},{"description":"Record type","in":"query","name":"id","schema":{"type":"string"}},{"description":"Kind of IpIntel Finding","in":"query","name":"kind","schema":{"type":"string"}},{"description":"Match a string in the list of hostnames","in":"query","name":"hostname","schema":{"type":"string"}},{"description":"Search for a string in the field describing the finding","in":"query","name":"matches","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IpIntelRecord-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ipintel-3d\"","tags":["indices"]}},"/index/ipintel-90d":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ipintel-90d index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** 90-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-90d?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ipintel-90d?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify an IPv4 or IPv6 CIDR","in":"query","name":"cidr","schema":{"type":"string"}},{"description":"Autonomous system number","in":"query","name":"asn","schema":{"type":"string"}},{"description":"Country name ISO-3166?? format","in":"query","name":"country","schema":{"type":"string"}},{"description":"Country code in ISO-3166?? format","in":"query","name":"country_code","schema":{"type":"string"}},{"description":"Record type","in":"query","name":"id","schema":{"type":"string"}},{"description":"Kind of IpIntel Finding","in":"query","name":"kind","schema":{"type":"string"}},{"description":"Match a string in the list of hostnames","in":"query","name":"hostname","schema":{"type":"string"}},{"description":"Search for a string in the field describing the finding","in":"query","name":"matches","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IpIntelRecord-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ipintel-90d\"","tags":["indices"]}},"/index/istio":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the istio index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Istio Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/istio?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/istio?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Istio-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"istio\"","tags":["indices"]}},"/index/ivanti":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ivanti index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Ivanti Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ivanti?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ivanti?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Ivanti-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ivanti\"","tags":["indices"]}},"/index/ivanti-rss":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ivanti-rss index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Ivanti Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ivanti-rss?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ivanti-rss?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IvantiRSS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ivanti-rss\"","tags":["indices"]}},"/index/jenkins":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the jenkins index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Jenkins Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/jenkins?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/jenkins?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Jenkins-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"jenkins\"","tags":["indices"]}},"/index/jetbrains":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the jetbrains index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** JetBrains Security Issues\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/jetbrains?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/jetbrains?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_JetBrains-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"jetbrains\"","tags":["indices"]}},"/index/jfrog":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the jfrog index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** JFrog Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/jfrog?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/jfrog?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_JFrog-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"jfrog\"","tags":["indices"]}},"/index/jnj":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the jnj index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Johnson \u0026 Johnson Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/jnj?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/jnj?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_JNJAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"jnj\"","tags":["indices"]}},"/index/johnson-controls":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the johnson-controls index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Security Advisories - Johnson Controls\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/johnson-controls?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/johnson-controls?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_JohnsonControls-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"johnson-controls\"","tags":["indices"]}},"/index/juniper":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the juniper index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Juniper Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/juniper?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/juniper?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Juniper-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"juniper\"","tags":["indices"]}},"/index/jvn":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the jvn index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Japan Vulnerability Notes\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/jvn?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/jvn?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_JVN-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"jvn\"","tags":["indices"]}},"/index/jvndb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the jvndb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Japan Vulnerability Notes\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/jvndb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/jvndb?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_JVNAdvisoryItem-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"jvndb\"","tags":["indices"]}},"/index/kaspersky-ics-cert":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the kaspersky-ics-cert index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Kaspersky ICS CERT\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/kaspersky-ics-cert?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/kaspersky-ics-cert?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_KasperskyICSCERTAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"kaspersky-ics-cert\"","tags":["indices"]}},"/index/korelogic":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the korelogic index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** KoreLogic Vulnerability Research and Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/korelogic?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/korelogic?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_KoreLogic-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"korelogic\"","tags":["indices"]}},"/index/krcert-security-notices":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the krcert-security-notices index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** KR-CERT Notices\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/krcert-security-notices?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/krcert-security-notices?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_KRCertAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"krcert-security-notices\"","tags":["indices"]}},"/index/krcert-vulnerabilities":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the krcert-vulnerabilities index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** KR-CERT Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/krcert-vulnerabilities?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/krcert-vulnerabilities?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_KRCertAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"krcert-vulnerabilities\"","tags":["indices"]}},"/index/kubernetes":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the kubernetes index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Kubernetes Security Issues\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/kubernetes?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/kubernetes?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_K8S-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"kubernetes\"","tags":["indices"]}},"/index/kunbus":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the kunbus index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** KunBus Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/kunbus?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/kunbus?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Kunbus-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"kunbus\"","tags":["indices"]}},"/index/lantronix":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the lantronix index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Lantronix Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/lantronix?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/lantronix?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Lantronix-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"lantronix\"","tags":["indices"]}},"/index/lenovo":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the lenovo index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Lenovo Product Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/lenovo?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/lenovo?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Lenovo-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"lenovo\"","tags":["indices"]}},"/index/lexmark":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the lexmark index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Lexmark Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/lexmark?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/lexmark?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_LexmarkAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"lexmark\"","tags":["indices"]}},"/index/lg":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the lg index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** LG Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/lg?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/lg?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_LG-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"lg\"","tags":["indices"]}},"/index/libre-office":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the libre-office index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Libre Office Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/libre-office?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/libre-office?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_LibreOffice-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"libre-office\"","tags":["indices"]}},"/index/linux":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the linux index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Linux Kernel Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/linux?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/linux?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Linux-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"linux\"","tags":["indices"]}},"/index/lol-advs":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the lol-advs index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Living Off the Land Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/lol-advs?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/lol-advs?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_LolAdvs-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"lol-advs\"","tags":["indices"]}},"/index/m-files":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the m-files index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** M-Files Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/m-files?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/m-files?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MFiles-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"m-files\"","tags":["indices"]}},"/index/macert":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the macert index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Moroccan CERT Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/macert?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/macert?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MACert-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"macert\"","tags":["indices"]}},"/index/malicious-packages":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the malicious-packages index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Malicious Packages\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-packages?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/malicious-packages?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MaliciousPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"malicious-packages\"","tags":["indices"]}},"/index/manageengine":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the manageengine index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** ManageEngine Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/manageengine?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/manageengine?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ManageEngineAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"manageengine\"","tags":["indices"]}},"/index/maven":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the maven index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Maven (Java) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/maven?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/maven?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"maven\"","tags":["indices"]}},"/index/mbed-tls":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mbed-tls index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Mbed TLS Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mbed-tls?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mbed-tls?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MbedTLS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"mbed-tls\"","tags":["indices"]}},"/index/mcafee":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mcafee index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** McAfee Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mcafee?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mcafee?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_McAfee-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"mcafee\"","tags":["indices"]}},"/index/mediatek":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mediatek index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** MediaTek Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mediatek?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mediatek?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Mediatek-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"mediatek\"","tags":["indices"]}},"/index/medtronic":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the medtronic index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Medtronic Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/medtronic?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/medtronic?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MedtronicAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"medtronic\"","tags":["indices"]}},"/index/mendix":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mendix index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Mendix Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mendix?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mendix?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Mendix-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"mendix\"","tags":["indices"]}},"/index/meta-advisories":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the meta-advisories index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Meta Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/meta-advisories?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/meta-advisories?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MetaAdvisories-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"meta-advisories\"","tags":["indices"]}},"/index/metasploit":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the metasploit index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Metasploit Modules\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/metasploit?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/metasploit?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MetasploitExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"metasploit\"","tags":["indices"]}},"/index/microsoft-csaf":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the microsoft-csaf index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Microsoft CSAF\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-csaf?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/microsoft-csaf?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MicrosoftCSAF-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"microsoft-csaf\"","tags":["indices"]}},"/index/microsoft-cvrf":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the microsoft-cvrf index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Microsoft Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-cvrf?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/microsoft-cvrf?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MicrosoftCVRF-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"microsoft-cvrf\"","tags":["indices"]}},"/index/microsoft-driver-block-list":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the microsoft-driver-block-list index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Microsoft's Vulnerable Drivers Blocklist\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-driver-block-list?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/microsoft-driver-block-list?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MicrosoftDriverBlockList-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"microsoft-driver-block-list\"","tags":["indices"]}},"/index/microsoft-kb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the microsoft-kb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Microsoft KB list by CVE\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-kb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/microsoft-kb?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MicrosoftKb-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"microsoft-kb\"","tags":["indices"]}},"/index/mikrotik":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mikrotik index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** MikroTik Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mikrotik?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mikrotik?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Mikrotik-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"mikrotik\"","tags":["indices"]}},"/index/mindray":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mindray index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Mindray Cybersecurity Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mindray?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mindray?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Mindray-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"mindray\"","tags":["indices"]}},"/index/misp-threat-actors":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the misp-threat-actors index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** MISP Threat Actors\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/misp-threat-actors?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/misp-threat-actors?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MispValue-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"misp-threat-actors\"","tags":["indices"]}},"/index/mitel":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mitel index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Mitel Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mitel?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mitel?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Mitel-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"mitel\"","tags":["indices"]}},"/index/mitre-attack-cve":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mitre-attack-cve index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** MITRE ATT\u0026CK Technique ID to CVE List\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mitre-attack-cve?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mitre-attack-cve?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_MitreAttackToCVE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"mitre-attack-cve\"","tags":["indices"]}},"/index/mitre-cvelist-v5":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mitre-cvelist-v5 index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** MITRE CVEList V5\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mitre-cvelist-v5?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mitre-cvelist-v5?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MitreCVEListV5-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"mitre-cvelist-v5\"","tags":["indices"]}},"/index/mitsubishi-electric":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mitsubishi-electric index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Mitsubishi Electric Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mitsubishi-electric?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mitsubishi-electric?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MitsubishiElectricAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"mitsubishi-electric\"","tags":["indices"]}},"/index/mongodb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mongodb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** MongoDB Security Alerts\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mongodb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mongodb?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MongoDB-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"mongodb\"","tags":["indices"]}},"/index/moxa":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the moxa index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Moxa Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/moxa?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/moxa?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MoxaAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"moxa\"","tags":["indices"]}},"/index/mozilla":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mozilla index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Mozilla Foundation Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mozilla?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mozilla?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MozillaAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"mozilla\"","tags":["indices"]}},"/index/naver":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the naver index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Naver Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/naver?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/naver?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Naver-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"naver\"","tags":["indices"]}},"/index/ncsc":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ncsc index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NCSC Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ncsc?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ncsc?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NCSC-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ncsc\"","tags":["indices"]}},"/index/ncsc-cves":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ncsc-cves index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NCSC CVEs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ncsc-cves?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ncsc-cves?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NCSCCVE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ncsc-cves\"","tags":["indices"]}},"/index/nec":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nec index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NEC Security Information Notices\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nec?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nec?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NEC-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"nec\"","tags":["indices"]}},"/index/nessus":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nessus index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Nessus Plugins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nessus?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nessus?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Nessus-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"nessus\"","tags":["indices"]}},"/index/netapp":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the netapp index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NetApp Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/netapp?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/netapp?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NetApp-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"netapp\"","tags":["indices"]}},"/index/netatalk":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the netatalk index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Netatalk Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/netatalk?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/netatalk?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Netatalk-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"netatalk\"","tags":["indices"]}},"/index/netgate":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the netgate index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Netgate Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/netgate?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/netgate?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Netgate-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"netgate\"","tags":["indices"]}},"/index/netgear":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the netgear index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NETGEAR Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/netgear?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/netgear?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Netgear-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"netgear\"","tags":["indices"]}},"/index/netskope":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the netskope index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Netskope Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/netskope?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/netskope?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Netskope-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"netskope\"","tags":["indices"]}},"/index/nexpose":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nexpose index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Nexpose Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nexpose?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nexpose?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Nexpose-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"nexpose\"","tags":["indices"]}},"/index/nginx":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nginx index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Nginx Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nginx?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nginx?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NginxAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"nginx\"","tags":["indices"]}},"/index/nhs":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nhs index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NHS Cyber Alerts\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nhs?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nhs?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NHS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"nhs\"","tags":["indices"]}},"/index/ni":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ni index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** National Instruments Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ni?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ni?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NI-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ni\"","tags":["indices"]}},"/index/nist-nvd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nist-nvd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NIST NVD 1.0 CVE data built from NIST NVD 2.0 CVE Data\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nist-nvd?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_CveItems-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"nist-nvd\"","tags":["indices"]}},"/index/nist-nvd2":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2 index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NIST NVD 2.0\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nist-nvd2?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_NVD20CVE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"nist-nvd2\"","tags":["indices"]}},"/index/nist-nvd2-cpematch":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2-cpematch index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NIST NVD 2.0 CPE Match\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2-cpematch?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nist-nvd2-cpematch?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_NVD20CPEMatch-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"nist-nvd2-cpematch\"","tags":["indices"]}},"/index/nist-nvd2-sources":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2-sources index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NIST NVD 2.0 Source Data\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2-sources?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nist-nvd2-sources?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NVD20Source-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"nist-nvd2-sources\"","tags":["indices"]}},"/index/node-security":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the node-security index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Node.js Security Working Group Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/node-security?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/node-security?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NodeSecurity-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"node-security\"","tags":["indices"]}},"/index/nodejs":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nodejs index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NodeJS Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nodejs?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nodejs?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NodeJS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"nodejs\"","tags":["indices"]}},"/index/nokia":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nokia index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Nokia Product Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nokia?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nokia?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Nokia-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"nokia\"","tags":["indices"]}},"/index/notepadplusplus":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the notepadplusplus index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Notepad++ Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/notepadplusplus?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/notepadplusplus?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NotePadPlusPlus-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"notepadplusplus\"","tags":["indices"]}},"/index/nozomi":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nozomi index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Nozomi Networks Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nozomi?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nozomi?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Nozomi-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"nozomi\"","tags":["indices"]}},"/index/npm":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the npm index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NPM (JS/TS) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/npm?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/npm?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"npm\"","tags":["indices"]}},"/index/ntp":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ntp index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NTP Security Issues\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ntp?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ntp?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NTP-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ntp\"","tags":["indices"]}},"/index/nuclei":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nuclei index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Nuclei Templates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nuclei?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nuclei?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Nuclei-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"nuclei\"","tags":["indices"]}},"/index/nuget":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nuget index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Nuget (C#/F#) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nuget?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nuget?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"nuget\"","tags":["indices"]}},"/index/nvd-cpe-dictionary":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nvd-cpe-dictionary index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NVD's CPE Dictionary\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nvd-cpe-dictionary?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nvd-cpe-dictionary?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NVDCPEDictionary-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"nvd-cpe-dictionary\"","tags":["indices"]}},"/index/nvidia":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nvidia index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NVIDIA Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nvidia?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nvidia?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SecurityBulletin-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"nvidia\"","tags":["indices"]}},"/index/nz-advisories":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nz-advisories index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CERT NZ Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nz-advisories?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nz-advisories?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NZAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"nz-advisories\"","tags":["indices"]}},"/index/octopus-deploy":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the octopus-deploy index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Octopus Deploy Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/octopus-deploy?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/octopus-deploy?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OctopusDeploy-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"octopus-deploy\"","tags":["indices"]}},"/index/okta":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the okta index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Okta Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/okta?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/okta?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Okta-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"okta\"","tags":["indices"]}},"/index/omron":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the omron index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Omron Vulnerability Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/omron?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/omron?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Omron-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"omron\"","tags":["indices"]}},"/index/one-e":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the one-e index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** 1E Published Product Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/one-e?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/one-e?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OneE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"one-e\"","tags":["indices"]}},"/index/opam":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the opam index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** opam (OCaml) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/opam?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/opam?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"opam\"","tags":["indices"]}},"/index/open-cvdb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the open-cvdb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** The Open Cloud Vulnerability \u0026 Security Issue Database\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/open-cvdb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/open-cvdb?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OpenCVDB-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"open-cvdb\"","tags":["indices"]}},"/index/openbsd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the openbsd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OpenBSD Security Fixes\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/openbsd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/openbsd?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OpenBSD-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"openbsd\"","tags":["indices"]}},"/index/opengear":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the opengear index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Opengear Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/opengear?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/opengear?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Opengear-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"opengear\"","tags":["indices"]}},"/index/openjdk":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the openjdk index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OpenJDK Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/openjdk?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/openjdk?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OpenJDK-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"openjdk\"","tags":["indices"]}},"/index/openssh":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the openssh index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OpenSSH Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/openssh?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/openssh?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OpenSSH-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"openssh\"","tags":["indices"]}},"/index/openssl-secadv":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the openssl-secadv index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OpenSSL Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/openssl-secadv?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/openssl-secadv?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OpenSSLSecAdv-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"openssl-secadv\"","tags":["indices"]}},"/index/openstack":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the openstack index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OpenStack Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/openstack?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/openstack?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OpenStack-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"openstack\"","tags":["indices"]}},"/index/openwrt":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the openwrt index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OpenWrt Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/openwrt?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/openwrt?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_WRT-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"openwrt\"","tags":["indices"]}},"/index/oracle":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the oracle index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Oracle Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/oracle?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/oracle?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MetaData-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"oracle\"","tags":["indices"]}},"/index/oracle-cpu":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the oracle-cpu index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Oracle Critical Patch Update Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/oracle-cpu?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/oracle-cpu?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OracleCPU-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"oracle-cpu\"","tags":["indices"]}},"/index/oracle-cpu-csaf":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the oracle-cpu-csaf index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Oracle Critical Patch Updates CSAF\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/oracle-cpu-csaf?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/oracle-cpu-csaf?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OracleCPUCSAF-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"oracle-cpu-csaf\"","tags":["indices"]}},"/index/osv":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the osv index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Open Source Vulnerabilities Database\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/osv?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/osv?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OSV-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"osv\"","tags":["indices"]}},"/index/otrs":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the otrs index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OTRS Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/otrs?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/otrs?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OTRS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"otrs\"","tags":["indices"]}},"/index/owncloud":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the owncloud index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OwnCloud Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/owncloud?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/owncloud?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OwnCloud-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"owncloud\"","tags":["indices"]}},"/index/packetstorm":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the packetstorm index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** PacketStorm\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/packetstorm?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/packetstorm?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PacketstormExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"packetstorm\"","tags":["indices"]}},"/index/palantir":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the palantir index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Palantir Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/palantir?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/palantir?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Palantir-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"palantir\"","tags":["indices"]}},"/index/palo-alto":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the palo-alto index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Palo Alto Networks Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/palo-alto?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/palo-alto?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PaloAltoAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"palo-alto\"","tags":["indices"]}},"/index/panasonic":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the panasonic index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Panasonic Vulnerability Advisory List\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/panasonic?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/panasonic?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Panasonic-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"panasonic\"","tags":["indices"]}},"/index/papercut":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the papercut index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** PaperCut Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/papercut?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/papercut?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PaperCut-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"papercut\"","tags":["indices"]}},"/index/pega":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the pega index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Pega Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/pega?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/pega?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Pega-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"pega\"","tags":["indices"]}},"/index/philips":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the philips index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Philips Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/philips?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/philips?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PhilipsAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"philips\"","tags":["indices"]}},"/index/phoenix-contact":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the phoenix-contact index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Phoenix Contact Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/phoenix-contact?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/phoenix-contact?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PhoenixContactAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"phoenix-contact\"","tags":["indices"]}},"/index/php-my-admin":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the php-my-admin index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** phpMyAdmin Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/php-my-admin?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/php-my-admin?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PHPMyAdmin-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"php-my-admin\"","tags":["indices"]}},"/index/pkcert":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the pkcert index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** PK CERT Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/pkcert?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/pkcert?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PKCert-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"pkcert\"","tags":["indices"]}},"/index/postgressql":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the postgressql index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** PostgresSQL Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/postgressql?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/postgressql?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PostgresSQL-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"postgressql\"","tags":["indices"]}},"/index/powerdns":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the powerdns index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** PowerDNS Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/powerdns?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/powerdns?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PowerDNS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"powerdns\"","tags":["indices"]}},"/index/progress":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the progress index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Progress Product Alert Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/progress?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/progress?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Progress-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"progress\"","tags":["indices"]}},"/index/proofpoint":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the proofpoint index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Proofpoint Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/proofpoint?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/proofpoint?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Proofpoint-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"proofpoint\"","tags":["indices"]}},"/index/ptc":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ptc index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** PTC Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ptc?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ptc?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PTC-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ptc\"","tags":["indices"]}},"/index/pub":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the pub index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Pub (Dart/Flutter) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/pub?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/pub?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"pub\"","tags":["indices"]}},"/index/pure-storage":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the pure-storage index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Pure Storage Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/pure-storage?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/pure-storage?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PureStorage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"pure-storage\"","tags":["indices"]}},"/index/pypa-advisories":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the pypa-advisories index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** PyPA Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/pypa-advisories?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/pypa-advisories?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PyPAAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"pypa-advisories\"","tags":["indices"]}},"/index/pypi":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the pypi index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** PyPi (Python) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/pypi?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/pypi?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"pypi\"","tags":["indices"]}},"/index/qnap":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the qnap index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** QNAP Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/qnap?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/qnap?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_QNAPAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"qnap\"","tags":["indices"]}},"/index/qqids":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the qqids index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Qualys QIDs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/qqids?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/qqids?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_QQID-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"qqids\"","tags":["indices"]}},"/index/qualcomm":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the qualcomm index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Qualcomm Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/qualcomm?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/qualcomm?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Qualcomm-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"qualcomm\"","tags":["indices"]}},"/index/qualys":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the qualys index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Qualys Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/qualys?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/qualys?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Qualys-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"qualys\"","tags":["indices"]}},"/index/qualys-qids":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the qualys-qids index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Qualys QID\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/qualys-qids?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/qualys-qids?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_QualysQID-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"qualys-qids\"","tags":["indices"]}},"/index/qubes-qsb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the qubes-qsb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Qubes Security Bulletin\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/qubes-qsb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/qubes-qsb?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_QSB-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"qubes-qsb\"","tags":["indices"]}},"/index/ransomware":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ransomware index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Ransomware\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ransomware?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ransomware?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_RansomwareExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ransomware\"","tags":["indices"]}},"/index/red-lion":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the red-lion index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Red-Lion Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/red-lion?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/red-lion?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_RedLion-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"red-lion\"","tags":["indices"]}},"/index/redhat":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the redhat index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Red Hat Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/redhat?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/redhat?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_RedhatCVE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"redhat\"","tags":["indices"]}},"/index/redhat-cves":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the redhat-cves index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CSAF data for redhat\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/redhat-cves?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/redhat-cves?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_RhelCVE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"redhat-cves\"","tags":["indices"]}},"/index/renesas":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the renesas index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Renesas Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/renesas?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/renesas?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Renesas-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"renesas\"","tags":["indices"]}},"/index/revive":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the revive index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Revive Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/revive?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/revive?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Revive-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"revive\"","tags":["indices"]}},"/index/roche":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the roche index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Roche Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/roche?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/roche?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Roche-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"roche\"","tags":["indices"]}},"/index/rockwell":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the rockwell index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Rockwell Automation Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/rockwell?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/rockwell?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Rockwell-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"rockwell\"","tags":["indices"]}},"/index/rocky":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the rocky index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Rocky Linux Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/rocky?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/rocky?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_Update-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"rocky\"","tags":["indices"]}},"/index/rocky-errata":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the rocky-errata index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Rocky Errata\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/rocky-errata?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/rocky-errata?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_RockyErrata-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"rocky-errata\"","tags":["indices"]}},"/index/rocky-purls":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the rocky-purls index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Rocky Purls\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/rocky-purls?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/rocky-purls?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_purls_PurlResponse-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"rocky-purls\"","tags":["indices"]}},"/index/rsync":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the rsync index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Rsync Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/rsync?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/rsync?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Rsync-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"rsync\"","tags":["indices"]}},"/index/ruckus":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ruckus index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Ruckus Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ruckus?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ruckus?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Ruckus-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ruckus\"","tags":["indices"]}},"/index/rustsec-advisories":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the rustsec-advisories index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** RustSec Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/rustsec-advisories?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/rustsec-advisories?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_RustsecAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"rustsec-advisories\"","tags":["indices"]}},"/index/sacert":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sacert index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Saudi CERT\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sacert?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sacert?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SAAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"sacert\"","tags":["indices"]}},"/index/safran":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the safran index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Safran Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/safran?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/safran?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Safran-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"safran\"","tags":["indices"]}},"/index/saint":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the saint index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SAINT Exploits\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/saint?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/saint?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SaintExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"saint\"","tags":["indices"]}},"/index/salesforce":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the salesforce index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SalesForce Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/salesforce?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/salesforce?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SalesForce-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"salesforce\"","tags":["indices"]}},"/index/samba":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the samba index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Samba Security Releases\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/samba?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/samba?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Samba-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"samba\"","tags":["indices"]}},"/index/sandisk":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sandisk index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Sandisk Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sandisk?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sandisk?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Sandisk-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"sandisk\"","tags":["indices"]}},"/index/sans-dshield":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sans-dshield index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SANS DShield Honeypot Data\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sans-dshield?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sans-dshield?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SansDshield-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"sans-dshield\"","tags":["indices"]}},"/index/sap":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sap index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SAP Security Patch Days\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sap?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sap?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SAP-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"sap\"","tags":["indices"]}},"/index/schneider-electric":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the schneider-electric index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Schneider Electric Security Notifications\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/schneider-electric?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/schneider-electric?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SchneiderElectricAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"schneider-electric\"","tags":["indices"]}},"/index/schutzwerk":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the schutzwerk index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Schutzwerk Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/schutzwerk?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/schutzwerk?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Schutzwerk-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"schutzwerk\"","tags":["indices"]}},"/index/sec-consult":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sec-consult index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SEC Consult Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sec-consult?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sec-consult?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SECConsult-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"sec-consult\"","tags":["indices"]}},"/index/securitylab":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the securitylab index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Security Lab Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/securitylab?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/securitylab?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SecurityLab-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"securitylab\"","tags":["indices"]}},"/index/seebug":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the seebug index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Seebug Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/seebug?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/seebug?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SeebugExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"seebug\"","tags":["indices"]}},"/index/sel":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sel index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Schweitzer Engineering Laboratories Security Notifications\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sel?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sel?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Sel-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"sel\"","tags":["indices"]}},"/index/sentinelone":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sentinelone index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SentinelOne Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sentinelone?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sentinelone?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SentinelOne-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"sentinelone\"","tags":["indices"]}},"/index/servicenow":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the servicenow index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** ServiceNow CVE Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/servicenow?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/servicenow?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ServiceNow-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"servicenow\"","tags":["indices"]}},"/index/shadowserver-exploited":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the shadowserver-exploited index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Shadowserver Foundation Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/shadowserver-exploited?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/shadowserver-exploited?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ShadowServerExploitedVulnerability-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"shadowserver-exploited\"","tags":["indices"]}},"/index/shielder":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the shielder index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Shielder Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/shielder?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/shielder?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Shielder-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"shielder\"","tags":["indices"]}},"/index/sick":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sick index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SICK Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sick?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sick?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Sick-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"sick\"","tags":["indices"]}},"/index/siemens":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the siemens index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Siemens Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/siemens?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/siemens?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SiemensAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"siemens\"","tags":["indices"]}},"/index/sierra-wireless":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sierra-wireless index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Sierra Wireless Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sierra-wireless?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sierra-wireless?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SierraWireless-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"sierra-wireless\"","tags":["indices"]}},"/index/sigmahq-sigma-rules":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sigmahq-sigma-rules index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Sigma Rules\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sigmahq-sigma-rules?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sigmahq-sigma-rules?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SigmaRule-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"sigmahq-sigma-rules\"","tags":["indices"]}},"/index/singcert":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the singcert index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CSA Alerts and Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/singcert?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/singcert?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SingCert-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"singcert\"","tags":["indices"]}},"/index/sitecore":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sitecore index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Sitecore Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sitecore?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sitecore?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Sitecore-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"sitecore\"","tags":["indices"]}},"/index/slackware":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the slackware index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Slackware Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/slackware?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/slackware?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Slackware-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"slackware\"","tags":["indices"]}},"/index/solarwinds":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the solarwinds index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SolarWinds Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/solarwinds?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/solarwinds?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SolarWindsAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"solarwinds\"","tags":["indices"]}},"/index/solr":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the solr index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Solr CVE Reports\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/solr?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/solr?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Solr-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"solr\"","tags":["indices"]}},"/index/sonatype":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sonatype index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Sonatype Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sonatype?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sonatype?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Sonatype-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"sonatype\"","tags":["indices"]}},"/index/sonicwall":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sonicwall index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SonicWall Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sonicwall?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sonicwall?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SonicWallAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"sonicwall\"","tags":["indices"]}},"/index/spacelabs-healthcare":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the spacelabs-healthcare index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Spacelabs Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/spacelabs-healthcare?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/spacelabs-healthcare?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SpacelabsHealthcareAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"spacelabs-healthcare\"","tags":["indices"]}},"/index/splunk":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the splunk index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Splunk Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/splunk?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/splunk?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Splunk-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"splunk\"","tags":["indices"]}},"/index/spring":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the spring index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Spring Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/spring?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/spring?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Spring-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"spring\"","tags":["indices"]}},"/index/ssd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ssd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SSD Secure Disclosure Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ssd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ssd?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SSDAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ssd\"","tags":["indices"]}},"/index/stormshield":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the stormshield index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Stormshield Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/stormshield?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/stormshield?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Stormshield-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"stormshield\"","tags":["indices"]}},"/index/stryker":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the stryker index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Stryker Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/stryker?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/stryker?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_StrykerAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"stryker\"","tags":["indices"]}},"/index/sudo":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sudo index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Sudo Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sudo?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sudo?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Sudo-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"sudo\"","tags":["indices"]}},"/index/suse":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the suse index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SUSE Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/suse?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/suse?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Cvrf-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"suse\"","tags":["indices"]}},"/index/suse-security":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the suse-security index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Suse Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/suse-security?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/suse-security?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SuseSecurity-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"suse-security\"","tags":["indices"]}},"/index/swift":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the swift index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Swift packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/swift?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/swift?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"swift\"","tags":["indices"]}},"/index/swisslog-healthcare":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the swisslog-healthcare index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Swisslog Healthcare CVE Disclosures\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/swisslog-healthcare?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/swisslog-healthcare?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SwisslogHealthcareAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"swisslog-healthcare\"","tags":["indices"]}},"/index/symfony":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the symfony index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Symfony Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/symfony?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/symfony?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Symfony-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"symfony\"","tags":["indices"]}},"/index/synacktiv":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the synacktiv index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Synacktiv Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/synacktiv?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/synacktiv?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Synacktiv-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"synacktiv\"","tags":["indices"]}},"/index/syncrosoft":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the syncrosoft index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SyncroSoft Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/syncrosoft?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/syncrosoft?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SyncroSoft-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"syncrosoft\"","tags":["indices"]}},"/index/synology":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the synology index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Synology Product Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/synology?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/synology?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Synology-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"synology\"","tags":["indices"]}},"/index/syss":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the syss index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Syss Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/syss?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/syss?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Syss-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"syss\"","tags":["indices"]}},"/index/tailscale":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the tailscale index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Tailscale Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/tailscale?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/tailscale?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Tailscale-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"tailscale\"","tags":["indices"]}},"/index/teamviewer":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the teamviewer index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** TeamViewer Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/teamviewer?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/teamviewer?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_TeamViewer-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"teamviewer\"","tags":["indices"]}},"/index/tenable-research-advisories":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the tenable-research-advisories index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Tenable Research Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/tenable-research-advisories?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/tenable-research-advisories?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_TenableResearchAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"tenable-research-advisories\"","tags":["indices"]}},"/index/tencent":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the tencent index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Tencent Vulnerability Risk Notices\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/tencent?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/tencent?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Tencent-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"tencent\"","tags":["indices"]}},"/index/thales":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the thales index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Thales Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/thales?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/thales?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Thales-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"thales\"","tags":["indices"]}},"/index/themissinglink":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the themissinglink index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** the missing link Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/themissinglink?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/themissinglink?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_TheMissingLink-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"themissinglink\"","tags":["indices"]}},"/index/thermo-fisher":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the thermo-fisher index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Thermo Fisher Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/thermo-fisher?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/thermo-fisher?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ThermoFisher-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"thermo-fisher\"","tags":["indices"]}},"/index/threat-actors":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the threat-actors index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Threat Actors Data\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/threat-actors?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/threat-actors?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ThreatActorWithExternalObjects-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"threat-actors\"","tags":["indices"]}},"/index/ti":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ti index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Texas Instruments Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ti?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ti?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_TI-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ti\"","tags":["indices"]}},"/index/tibco":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the tibco index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** TIBCO Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/tibco?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/tibco?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Tibco-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"tibco\"","tags":["indices"]}},"/index/tp-link":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the tp-link index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** TP-Link Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/tp-link?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/tp-link?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_TPLink-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"tp-link\"","tags":["indices"]}},"/index/trane-technology":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the trane-technology index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Trane Technology Product Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/trane-technology?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/trane-technology?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_TraneTechnology-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"trane-technology\"","tags":["indices"]}},"/index/trendmicro":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the trendmicro index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Trend Micro Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/trendmicro?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/trendmicro?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_TrendMicro-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"trendmicro\"","tags":["indices"]}},"/index/trustwave":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the trustwave index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Trustwave Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/trustwave?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/trustwave?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Trustwave-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"trustwave\"","tags":["indices"]}},"/index/twcert":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the twcert index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Taiwan CERT Vulnerability Notes\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/twcert?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/twcert?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_TWCertAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"twcert\"","tags":["indices"]}},"/index/ubiquiti":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ubiquiti index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Ubiquiti Security Advisory Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ubiquiti?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ubiquiti?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Ubiquiti-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ubiquiti\"","tags":["indices"]}},"/index/ubuntu":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ubuntu index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Ubuntu Security Notices\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ubuntu?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ubuntu?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_UbuntuCVE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ubuntu\"","tags":["indices"]}},"/index/ubuntu-purls":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ubuntu-purls index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Ubuntu Purls\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ubuntu-purls?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ubuntu-purls?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_purls_PurlResponse-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ubuntu-purls\"","tags":["indices"]}},"/index/unify":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the unify index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Unify Product Security Advisories and Security Notes\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/unify?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/unify?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Unify-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"unify\"","tags":["indices"]}},"/index/unisoc":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the unisoc index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** UNISOC Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/unisoc?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/unisoc?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Unisoc-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"unisoc\"","tags":["indices"]}},"/index/usd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the usd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** usd Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/usd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/usd?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_USD-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"usd\"","tags":["indices"]}},"/index/usom":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the usom index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** USOM Security Notices\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/usom?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/usom?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_USOMAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"usom\"","tags":["indices"]}},"/index/vandyke":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vandyke index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VanDyke Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vandyke?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vandyke?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VanDyke-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vandyke\"","tags":["indices"]}},"/index/vapidlabs":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vapidlabs index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VapidLabs Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vapidlabs?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vapidlabs?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VapidLabsAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vapidlabs\"","tags":["indices"]}},"/index/vc-cpe-dictionary":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vc-cpe-dictionary index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck CPE Dictionary\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vc-cpe-dictionary?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vc-cpe-dictionary?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VCCPEDictionary-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vc-cpe-dictionary\"","tags":["indices"]}},"/index/vde":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vde index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VDE CERT Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vde?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vde?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VDEAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vde\"","tags":["indices"]}},"/index/veeam":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the veeam index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Veeam Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/veeam?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/veeam?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Veeam-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"veeam\"","tags":["indices"]}},"/index/veritas":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the veritas index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Veritas Security Alerts\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/veritas?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/veritas?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Veritas-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"veritas\"","tags":["indices"]}},"/index/virtuozzo":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the virtuozzo index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Virtuozzo Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/virtuozzo?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/virtuozzo?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Virtuozzo-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"virtuozzo\"","tags":["indices"]}},"/index/vlc":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vlc index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VLC Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vlc?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vlc?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VLC-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vlc\"","tags":["indices"]}},"/index/vmware":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vmware index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VMWare Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vmware?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vmware?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VMWareAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vmware\"","tags":["indices"]}},"/index/voidsec":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the voidsec index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VoidSec Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/voidsec?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/voidsec?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VoidSec-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"voidsec\"","tags":["indices"]}},"/index/vulncheck":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VulnCheck-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vulncheck\"","tags":["indices"]}},"/index/vulncheck-canaries":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-canaries index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Canary Intel\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-canaries?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-canaries?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"src_country","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"dst_country","schema":{"type":"string"}},{"description":"Source IP address","in":"query","name":"src_ip","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_VulnCheckCanary-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vulncheck-canaries\"","tags":["indices"]}},"/index/vulncheck-canaries-10d":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-canaries-10d index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Canary Intel (10 day)\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-canaries-10d?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-canaries-10d?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"src_country","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"dst_country","schema":{"type":"string"}},{"description":"Source IP address","in":"query","name":"src_ip","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_VulnCheckCanary-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vulncheck-canaries-10d\"","tags":["indices"]}},"/index/vulncheck-canaries-30d":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-canaries-30d index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Canary Intel (30 day)\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-canaries-30d?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-canaries-30d?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"src_country","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"dst_country","schema":{"type":"string"}},{"description":"Source IP address","in":"query","name":"src_ip","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_VulnCheckCanary-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vulncheck-canaries-30d\"","tags":["indices"]}},"/index/vulncheck-canaries-3d":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-canaries-3d index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Canary Intel (3 day)\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-canaries-3d?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-canaries-3d?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"src_country","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"dst_country","schema":{"type":"string"}},{"description":"Source IP address","in":"query","name":"src_ip","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_VulnCheckCanary-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vulncheck-canaries-3d\"","tags":["indices"]}},"/index/vulncheck-canaries-90d":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-canaries-90d index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Canary Intel (90 day)\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-canaries-90d?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-canaries-90d?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"src_country","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"dst_country","schema":{"type":"string"}},{"description":"Source IP address","in":"query","name":"src_ip","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_VulnCheckCanary-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vulncheck-canaries-90d\"","tags":["indices"]}},"/index/vulncheck-config":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-config index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Configurations\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-config?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-config?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VulnCheckConfig-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vulncheck-config\"","tags":["indices"]}},"/index/vulncheck-cvelist-v5":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-cvelist-v5 index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck CVEList V5\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-cvelist-v5?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-cvelist-v5?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VulnCheckCVEListV5-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vulncheck-cvelist-v5\"","tags":["indices"]}},"/index/vulncheck-kev":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-kev index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck KEV\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-kev?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-kev?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VulnCheckKEV-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vulncheck-kev\"","tags":["indices"]}},"/index/vulncheck-nvd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-nvd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck NVD\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-nvd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-nvd?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_CveItemsExtended-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vulncheck-nvd\"","tags":["indices"]}},"/index/vulncheck-nvd2":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-nvd2 index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck NVD V2\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-nvd2?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-nvd2?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_NVD20CVEExtended-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vulncheck-nvd2\"","tags":["indices"]}},"/index/vulnerability-aliases":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulnerability-aliases index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Vulnerability Aliases\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulnerability-aliases?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulnerability-aliases?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_VulnerabilityAlias-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vulnerability-aliases\"","tags":["indices"]}},"/index/vulnrichment":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulnrichment index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CISA Vulnrichment\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulnrichment?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulnrichment?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Vulnrichment-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vulnrichment\"","tags":["indices"]}},"/index/vyaire":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vyaire index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Vyaire Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vyaire?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vyaire?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VYAIREAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vyaire\"","tags":["indices"]}},"/index/watchguard":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the watchguard index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Watchguard Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/watchguard?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/watchguard?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_WatchGuard-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"watchguard\"","tags":["indices"]}},"/index/whatsapp":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the whatsapp index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** WhatsApp Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/whatsapp?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/whatsapp?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_WhatsApp-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"whatsapp\"","tags":["indices"]}},"/index/wibu":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the wibu index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Wibu Systems Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/wibu?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/wibu?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Wibu-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"wibu\"","tags":["indices"]}},"/index/wireshark":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the wireshark index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Wireshark Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/wireshark?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/wireshark?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Wireshark-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"wireshark\"","tags":["indices"]}},"/index/with-secure":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the with-secure index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** With Secure Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/with-secure?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/with-secure?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_WithSecure-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"with-secure\"","tags":["indices"]}},"/index/wolfi":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the wolfi index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Wolfi Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/wolfi?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/wolfi?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Wolfi-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"wolfi\"","tags":["indices"]}},"/index/wolfssl":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the wolfssl index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** WolfSSL Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/wolfssl?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/wolfssl?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_WolfSSL-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"wolfssl\"","tags":["indices"]}},"/index/wordfence":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the wordfence index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Wordfence Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/wordfence?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/wordfence?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Wordfence-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"wordfence\"","tags":["indices"]}},"/index/xen":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the xen index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Xen Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/xen?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/xen?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Xen-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"xen\"","tags":["indices"]}},"/index/xerox":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the xerox index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Xerox Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/xerox?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/xerox?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Xerox-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"xerox\"","tags":["indices"]}},"/index/xiaomi":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the xiaomi index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Xiaomi Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/xiaomi?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/xiaomi?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Xiaomi-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"xiaomi\"","tags":["indices"]}},"/index/xylem":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the xylem index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Xylem Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/xylem?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/xylem?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Xylem-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"xylem\"","tags":["indices"]}},"/index/yamaha":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the yamaha index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Yamaha Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/yamaha?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/yamaha?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Yamaha-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"yamaha\"","tags":["indices"]}},"/index/yokogawa":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the yokogawa index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Yokogawa Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/yokogawa?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/yokogawa?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_YokogawaAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"yokogawa\"","tags":["indices"]}},"/index/yubico":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the yubico index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Yubico Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/yubico?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/yubico?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Yubico-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"yubico\"","tags":["indices"]}},"/index/zdi":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the zdi index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Zero Day Initiative Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/zdi?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/zdi?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ZeroDayAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"zdi\"","tags":["indices"]}},"/index/zebra":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the zebra index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Zebra Security Alerts\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/zebra?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/zebra?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Zebra-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"zebra\"","tags":["indices"]}},"/index/zeroscience":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the zeroscience index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** ZeroScience Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/zeroscience?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/zeroscience?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ZeroScienceAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"zeroscience\"","tags":["indices"]}},"/index/zimbra":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the zimbra index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Zimbra Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/zimbra?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/zimbra?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Zimbra-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"zimbra\"","tags":["indices"]}},"/index/zoom":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the zoom index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Zoom Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/zoom?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/zoom?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Zoom-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"zoom\"","tags":["indices"]}},"/index/zscaler":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the zscaler index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Zscaler Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/zscaler?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/zscaler?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Zscaler-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"zscaler\"","tags":["indices"]}},"/index/zuso":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the zuso index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** ZUSO Vulnerability Notifications\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/zuso?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/zuso?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Zuso-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"zuso\"","tags":["indices"]}},"/index/zyxel":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the zyxel index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Zyxel Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/zyxel?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/zyxel?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Zyxel-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"zyxel\"","tags":["indices"]}},"/openapi":{"get":{"description":"Return the VulnCheck API (v3) OpenAPI specification","responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":{},"type":"object"}}},"description":"OK"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return OpenAPI specification","tags":["endpoints"]}},"/pdns/vulncheck-c2":{"get":{"description":"Retrieve a list of hostnames, identified as running Command \u0026 Control infrastructure.","parameters":[{"description":"Format of the Hostnames in the response (Defaults To: text)","in":"query","name":"format","schema":{"enum":["txt","json","text"],"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Retrieve a list of C2 Hostnames","tags":["endpoints"]}},"/purl":{"get":{"description":"Based on the specified PURL, this endpoint will return a list of vulnerabilities that are related to the package. We currently support hex, golang, hackage, npm, and pypi","parameters":[{"description":"URL string used to identify and locate a software package","in":"query","name":"purl","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-v3controllers_PurlResponseData-v3controllers_PurlResponseMetadata"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Request vulnerabilities related to a PURL","tags":["endpoints"]}},"/purls":{"post":{"description":"Accepts a JSON array of PURLs in the request body and returns a list of vulnerabilities","requestBody":{"content":{"application/json":{"schema":{"items":{"type":"string"},"title":"purls","type":"array"}}},"description":"PURL strings used to identify and locate software packages","required":true},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-v3controllers_PurlsResponseData-v3controllers_PurlsResponseMetadata"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Request vulnerabilities related to a list of PURLs","tags":["endpoints"]}},"/rules/initial-access/{type}":{"get":{"description":"Retrieve set of initial-access detection rules by type","parameters":[{"description":"Type of ruleset to retrieve","in":"path","name":"type","required":true,"schema":{"enum":["snort","suricata"],"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Retrieve set of initial-access detection rules","tags":["endpoints"]}},"/tags/vulncheck-c2":{"get":{"description":"Retrieve a list of IP addresses, identified as running Command \u0026 Control infrastructure","parameters":[{"description":"Format of the IP Addresses in the response (Defaults To: text)","in":"query","name":"format","schema":{"enum":["txt","json","text"],"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Retrieve a list of C2 IP addresses","tags":["endpoints"]}}},"servers":[{"url":"https://api.vulncheck.com/v3"},{"url":"https://api.vulncheck.com/v4"}]} \ No newline at end of file +{"components":{"schemas":{"advisory.A10":{"description":"advisory.A10","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"reference":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ABBAdvisory":{"description":"advisory.ABBAdvisory","properties":{"abb_vulnerability_id":{"items":{"type":"string"},"type":"array","uniqueItems":false},"csaf":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"document_id":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ADP":{"description":"advisory.ADP","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.MAffected"},"type":"array","uniqueItems":false},"metrics":{"items":{"$ref":"#/components/schemas/advisory.VulnrichmentMetric"},"type":"array","uniqueItems":false},"providerMetadata":{"$ref":"#/components/schemas/advisory.MProviderMetadata"}},"type":"object"},"advisory.ADPContainer":{"description":"advisory.ADPContainer","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.MAffected"},"type":"array","uniqueItems":false},"datePublic":{"description":"OK","type":"string"},"descriptions":{"description":"OK","items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false},"impacts":{"description":"OK","items":{"$ref":"#/components/schemas/advisory.Impact"},"type":"array","uniqueItems":false},"metrics":{"description":"OK","items":{"$ref":"#/components/schemas/advisory.Metric"},"type":"array","uniqueItems":false},"problemTypes":{"description":"OK","items":{"$ref":"#/components/schemas/advisory.MProblemTypes"},"type":"array","uniqueItems":false},"providerMetadata":{"$ref":"#/components/schemas/advisory.MProviderMetadata"},"references":{"items":{"$ref":"#/components/schemas/advisory.MReference"},"type":"array","uniqueItems":false},"tags":{"description":"OK","items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"description":"OK","type":"string"}},"type":"object"},"advisory.AIX":{"description":"advisory.AIX","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AMD":{"description":"advisory.AMD","properties":{"bulletin_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_updated":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AMI":{"description":"advisory.AMI","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ASRG":{"description":"advisory.ASRG","properties":{"affected_products":{"type":"string"},"capec":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"problem_type":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AVEVAAdvisory":{"description":"advisory.AVEVAAdvisory","properties":{"aveva_vulnerability_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"published_by":{"type":"string"},"rating":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AVIDMLAdvs":{"description":"advisory.AVIDMLAdvs","properties":{"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AWS":{"description":"advisory.AWS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Abbott":{"description":"advisory.Abbott","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Absolute":{"description":"advisory.Absolute","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Acknowledgement":{"description":"advisory.Acknowledgement","properties":{"name":{"items":{"$ref":"#/components/schemas/advisory.IVal"},"type":"array","uniqueItems":false},"url":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.Acronis":{"description":"advisory.Acronis","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AdobeAdvisory":{"description":"advisory.AdobeAdvisory","properties":{"adobe_cves":{"items":{"$ref":"#/components/schemas/advisory.AdobeCVE"},"type":"array","uniqueItems":false},"affected":{"items":{"$ref":"#/components/schemas/advisory.AdobeAffected"},"type":"array"},"bulletinId":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"link":{"type":"string"},"solutions":{"items":{"$ref":"#/components/schemas/advisory.AdobeSolution"},"type":"array"},"updated_at":{"type":"string"}},"type":"object"},"advisory.AdobeAffected":{"description":"advisory.AdobeAffected","properties":{"platform":{"type":"string"},"product":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.AdobeCVE":{"description":"advisory.AdobeCVE","properties":{"cve":{"type":"string"},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"}},"type":"object"},"advisory.AdobeSolution":{"description":"advisory.AdobeSolution","properties":{"platform":{"type":"string"},"product":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.Advantech":{"description":"advisory.Advantech","properties":{"advisory_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Advisory":{"description":"advisory.Advisory","properties":{"affects":{"type":"string"},"announced":{"type":"string"},"category":{"type":"string"},"corrections":{"items":{"$ref":"#/components/schemas/advisory.Correction"},"type":"array"},"credits":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"module":{"type":"string"},"name":{"type":"string"},"topic":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AdvisoryDetails":{"description":"advisory.AdvisoryDetails","properties":{"bugzilla":{"$ref":"#/components/schemas/advisory.Bugzilla"},"cve":{"$ref":"#/components/schemas/advisory.OvalCVE"},"issued":{"$ref":"#/components/schemas/advisory.Issued"},"severity":{"type":"string"},"updated":{"$ref":"#/components/schemas/advisory.Updated"}},"type":"object"},"advisory.AdvisoryRecord":{"description":"advisory.AdvisoryRecord","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"external_id":{"items":{"type":"string"},"type":"array","uniqueItems":false},"lang":{"type":"string"},"name":{"type":"string"},"refsource":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"advisory.Affected":{"description":"advisory.Affected","properties":{"database_specific":{"description":"The meaning of the values within the object is entirely defined by the database"},"ecosystem_specific":{"description":"The meaning of the values within the object is entirely defined by the ecosystem"},"package":{"$ref":"#/components/schemas/advisory.OSVPackage"},"ranges":{"items":{"$ref":"#/components/schemas/advisory.Range"},"type":"array","uniqueItems":false},"severity":{"items":{"$ref":"#/components/schemas/advisory.Severity"},"type":"array","uniqueItems":false},"versions":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.AffectedChrome":{"description":"advisory.AffectedChrome","properties":{"fixed_version":{"type":"string"},"product":{"type":"string"}},"type":"object"},"advisory.AffectedDebianPackage":{"description":"advisory.AffectedDebianPackage","properties":{"name":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.AffectedDebianRelease":{"description":"advisory.AffectedDebianRelease","properties":{"fixed_version":{"type":"string"},"nodsa":{"type":"string"},"nodsa_reason":{"type":"string"},"release_name":{"type":"string"},"repositories":{"items":{"$ref":"#/components/schemas/advisory.AffectedDebianRepository"},"type":"array","uniqueItems":false},"status":{"type":"string"},"urgency":{"type":"string"}},"type":"object"},"advisory.AffectedDebianRepository":{"description":"advisory.AffectedDebianRepository","properties":{"repository_name":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.AffectedFile":{"description":"advisory.AffectedFile","properties":{"file_last_modified":{"type":"string"},"file_name":{"type":"string"}},"type":"object"},"advisory.AffectedProduct":{"description":"advisory.AffectedProduct","properties":{"affectedReleases":{"type":"string"},"fixedReleases":{"type":"string"},"lexmarkModels":{"type":"string"}},"type":"object"},"advisory.AffectedRel":{"description":"advisory.AffectedRel","properties":{"advisory":{"type":"string"},"cpe":{"type":"string"},"package":{"type":"string"},"product_name":{"type":"string"},"release_date":{"type":"string"}},"type":"object"},"advisory.AffectedUbuntuPackage":{"description":"advisory.AffectedUbuntuPackage","properties":{"break_commit_url":{"items":{"type":"string"},"type":"array","uniqueItems":false},"fix_commit_url":{"items":{"type":"string"},"type":"array","uniqueItems":false},"package_name":{"type":"string"},"package_release_status":{"items":{"$ref":"#/components/schemas/advisory.UbuntuPackageReleaseStatus"},"type":"array","uniqueItems":false},"upstream_fix_url":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.AlephResearch":{"description":"advisory.AlephResearch","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Alibaba":{"description":"advisory.Alibaba","properties":{"cnnvd":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cnvd":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"mitigation_cn":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary_cn":{"type":"string"},"title_cn":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AlmaDate":{"description":"advisory.AlmaDate","properties":{"$date":{"type":"integer"}},"type":"object"},"advisory.AlmaLinuxUpdate":{"description":"advisory.AlmaLinuxUpdate","properties":{"bs_repo_id":{"$ref":"#/components/schemas/advisory.AlmaObjectID"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"fromstr":{"type":"string"},"id":{"$ref":"#/components/schemas/advisory.AlmaObjectID"},"issued_date":{"$ref":"#/components/schemas/advisory.AlmaDate"},"pkglist":{"$ref":"#/components/schemas/advisory.AlmaPackageList"},"pushcount":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.AlmaReference"},"type":"array","uniqueItems":false},"release":{"type":"string"},"rights":{"type":"string"},"severity":{"type":"string"},"solution":{"type":"string"},"status":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"},"update_url":{"type":"string"},"updated_date":{"$ref":"#/components/schemas/advisory.AlmaDate"},"updateinfo_id":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.AlmaObjectID":{"description":"advisory.AlmaObjectID","properties":{"$oid":{"type":"string"}},"type":"object"},"advisory.AlmaPackage":{"description":"advisory.AlmaPackage","properties":{"arch":{"type":"string"},"epoch":{"type":"string"},"filename":{"type":"string"},"name":{"type":"string"},"reboot_suggested":{"type":"integer"},"release":{"type":"string"},"source":{"type":"string"},"sum":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.AlmaPackageList":{"description":"advisory.AlmaPackageList","properties":{"name":{"type":"string"},"packages":{"items":{"$ref":"#/components/schemas/advisory.AlmaPackage"},"type":"array","uniqueItems":false},"shortname":{"type":"string"}},"type":"object"},"advisory.AlmaReference":{"description":"advisory.AlmaReference","properties":{"href":{"type":"string"},"id":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.AlpineLinuxSecDB":{"description":"advisory.AlpineLinuxSecDB","properties":{"apkurl":{"type":"string"},"archs":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"distroversion":{"type":"string"},"packages":{"items":{"$ref":"#/components/schemas/advisory.AlpineLinuxSecDBPackage"},"type":"array","uniqueItems":false},"reponame":{"type":"string"},"urlprefix":{"type":"string"}},"type":"object"},"advisory.AlpineLinuxSecDBPackage":{"description":"advisory.AlpineLinuxSecDBPackage","properties":{"package_name":{"type":"string"},"secfixes":{"items":{"$ref":"#/components/schemas/advisory.AlpineLinuxSecurityFix"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.AlpineLinuxSecurityFix":{"description":"advisory.AlpineLinuxSecurityFix","properties":{"cve":{"type":"string"},"fixed_version":{"type":"string"}},"type":"object"},"advisory.AmazonAffectedPackage":{"description":"advisory.AmazonAffectedPackage","properties":{"advisory":{"type":"string"},"package":{"type":"string"},"platform":{"type":"string"},"releaseDate":{"type":"string"},"status":{"type":"string"}},"type":"object"},"advisory.AmazonCVE":{"description":"advisory.AmazonCVE","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.AmazonAffectedPackage"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AnchoreNVDOverride":{"description":"advisory.AnchoreNVDOverride","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"override":{"$ref":"#/components/schemas/advisory.Override"},"url":{"type":"string"}},"type":"object"},"advisory.AndroidAdvisory":{"description":"advisory.AndroidAdvisory","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.AndroidAffected"},"type":"array","uniqueItems":false},"aliases":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"modified":{"type":"string"},"published":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.AndroidReference"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AndroidAffected":{"description":"advisory.AndroidAffected","properties":{"ecosystem_specific":{"$ref":"#/components/schemas/advisory.EcoSystem"},"package":{"$ref":"#/components/schemas/advisory.AndroidPackage"},"ranges":{"items":{"$ref":"#/components/schemas/advisory.AndroidRange"},"type":"array","uniqueItems":false},"versions":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.AndroidEvent":{"description":"advisory.AndroidEvent","properties":{"fixed":{"type":"string"},"introduced":{"type":"string"}},"type":"object"},"advisory.AndroidPackage":{"description":"advisory.AndroidPackage","properties":{"ecosystem":{"type":"string"},"name":{"type":"string"}},"type":"object"},"advisory.AndroidRange":{"description":"advisory.AndroidRange","properties":{"events":{"items":{"$ref":"#/components/schemas/advisory.AndroidEvent"},"type":"array","uniqueItems":false},"type":{"type":"string"}},"type":"object"},"advisory.AndroidReference":{"description":"advisory.AndroidReference","properties":{"type":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheActiveMQ":{"description":"advisory.ApacheActiveMQ","properties":{"affected_versions":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheArchiva":{"description":"advisory.ApacheArchiva","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheArrow":{"description":"advisory.ApacheArrow","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheCamel":{"description":"advisory.ApacheCamel","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheCommons":{"description":"advisory.ApacheCommons","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheCouchDB":{"description":"advisory.ApacheCouchDB","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheFlink":{"description":"advisory.ApacheFlink","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"advisory.ApacheGuacamole":{"description":"advisory.ApacheGuacamole","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheHTTP":{"description":"advisory.ApacheHTTP","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheHadoop":{"description":"advisory.ApacheHadoop","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheJSPWiki":{"description":"advisory.ApacheJSPWiki","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheKafka":{"description":"advisory.ApacheKafka","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheLoggingServices":{"description":"advisory.ApacheLoggingServices","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheNiFi":{"description":"advisory.ApacheNiFi","properties":{"affected_version":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed_versions":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheOFBiz":{"description":"advisory.ApacheOFBiz","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"advisory.ApacheOpenMeetings":{"description":"advisory.ApacheOpenMeetings","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheOpenOffice":{"description":"advisory.ApacheOpenOffice","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApachePulsar":{"description":"advisory.ApachePulsar","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheShiro":{"description":"advisory.ApacheShiro","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheSpark":{"description":"advisory.ApacheSpark","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheStruts":{"description":"advisory.ApacheStruts","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"impact":{"type":"string"},"rating":{"type":"string"},"remediation":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"vulnerable_version":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.ApacheSubversion":{"description":"advisory.ApacheSubversion","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheSuperset":{"description":"advisory.ApacheSuperset","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheTomcat":{"description":"advisory.ApacheTomcat","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheZooKeeper":{"description":"advisory.ApacheZooKeeper","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AppCheck":{"description":"advisory.AppCheck","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Appgate":{"description":"advisory.Appgate","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AppleAdvisory":{"description":"advisory.AppleAdvisory","properties":{"components":{"items":{"$ref":"#/components/schemas/advisory.AppleComponent"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"name":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AppleComponent":{"description":"advisory.AppleComponent","properties":{"available_for":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"description":{"type":"string"},"impact":{"type":"string"},"itw_exploit":{"type":"boolean"},"name":{"type":"string"}},"type":"object"},"advisory.ArchIssue":{"description":"advisory.ArchIssue","properties":{"advisories":{"items":{"type":"string"},"type":"array"},"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"issues":{"description":"cves","items":{"type":"string"},"type":"array"},"name":{"type":"string"},"packages":{"items":{"type":"string"},"type":"array"},"references":{"items":{"type":"string"},"type":"array"},"severity":{"type":"string"},"status":{"type":"string"},"ticket":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.Arista":{"description":"advisory.Arista","properties":{"csaf_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Aruba":{"description":"advisory.Aruba","properties":{"csaf":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AssetNote":{"description":"advisory.AssetNote","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Asterisk":{"description":"advisory.Asterisk","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Astra":{"description":"advisory.Astra","properties":{"bdu":{"items":{"type":"string"},"type":"array","uniqueItems":false},"bulletin_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary_ru":{"type":"string"},"title_ru":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Asus":{"description":"advisory.Asus","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details":{"type":"string"},"id":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.AtlassianAdvisory":{"description":"advisory.AtlassianAdvisory","properties":{"affected_version":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"detailed_summary":{"description":"overloading in places with 'RiskAssessment' and other places with\n'Description'","type":"string"},"fixed_version":{"type":"string"},"link":{"type":"string"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"release_date":{"type":"string"},"severity":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.AtlassianProducts":{"description":"advisory.AtlassianProducts","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"fixed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"name":{"type":"string"}},"type":"object"},"advisory.AtlassianVuln":{"description":"advisory.AtlassianVuln","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"products":{"items":{"$ref":"#/components/schemas/advisory.AtlassianProducts"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Atredis":{"description":"advisory.Atredis","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"vendors":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.Audiocodes":{"description":"advisory.Audiocodes","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AusCert":{"description":"advisory.AusCert","properties":{"body":{"type":"string"},"bulletinId":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"link":{"type":"string"},"operatingSystem":{"type":"string"},"product":{"type":"string"},"publisher":{"type":"string"},"resolution":{"type":"string"}},"type":"object"},"advisory.Autodesk":{"description":"advisory.Autodesk","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Avaya":{"description":"advisory.Avaya","properties":{"advisory_number":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"last_revised":{"type":"string"},"overview":{"type":"string"},"severity":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Avigilon":{"description":"advisory.Avigilon","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Award":{"description":"advisory.Award","properties":{"amount":{"type":"string"},"currency":{"type":"string"}},"type":"object"},"advisory.Axis":{"description":"advisory.Axis","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Azul":{"description":"advisory.Azul","properties":{"base_score":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"prime_version":{"items":{"$ref":"#/components/schemas/advisory.PrimeVersion"},"type":"array","uniqueItems":false},"release":{"type":"string"},"url":{"type":"string"},"zulu_version":{"items":{"$ref":"#/components/schemas/advisory.ZuluVersion"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.BBraunAdvisory":{"description":"advisory.BBraunAdvisory","properties":{"attention":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"equipment":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vendor":{"type":"string"},"vulnerabilities":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.BDUAdvisory":{"description":"advisory.BDUAdvisory","properties":{"bdu_id":{"description":"BDU:2022-03833","type":"string"},"cve":{"description":"[]string{\"CVE-2022-28194\"}","items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"$ref":"#/components/schemas/advisory.BDUCvss"},"cvss3":{"$ref":"#/components/schemas/advisory.BDUCvss3"},"cwe":{"description":"CWE-119","type":"string"},"date_added":{"type":"string"},"description_ru":{"description":"Библиотека libxml2 до версии 2.9.12 не корректно обрабатывает XML-документы, содержащие определенные сущности. В результате могут быть выполнены произвольные команды.","type":"string"},"environment":{"$ref":"#/components/schemas/advisory.BDUEnvironment"},"exploit_status_en":{"description":"Exploited","type":"string"},"exploit_status_ru":{"description":"Exploited","type":"string"},"fix_status_en":{"description":"Fixed","type":"string"},"fix_status_ru":{"description":"Fixed","type":"string"},"identify_date":{"description":"2022-09-01","type":"string"},"name_ru":{"description":"BDU:2022-03833: Уязвимость модуля Cboot (tegrabl_cbo.c) пакета драйверов микропрограммного обеспечения вычислительных плат NVIDIA Jetson, позволяющая нарушителю выполнить произвольный код или вызвать частичный отказ в обслуживании","type":"string"},"severity_ru":{"description":"High","type":"string"},"solution_ru":{"description":"Обновите драйверы микропрограммного обеспечения вычислительных плат NVIDIA Jetson до версии 32.6.1 или более поздней","type":"string"},"sources":{"description":"https://nvd.nist.gov/vuln/detail/CVE-2022-28194","items":{"type":"string"},"type":"array","uniqueItems":false},"text_ru":{"description":"Библиотека libxml2 до версии 2.9.12 не корректно обрабатывает XML-документы, содержащие определенные сущности. В результате могут быть выполнены произвольные команды.","type":"string"},"url":{"description":"https://bdu.fstec.ru/vul/2022-03833","type":"string"},"vul_status_en":{"description":"Exploitable","type":"string"},"vul_status_ru":{"description":"Exploitable","type":"string"},"vulnerable_software":{"$ref":"#/components/schemas/advisory.BDUVulnerableSoftware"}},"type":"object"},"advisory.BDUCvss":{"description":"advisory.BDUCvss","properties":{"vector":{"$ref":"#/components/schemas/advisory.BDUVector"}},"type":"object"},"advisory.BDUCvss3":{"description":"advisory.BDUCvss3","properties":{"vector":{"$ref":"#/components/schemas/advisory.BDUVector"}},"type":"object"},"advisory.BDUEnvironment":{"description":"advisory.BDUEnvironment","properties":{"os":{"$ref":"#/components/schemas/advisory.BDUOs"}},"type":"object"},"advisory.BDUOs":{"description":"advisory.BDUOs","properties":{"name":{"type":"string"},"platform":{"type":"string"},"text":{"type":"string"},"vendor":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.BDUSoft":{"description":"advisory.BDUSoft","properties":{"name":{"type":"string"},"platform":{"type":"string"},"text":{"type":"string"},"types":{"$ref":"#/components/schemas/advisory.BDUTypes"},"vendor":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.BDUTypes":{"description":"advisory.BDUTypes","properties":{"text":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.BDUVector":{"description":"advisory.BDUVector","properties":{"score":{"type":"string"},"text":{"type":"string"}},"type":"object"},"advisory.BDUVulnerableSoftware":{"description":"advisory.BDUVulnerableSoftware","properties":{"soft":{"$ref":"#/components/schemas/advisory.BDUSoft"}},"type":"object"},"advisory.BLS":{"description":"advisory.BLS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"prodcut":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"vendor":{"type":"string"}},"type":"object"},"advisory.Bandr":{"description":"advisory.Bandr","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"document_id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.BaxterAdvisory":{"description":"advisory.BaxterAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_updated":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.BeckhoffAdvisory":{"description":"advisory.BeckhoffAdvisory","properties":{"beckhoff_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_revised":{"description":"if in the future we can delete this great - it's just a dupe to\nnormalize the field names","type":"string"},"name":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vde":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.BeckmanCoulter":{"description":"advisory.BeckmanCoulter","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.BectonDickinsonAdvisory":{"description":"advisory.BectonDickinsonAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"products_affected":{"items":{"$ref":"#/components/schemas/advisory.ProductsAffected"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.BeldenAdvisory":{"description":"advisory.BeldenAdvisory","properties":{"belden_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_updated":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.BeyondTrust":{"description":"advisory.BeyondTrust","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Binarly":{"description":"advisory.Binarly","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.BitDefender":{"description":"advisory.BitDefender","properties":{"additional_details":{"type":"string"},"affected_products":{"type":"string"},"affected_vendors":{"type":"string"},"credit":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"details":{"type":"string"},"timeline":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.BlackBerry":{"description":"advisory.BlackBerry","properties":{"bsrt":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.BoschAdvisory":{"description":"advisory.BoschAdvisory","properties":{"bosch_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_revised":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.BostonScientificAdvisory":{"description":"advisory.BostonScientificAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Botnet":{"description":"advisory.Botnet","properties":{"associated_capecs":{"items":{"$ref":"#/components/schemas/advisory.Capec"},"type":"array","uniqueItems":false},"associated_cwes":{"items":{"$ref":"#/components/schemas/advisory.CweData"},"type":"array","uniqueItems":false},"associated_mitre_attack_techniques":{"items":{"$ref":"#/components/schemas/advisory.MitreAttackTechWithRefs"},"type":"array","uniqueItems":false},"botnet_name":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve_references":{"items":{"$ref":"#/components/schemas/advisory.CVEReference"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"malpedia_url":{"type":"string"},"tools":{"items":{"$ref":"#/components/schemas/advisory.Tool"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.Bugzilla":{"description":"advisory.Bugzilla","properties":{"href":{"type":"string"},"id":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.CACyberCentreAdvisory":{"description":"advisory.CACyberCentreAdvisory","properties":{"control_systems":{"type":"boolean"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"html_url":{"type":"string"},"serial_number":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.CBLMariner":{"description":"advisory.CBLMariner","properties":{"advisory_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"package":{"type":"string"},"severity":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.CERTEUAdvisory":{"description":"advisory.CERTEUAdvisory","properties":{"advisoryId":{"type":"string"},"affectedProducts":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"history":{"items":{"type":"string"},"type":"array"},"link":{"type":"string"},"recommendations":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"summary":{"type":"string"},"technicalDetails":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.CESA":{"description":"advisory.CESA","properties":{"arch":{"items":{"type":"string"},"type":"array"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"issueDate":{"type":"string"},"osRelease":{"type":"string"},"packages":{"items":{"$ref":"#/components/schemas/advisory.CentosPackage"},"type":"array"},"references":{"items":{"type":"string"},"type":"array"},"title":{"type":"string"}},"type":"object"},"advisory.CISAAlert":{"description":"advisory.CISAAlert","properties":{"AffectedProducts":{"type":"string"},"AlertID":{"type":"string"},"Archived":{"type":"boolean"},"CVEExploitedITW":{"type":"boolean"},"CVSS":{"type":"string"},"ICSMA":{"type":"boolean"},"Mitigations":{"type":"string"},"ReleaseDate":{"type":"string"},"Title":{"type":"string"},"Url":{"type":"string"},"Vendor":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.CISControl":{"description":"advisory.CISControl","properties":{"cis_control_description":{"type":"string"},"cis_control_id":{"type":"string"},"cis_control_name":{"type":"string"}},"type":"object"},"advisory.CNNVDEntryJSON":{"description":"advisory.CNNVDEntryJSON","properties":{"bugtraq-id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"modified-date":{"type":"string"},"name_cn":{"type":"string"},"published-date":{"type":"string"},"severity_cn":{"type":"string"},"severity_en":{"type":"string"},"source":{"type":"string"},"url":{"type":"string"},"vuln-description_cn":{"type":"string"},"vuln-solution":{"type":"string"},"vuln-type_cn":{"type":"string"},"vuln-type_en":{"type":"string"}},"type":"object"},"advisory.CNVDBulletin":{"description":"advisory.CNVDBulletin","properties":{"cnta":{"type":"string"},"cnvd":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"reference_urls":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CNVDFlaw":{"description":"advisory.CNVDFlaw","properties":{"affected_products_cn":{"type":"string"},"bugtraq_id":{"type":"string"},"cnvd":{"type":"string"},"collection_time":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"harm_level":{"type":"string"},"id":{"type":"string"},"public_date":{"type":"string"},"reference_urls":{"items":{"type":"string"},"type":"array","uniqueItems":false},"submission_time":{"type":"string"},"title_cn":{"type":"string"},"update_time":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"validation_info_cn":{"type":"string"},"validation_info_en":{"type":"string"},"vendor_patch_cn":{"type":"string"},"vuln_attachments":{"items":{"type":"string"},"type":"array","uniqueItems":false},"vuln_description_cn":{"type":"string"},"vuln_solution_cn":{"type":"string"},"vuln_type_cn":{"type":"string"}},"type":"object"},"advisory.COSUpdate":{"description":"advisory.COSUpdate","properties":{"changed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"featured":{"items":{"type":"string"},"type":"array","uniqueItems":false},"fixed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"id":{"type":"string"},"reference":{"type":"string"},"security":{"items":{"type":"string"},"type":"array","uniqueItems":false},"updated":{"type":"string"}},"type":"object"},"advisory.CPEMatch":{"description":"advisory.CPEMatch","properties":{"criteria":{"type":"string"},"matchCriteriaId":{"type":"string"},"vulnerable":{"type":"boolean"}},"type":"object"},"advisory.CPENode":{"description":"advisory.CPENode","properties":{"cpeMatch":{"items":{"$ref":"#/components/schemas/advisory.CPEMatch"},"type":"array","uniqueItems":false},"negate":{"type":"boolean"},"operator":{"type":"string"}},"type":"object"},"advisory.CSAF":{"description":"advisory.CSAF","properties":{"document":{"$ref":"#/components/schemas/advisory.DocumentMetadata"},"notes":{"description":"Notes holds notes associated with the whole document.\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3217-document-property---notes","items":{"$ref":"#/components/schemas/advisory.CSAFNote"},"type":"array","uniqueItems":false},"product_tree":{"$ref":"#/components/schemas/advisory.ProductBranch"},"vulnerabilities":{"description":"Vulnerabilities contains information about the vulnerabilities,\n(i.e. CVEs), associated threats, and product status.\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#323-vulnerabilities-property","items":{"$ref":"#/components/schemas/advisory.CSAFVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CSAFDistribution":{"description":"advisory.CSAFDistribution","type":"object"},"advisory.CSAFNote":{"description":"advisory.CSAFNote","properties":{"audience":{"type":"string"},"category":{"type":"string"},"text":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.CSAFReference":{"description":"advisory.CSAFReference","properties":{"category":{"type":"string"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CSAFRelationship":{"description":"advisory.CSAFRelationship","properties":{"category":{"type":"string"},"full_product_name":{"$ref":"#/components/schemas/advisory.Product"},"product_reference":{"type":"string"},"relates_to_product_reference":{"type":"string"}},"type":"object"},"advisory.CSAFScore":{"description":"advisory.CSAFScore","properties":{"cvss_v2":{"$ref":"#/components/schemas/advisory.CVSSV2"},"cvss_v3":{"$ref":"#/components/schemas/advisory.CVSSV3"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CSAFVulnerability":{"description":"advisory.CSAFVulnerability","properties":{"cve":{"description":"MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability.\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3232-vulnerabilities-property---cve","type":"string"},"cwe":{"$ref":"#/components/schemas/advisory.Cwe"},"flags":{"description":"Machine readable flags for products related to vulnerability\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3235-vulnerabilities-property---flags","items":{"$ref":"#/components/schemas/advisory.Flag"},"type":"array","uniqueItems":false},"ids":{"description":"List of IDs represents a list of unique labels or tracking IDs for the vulnerability (if such information exists).\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3236-vulnerabilities-property---ids","items":{"$ref":"#/components/schemas/advisory.TrackingID"},"type":"array","uniqueItems":false},"notes":{"description":"Notes holds notes associated with the Vulnerability object.\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3238-vulnerabilities-property---notes","items":{"$ref":"#/components/schemas/advisory.CSAFNote"},"type":"array","uniqueItems":false},"product_status":{"additionalProperties":{"items":{"type":"string"},"type":"array"},"description":"Provide details on the status of the referenced product related to the vulnerability.\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3239-vulnerabilities-property---product-status","type":"object"},"references":{"description":"Vulnerability references holds a list of references associated with this vulnerability item.\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#32310-vulnerabilities-property---references","items":{"$ref":"#/components/schemas/advisory.CSAFReference"},"type":"array","uniqueItems":false},"release_date":{"type":"string"},"remediations":{"description":"Provide details of remediations associated with a Vulnerability\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#32312-vulnerabilities-property---remediations","items":{"$ref":"#/components/schemas/advisory.RemediationData"},"type":"array","uniqueItems":false},"scores":{"description":"Scores holds the scores associated with the Vulnerability object.\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#32313-vulnerabilities-property---scores\nCurrently only CVSS v3 is supported.","items":{"$ref":"#/components/schemas/advisory.CSAFScore"},"type":"array","uniqueItems":false},"threats":{"description":"Provide details of threats associated with a vulnerability.\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#32314-vulnerabilities-property---threats","items":{"$ref":"#/components/schemas/advisory.ThreatData"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CVEDetail":{"description":"advisory.CVEDetail","properties":{"baseScore":{"type":"string"},"cveid":{"type":"string"},"description":{"type":"string"},"vector":{"type":"string"}},"type":"object"},"advisory.CVEDetailsLink":{"description":"advisory.CVEDetailsLink","properties":{"url":{"type":"string"},"value":{"type":"string"}},"type":"object"},"advisory.CVEReference":{"description":"advisory.CVEReference","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CVSS":{"description":"advisory.CVSS","properties":{"score":{"type":"string"},"severity":{"type":"string"},"type":{"type":"string"},"vector":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.CVSSV2":{"description":"advisory.CVSSV2","properties":{"accessComplexity":{"type":"string"},"accessVector":{"type":"string"},"authentication":{"type":"string"},"availabilityImpact":{"type":"string"},"availabilityRequirement":{"type":"string"},"baseScore":{"type":"number"},"collateralDamagePotential":{"type":"string"},"confidentialityImpact":{"type":"string"},"confidentialityRequirement":{"type":"string"},"environmentalScore":{"type":"number"},"exploitability":{"type":"string"},"integrityImpact":{"type":"string"},"integrityRequirement":{"type":"string"},"remediationLevel":{"type":"string"},"reportConfidence":{"type":"string"},"targetDistribution":{"type":"string"},"temporalScore":{"type":"number"}},"type":"object"},"advisory.CVSSV3":{"description":"advisory.CVSSV3","properties":{"attackComplexity":{"type":"string"},"attackVector":{"type":"string"},"availabilityImpact":{"type":"string"},"baseScore":{"type":"number"},"baseSeverity":{"type":"string"},"confidentialityImpact":{"type":"string"},"integrityImpact":{"type":"string"},"privilegesRequired":{"type":"string"},"scope":{"type":"string"},"userInteraction":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.CVSSV40":{"description":"this isn't called baseMetric, because it can contain other metrics -- typically supplemental metrics","properties":{"Automatable":{"type":"string"},"Recovery":{"type":"string"},"Safety":{"type":"string"},"attackComplexity":{"type":"string"},"attackRequirements":{"type":"string"},"attackVector":{"type":"string"},"availabilityRequirement":{"type":"string"},"baseScore":{"type":"number"},"baseSeverity":{"type":"string"},"confidentialityRequirement":{"type":"string"},"exploitMaturity":{"type":"string"},"integrityRequirement":{"type":"string"},"modifiedAttackComplexity":{"type":"string"},"modifiedAttackRequirements":{"type":"string"},"modifiedAttackVector":{"type":"string"},"modifiedPrivilegesRequired":{"type":"string"},"modifiedSubAvailabilityImpact":{"type":"string"},"modifiedSubConfidentialityImpact":{"type":"string"},"modifiedSubIntegrityImpact":{"type":"string"},"modifiedUserInteraction":{"type":"string"},"modifiedVulnAvailabilityImpact":{"type":"string"},"modifiedVulnConfidentialityImpact":{"type":"string"},"modifiedVulnIntegrityImpact":{"type":"string"},"privilegesRequired":{"type":"string"},"providerUrgency":{"type":"string"},"subAvailabilityImpact":{"type":"string"},"subConfidentialityImpact":{"type":"string"},"subIntegrityImpact":{"type":"string"},"userInteraction":{"type":"string"},"valueDensity":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"},"vulnAvailabilityImpact":{"type":"string"},"vulnConfidentialityImpact":{"type":"string"},"vulnIntegrityImpact":{"type":"string"},"vulnerabilityResponseEffort":{"type":"string"}},"type":"object"},"advisory.CVSSV40Threat":{"description":"advisory.CVSSV40Threat","properties":{"baseThreatScore":{"type":"number"},"baseThreatSeverity":{"type":"string"},"exploitMaturity":{"type":"string"}},"type":"object"},"advisory.CWENode":{"description":"advisory.CWENode","type":"object"},"advisory.CanvasExploit":{"description":"advisory.CanvasExploit","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"exploit_pack":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Capec":{"description":"advisory.Capec","properties":{"capec_id":{"type":"string"},"capec_name":{"type":"string"},"capec_url":{"type":"string"},"lang":{"type":"string"}},"type":"object"},"advisory.CarestreamAdvisory":{"description":"advisory.CarestreamAdvisory","properties":{"carestream_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_updated":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Carrier":{"description":"advisory.Carrier","properties":{"advisory_id":{"type":"string"},"affected_product":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CentosPackage":{"description":"advisory.CentosPackage","properties":{"filename":{"type":"string"},"name":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.CertBE":{"description":"advisory.CertBE","properties":{"affected_software":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"mitigation":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"risk":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vulnerability_type":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CertFRAdvisory":{"description":"advisory.CertFRAdvisory","properties":{"affected_systems_fr":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"reference":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"resume_fr":{"type":"string"},"risks_fr":{"type":"string"},"solution_fr":{"type":"string"},"source_fr":{"type":"string"},"title_fr":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CertIN":{"description":"advisory.CertIN","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CertIRSecurityAlert":{"description":"advisory.CertIRSecurityAlert","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary_fa":{"type":"string"},"title_fa":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CertSE":{"description":"advisory.CertSE","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary_sv":{"type":"string"},"title_sv":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CertUA":{"description":"advisory.CertUA","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary_ua":{"type":"string"},"title_ua":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ChainGuard":{"description":"advisory.ChainGuard","properties":{"apkurl":{"type":"string"},"archs":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"description":"un-used","type":"string"},"packages":{"items":{"$ref":"#/components/schemas/advisory.ChainGuardPackage"},"type":"array","uniqueItems":false},"reponame":{"type":"string"},"urlprefix":{"type":"string"}},"type":"object"},"advisory.ChainGuardPackage":{"description":"advisory.ChainGuardPackage","properties":{"name":{"type":"string"},"secfixes":{"items":{"$ref":"#/components/schemas/advisory.ChainGuardSecFix"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.ChainGuardSecFix":{"description":"advisory.ChainGuardSecFix","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"version":{"type":"string"}},"type":"object"},"advisory.CheckPoint":{"description":"advisory.CheckPoint","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_updated":{"type":"string"},"reference":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Chrome":{"description":"advisory.Chrome","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.AffectedChrome"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Ciena":{"description":"advisory.Ciena","properties":{"cves":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"issue_no":{"type":"integer"},"security_advisory_number":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"vulnerable_products":{"items":{"$ref":"#/components/schemas/advisory.VulnerableProduct"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CisaCsafAdv":{"description":"advisory.CisaCsafAdv","properties":{"csaf_json":{"$ref":"#/components/schemas/advisory.CSAF"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CiscoAdvisory":{"description":"advisory.CiscoAdvisory","properties":{"ciscoBugId":{"description":"multiple","type":"string"},"csaf":{"type":"string"},"cve":{"description":"multiple","items":{"type":"string"},"type":"array","uniqueItems":false},"cvrf":{"type":"string"},"cwe":{"description":"multiple","type":"string"},"date_added":{"type":"string"},"id":{"type":"integer"},"identifier":{"type":"string"},"name":{"type":"string"},"related_resources":{"type":"string"},"severity":{"type":"string"},"status":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"totalCount":{"type":"integer"},"updated_at":{"type":"string"},"url":{"type":"string"},"version":{"type":"string"},"workarounds":{"type":"string"},"workflowStatus":{"type":"string"}},"type":"object"},"advisory.CiscoCSAF":{"description":"advisory.CiscoCSAF","properties":{"csaf":{},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"identifier":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CiscoKnownGoodValue":{"description":"advisory.CiscoKnownGoodValue","properties":{"biv_category":{"type":"string"},"biv_hash":{"type":"string"},"date_added":{"type":"string"},"dtype":{"type":"string"},"filename":{"type":"string"},"md5":{"type":"string"},"platform":{"type":"string"},"published":{"type":"string"},"sha1":{"type":"string"},"sha256":{"type":"string"},"sha512":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.CitrixAdvisory":{"description":"advisory.CitrixAdvisory","properties":{"citrixId":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"link":{"type":"string"},"products":{"items":{"type":"string"},"type":"array"},"severity":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.ClarotyVulnerability":{"description":"advisory.ClarotyVulnerability","properties":{"advisory_url":{"type":"string"},"claroty_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_v3":{"type":"number"},"cwe":{"type":"string"},"date_added":{"type":"string"},"product":{"type":"string"},"target":{"type":"string"},"vendor":{"type":"string"},"vendor_advisory_url":{"type":"string"}},"type":"object"},"advisory.CloudBees":{"description":"advisory.CloudBees","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CloudVulnDBAdvisory":{"description":"advisory.CloudVulnDBAdvisory","properties":{"affectedServices":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"link":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"title":{"type":"string"}},"type":"object"},"advisory.CodesysAdvisory":{"description":"advisory.CodesysAdvisory","properties":{"codesys_id":{"type":"string"},"csaf_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_revised":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CommVault":{"description":"advisory.CommVault","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve_details":{"items":{"$ref":"#/components/schemas/advisory.CommVaultCVEDetails"},"type":"array","uniqueItems":false},"cvss_range":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"impacted_product":{"$ref":"#/components/schemas/advisory.CommVaultImpactedProduct"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"resolution":{"$ref":"#/components/schemas/advisory.CommVaultResolution"},"severity":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CommVaultCVEDetails":{"description":"advisory.CommVaultCVEDetails","properties":{"cve_id":{"type":"string"},"cvss":{"type":"string"},"description":{"type":"string"},"external_links":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CommVaultImpactedProduct":{"description":"advisory.CommVaultImpactedProduct","properties":{"description":{"type":"string"},"impacted_product_details":{"items":{"$ref":"#/components/schemas/advisory.CommVaultImpactedProductDetails"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CommVaultImpactedProductDetails":{"description":"advisory.CommVaultImpactedProductDetails","properties":{"affected_versions":{"type":"string"},"platforms":{"items":{"type":"string"},"type":"array","uniqueItems":false},"product_name":{"type":"string"},"resolved_versions":{"type":"string"},"status":{"type":"string"}},"type":"object"},"advisory.CommVaultResolution":{"description":"advisory.CommVaultResolution","properties":{"description":{"type":"string"},"resolution_details":{"items":{"$ref":"#/components/schemas/advisory.CommVaultResolutionDetails"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CommVaultResolutionDetails":{"description":"advisory.CommVaultResolutionDetails","properties":{"feature_release":{"type":"string"},"maintenance_release":{"type":"string"}},"type":"object"},"advisory.CompassSecurity":{"description":"advisory.CompassSecurity","properties":{"csnc_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"effect":{"type":"string"},"introduction":{"type":"string"},"product":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"risk":{"type":"string"},"severity":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"vendor":{"type":"string"}},"type":"object"},"advisory.ContainerOS":{"description":"advisory.ContainerOS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updates":{"items":{"$ref":"#/components/schemas/advisory.COSUpdate"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"advisory.CoreImpactExploit":{"description":"advisory.CoreImpactExploit","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"exploit_type":{"type":"string"},"platform":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.Correction":{"description":"advisory.Correction","properties":{"correctedAt":{"type":"string"},"orelease":{"type":"string"},"release":{"type":"string"}},"type":"object"},"advisory.Credit":{"description":"advisory.Credit","properties":{"lang":{"type":"string"},"type":{"type":"string"},"value":{"type":"string"}},"type":"object"},"advisory.Crestron":{"description":"advisory.Crestron","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"threat":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.CrowdSec":{"description":"advisory.CrowdSec","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"eitw":{"type":"boolean"},"first_seen":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Curl":{"description":"advisory.Curl","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"info":{"$ref":"#/components/schemas/advisory.OCurl"},"url":{"type":"string"}},"type":"object"},"advisory.CurlAffected":{"description":"advisory.CurlAffected","properties":{"ranges":{"items":{"$ref":"#/components/schemas/advisory.CurlRange"},"type":"array","uniqueItems":false},"versions":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CurlCWE":{"description":"advisory.CurlCWE","properties":{"desc":{"type":"string"},"id":{"type":"string"}},"type":"object"},"advisory.CurlCredit":{"description":"advisory.CurlCredit","properties":{"name":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.CurlRange":{"description":"advisory.CurlRange","properties":{"events":{"items":{"additionalProperties":{"type":"string"},"type":"object"},"type":"array","uniqueItems":false},"repo":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.CustomCPE":{"description":"advisory.CustomCPE","properties":{"mcpeapplicability":{"$ref":"#/components/schemas/advisory.MCPEApplicability"},"stringValue":{"type":"string"}},"type":"object"},"advisory.Cvrf":{"description":"advisory.Cvrf","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CvsssV2_3":{"description":"advisory.CvsssV2_3","properties":{"basescore":{"type":"string"},"temporalscore":{"type":"string"}},"type":"object"},"advisory.Cwe":{"description":"advisory.Cwe","properties":{"id":{"type":"string"},"name":{"type":"string"}},"type":"object"},"advisory.CweAcceptanceLevel":{"description":"advisory.CweAcceptanceLevel","properties":{"description":{"type":"string"},"lastModified":{"type":"string"}},"type":"object"},"advisory.CweData":{"description":"advisory.CweData","properties":{"lang":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"},"value":{"type":"string"}},"type":"object"},"advisory.Cwes":{"description":"advisory.Cwes","properties":{"nodes":{"items":{"$ref":"#/components/schemas/advisory.CWENode"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.Cycle":{"description":"advisory.Cycle","properties":{"codename":{"type":"string"},"cycle":{"type":"string"},"discontinued":{},"eol":{},"extendedSupport":{},"latest":{"type":"string"},"latestReleaseDate":{"type":"string"},"link":{"type":"string"},"lts":{},"releaseDate":{"type":"string"},"releaseLabel":{"type":"string"},"support":{}},"type":"object"},"advisory.DBSpecific":{"description":"advisory.DBSpecific","properties":{"CWE":{"$ref":"#/components/schemas/advisory.CurlCWE"},"award":{"$ref":"#/components/schemas/advisory.Award"},"last_affected":{"type":"string"},"package":{"type":"string"},"severity":{"type":"string"},"url":{"type":"string"},"www":{"type":"string"}},"type":"object"},"advisory.DFNCert":{"description":"advisory.DFNCert","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary_de":{"type":"string"},"title_de":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.DLink":{"description":"advisory.DLink","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.DNN":{"description":"advisory.DNN","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Dahua":{"description":"advisory.Dahua","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.DanFossCVEDetails":{"description":"advisory.DanFossCVEDetails","properties":{"base_score":{"type":"string"},"cve":{"type":"string"},"severity":{"type":"string"}},"type":"object"},"advisory.Danfoss":{"description":"advisory.Danfoss","properties":{"affected_products":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve_details":{"items":{"$ref":"#/components/schemas/advisory.DanFossCVEDetails"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"mitigation":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Dassault":{"description":"advisory.Dassault","properties":{"affected_products":{"type":"string"},"affected_versions":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details":{"type":"string"},"severity":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.DateTime":{"description":"advisory.DateTime","type":"object"},"advisory.DebianCVE":{"description":"advisory.DebianCVE","properties":{"cve":{"type":"string"},"debianbug":{"type":"integer"},"description":{"type":"string"},"releases":{"items":{"$ref":"#/components/schemas/advisory.AffectedDebianRelease"},"type":"array","uniqueItems":false},"scope":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.DebianSecurityAdvisory":{"description":"advisory.DebianSecurityAdvisory","properties":{"affected_packages":{"items":{"$ref":"#/components/schemas/advisory.AffectedDebianPackage"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"dsa":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Dell":{"description":"advisory.Dell","properties":{"articleNumber":{"type":"string"},"combinedProductList":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"dell_cves":{"items":{"$ref":"#/components/schemas/advisory.DellCVE"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.DellCVE":{"description":"advisory.DellCVE","properties":{"cve":{"type":"string"},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"}},"type":"object"},"advisory.DeltaAdvisory":{"description":"advisory.DeltaAdvisory","properties":{"affectedProducts":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"link":{"type":"string"},"recommendedAction":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.DistroPackage":{"description":"advisory.DistroPackage","properties":{"binary":{"type":"boolean"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"license":{"items":{"type":"string"},"type":"array","uniqueItems":false},"name":{"type":"string"},"secFixes":{"items":{"$ref":"#/components/schemas/advisory.SecFix"},"type":"array"},"versions":{"items":{"$ref":"#/components/schemas/advisory.DistroVersion"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.DistroVersion":{"description":"advisory.DistroVersion","properties":{"arch":{"type":"string"},"published_date":{"type":"string"},"release":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.Django":{"description":"advisory.Django","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.DocumentMetadata":{"description":"Document contains metadata about the CSAF document itself.\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#321-document-property","properties":{"category":{"type":"string"},"csaf_version":{"type":"string"},"distribution":{"$ref":"#/components/schemas/advisory.CSAFDistribution"},"lang":{"type":"string"},"notes":{"description":"used by ncsc","items":{"$ref":"#/components/schemas/advisory.CSAFNote"},"type":"array","uniqueItems":false},"publisher":{"$ref":"#/components/schemas/advisory.Publisher"},"references":{"items":{"$ref":"#/components/schemas/advisory.CSAFReference"},"type":"array","uniqueItems":false},"title":{"description":"Aggregate severity is a vehicle that is provided by the document producer to convey the urgency and\ncriticality with which the one or more vulnerabilities reported should be addressed.","type":"string"},"tracking":{"$ref":"#/components/schemas/advisory.Tracking"}},"type":"object"},"advisory.DocumentPublisher":{"description":"advisory.DocumentPublisher","properties":{"contact_details":{"type":"string"},"issuing_authority":{"type":"string"},"type":{"description":"the json for this is missing/broke","type":"integer"}},"type":"object"},"advisory.DotCMS":{"description":"advisory.DotCMS","properties":{"credit":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"fixed_version":{"type":"string"},"issue_id":{"type":"string"},"mitigation":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.DragosAdvisory":{"description":"advisory.DragosAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"link":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.Draytek":{"description":"advisory.Draytek","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Drupal":{"description":"advisory.Drupal","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"project":{"type":"string"},"risk":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.EOLAlibaba":{"description":"advisory.EOLAlibaba","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"eol_date":{"type":"string"},"eol_name":{"type":"string"},"product":{"type":"string"},"release_date":{"type":"string"},"url":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.EOLMicrosoft":{"description":"advisory.EOLMicrosoft","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"edition":{"type":"string"},"extended_end_date":{"type":"string"},"mainstream_date":{"type":"string"},"product":{"type":"string"},"release":{"type":"string"},"release_end_date":{"type":"string"},"release_start_date":{"type":"string"},"retirement_date":{"type":"string"},"start_date":{"type":"string"},"support_policy":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.EOLReleaseData":{"description":"advisory.EOLReleaseData","properties":{"already_eol":{"type":"boolean"},"branch":{"description":"Alpine Linux","type":"string"},"branch_url":{"description":"Alpine Linux","type":"string"},"codename":{"type":"string"},"cpe":{"type":"string"},"eol_date":{"type":"string"},"eol_date_extended_support":{"description":"Oracle Linux, Solaris","type":"string"},"eol_date_premier_support":{"description":"Oracle Linux, Solaris","type":"string"},"eol_elts_date":{"type":"string"},"eol_lts_date":{"type":"string"},"git_branch":{"description":"Alpine Linux","type":"string"},"git_branch_url":{"description":"Alpine Linux","type":"string"},"lts":{"description":"Ubuntu","type":"boolean"},"minor_releases":{"description":"Alpine Linux","items":{"type":"string"},"type":"array","uniqueItems":false},"product":{"type":"string"},"release_date":{"type":"string"},"release_name":{"type":"string"},"source_url":{"type":"string"},"technology_level":{"description":"AIX","type":"string"},"vendor":{"type":"string"},"version":{"type":"string"},"version_api":{"description":"Android","type":"string"},"version_darwin":{"description":"macOS","type":"string"},"version_sunos":{"description":"Solaris","type":"string"},"windows_current_build":{"description":"Microsoft Windows","type":"string"},"windows_display_version":{"description":"Microsoft Windows","type":"string"},"windows_edition_id":{"description":"Microsoft Windows","type":"string"},"windows_insider_preview":{"description":"Microsoft Windows","type":"boolean"}},"type":"object"},"advisory.EUVD":{"description":"advisory.EUVD","properties":{"aliases":{"items":{"type":"string"},"type":"array","uniqueItems":false},"assigner":{"type":"string"},"base_score":{"type":"number"},"base_score_vector":{"type":"string"},"base_score_version":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_updated":{"type":"string"},"description":{"type":"string"},"enisa_id_product":{"items":{"$ref":"#/components/schemas/advisory.EnisaIDProduct"},"type":"array","uniqueItems":false},"enisa_id_vendor":{"items":{"$ref":"#/components/schemas/advisory.EnisaIDVendor"},"type":"array","uniqueItems":false},"epss":{"type":"number"},"exploited":{"description":"This field is exploited field from endpoint /api/vulnerabilities.\napidocs : https://euvd.enisa.europa.eu/apidoc\nNote: There are records where exploited_since is populated with a valid date,\nbut it still shows up under non_exploitable data set","type":"boolean"},"exploited_since":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"advisory.EatonAdvisory":{"description":"advisory.EatonAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"eaton_id":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.EcoSystem":{"description":"advisory.EcoSystem","properties":{"severity":{"type":"string"},"spl":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.Elastic":{"description":"advisory.Elastic","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"esaid":{"type":"string"},"remediation":{"type":"string"},"summary":{"type":"string"}},"type":"object"},"advisory.Elspec":{"description":"advisory.Elspec","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"severity":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.EmergingThreatsSnort":{"description":"advisory.EmergingThreatsSnort","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"rev":{"type":"string"},"rule_disabled":{"type":"boolean"},"rule_name":{"type":"string"},"sid":{"type":"integer"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.EmersonAdvisory":{"description":"advisory.EmersonAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"emerson_id":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.EndOfLife":{"description":"advisory.EndOfLife","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cycles":{"items":{"$ref":"#/components/schemas/advisory.Cycle"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Endress":{"description":"advisory.Endress","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"impact":{"type":"string"},"mitigation":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.EnisaIDProduct":{"description":"advisory.EnisaIDProduct","properties":{"id":{"type":"string"},"product_name":{"type":"string"},"product_version":{"type":"string"}},"type":"object"},"advisory.EnisaIDVendor":{"description":"advisory.EnisaIDVendor","properties":{"id":{"type":"string"},"vendor_name":{"type":"string"}},"type":"object"},"advisory.Event":{"description":"advisory.Event","properties":{"fixed":{"type":"string"},"introduced":{"type":"string"},"last_affected":{"type":"string"},"limit":{"type":"string"}},"type":"object"},"advisory.ExodusIntel":{"description":"advisory.ExodusIntel","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"disclosed_public":{"type":"string"},"disclosed_vendor":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ExploitDBExploitv2":{"description":"advisory.ExploitDBExploitv2","properties":{"author":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"edb_id":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ExternalReferences":{"description":"advisory.ExternalReferences","properties":{"description":{"type":"string"},"external_id":{"type":"string"},"source_name":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.F5":{"description":"advisory.F5","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.FSecure":{"description":"advisory.FSecure","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Fanuc":{"description":"advisory.Fanuc","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Fastly":{"description":"advisory.Fastly","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Festo":{"description":"advisory.Festo","properties":{"csaf_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.FileCloud":{"description":"advisory.FileCloud","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.FileZilla":{"description":"advisory.FileZilla","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.FixAff":{"description":"advisory.FixAff","properties":{"affected_since":{"type":"string"},"fixed_version":{"type":"string"},"patch_url":{"type":"string"}},"type":"object"},"advisory.Flag":{"description":"advisory.Flag","properties":{"date":{"type":"string"},"group_ids":{"items":{"type":"string"},"type":"array","uniqueItems":false},"label":{"type":"string"},"product_ids":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.FlattSecurity":{"description":"advisory.FlattSecurity","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ForgeRock":{"description":"advisory.ForgeRock","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.FortinetAdvisory":{"description":"advisory.FortinetAdvisory","properties":{"acknowledgement":{"type":"string"},"affectedProducts":{"items":{"type":"string"},"type":"array"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvssv3":{"type":"string"},"date_added":{"type":"string"},"irnumber":{"type":"string"},"link":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"solutions":{"items":{"type":"string"},"type":"array"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.FortinetIPS":{"description":"advisory.FortinetIPS","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"epss":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Foxit":{"description":"advisory.Foxit","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.FoxitAffected"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.FoxitAffected":{"description":"advisory.FoxitAffected","properties":{"product":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.Fresenius":{"description":"advisory.Fresenius","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"mitigation":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GCP":{"description":"advisory.GCP","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GEGas":{"description":"advisory.GEGas","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GEHealthcareAdvisory":{"description":"advisory.GEHealthcareAdvisory","properties":{"base_score":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_updated":{"type":"string"},"description":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GHAdvisoryJSONLean":{"description":"advisory.GHAdvisoryJSONLean","properties":{"classification":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"$ref":"#/components/schemas/advisory.GHCvss"},"cwes":{"$ref":"#/components/schemas/advisory.Cwes"},"databaseId":{"type":"integer"},"date_added":{"type":"string"},"description":{"type":"string"},"ghsaId":{"type":"string"},"id":{"type":"string"},"identifiers":{"items":{"$ref":"#/components/schemas/advisory.GHIdentifier"},"type":"array","uniqueItems":false},"notificationsPermalink":{"type":"string"},"origin":{"type":"string"},"permalink":{"type":"string"},"publishedAt":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.GHReference"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"summary":{"type":"string"},"updated_at":{"type":"string"},"vulnerabilities":{"$ref":"#/components/schemas/advisory.GHVulnerabilities"},"withdrawnAt":{"type":"string"}},"type":"object"},"advisory.GHCvss":{"description":"advisory.GHCvss","properties":{"score":{"type":"number"},"vectorString":{"type":"string"}},"type":"object"},"advisory.GHIdentifier":{"description":"advisory.GHIdentifier","properties":{"type":{"type":"string"},"value":{"type":"string"}},"type":"object"},"advisory.GHNode":{"description":"advisory.GHNode","properties":{"package":{"$ref":"#/components/schemas/advisory.GHPackage"},"severity":{"type":"string"},"updatedAt":{"type":"string"},"vulnerableVersionRange":{"type":"string"}},"type":"object"},"advisory.GHPackage":{"description":"advisory.GHPackage","properties":{"ecosystem":{"type":"string"},"name":{"type":"string"}},"type":"object"},"advisory.GHReference":{"description":"advisory.GHReference","properties":{"url":{"type":"string"}},"type":"object"},"advisory.GHSA":{"description":"advisory.GHSA","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"ghsa":{"$ref":"#/components/schemas/advisory.OriginalGHSA"},"url":{"type":"string"}},"type":"object"},"advisory.GHSAAffected":{"description":"advisory.GHSAAffected","properties":{"ecosystem_specific":{"$ref":"#/components/schemas/advisory.GHSAEcoSystemSpecific"},"package":{"$ref":"#/components/schemas/advisory.GHSAPackage"},"ranges":{"items":{"$ref":"#/components/schemas/advisory.GHSARange"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.GHSADatabaseSpecific":{"description":"advisory.GHSADatabaseSpecific","properties":{"cwe_ids":{"items":{"type":"string"},"type":"array","uniqueItems":false},"github_reviewed":{"type":"boolean"},"github_reviewed_at":{"type":"string"},"nvd_published_at":{"type":"string"},"severity":{"type":"string"}},"type":"object"},"advisory.GHSAEcoSystemSpecific":{"description":"advisory.GHSAEcoSystemSpecific","properties":{"affected_functions":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.GHSAEvent":{"description":"advisory.GHSAEvent","properties":{"fixed":{"type":"string"},"introduced":{"type":"string"}},"type":"object"},"advisory.GHSAPackage":{"description":"advisory.GHSAPackage","properties":{"ecosystem":{"type":"string"},"name":{"type":"string"}},"type":"object"},"advisory.GHSARange":{"description":"advisory.GHSARange","properties":{"events":{"items":{"$ref":"#/components/schemas/advisory.GHSAEvent"},"type":"array","uniqueItems":false},"type":{"type":"string"}},"type":"object"},"advisory.GHSAReference":{"description":"advisory.GHSAReference","properties":{"type":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GHSASeverity":{"description":"advisory.GHSASeverity","properties":{"score":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.GHVulnerabilities":{"description":"advisory.GHVulnerabilities","properties":{"nodes":{"items":{"$ref":"#/components/schemas/advisory.GHNode"},"type":"array","uniqueItems":false},"totalCount":{"type":"integer"}},"type":"object"},"advisory.GMOCyberSecurity":{"description":"advisory.GMOCyberSecurity","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary_ja":{"type":"string"},"title_ja":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Gallagher":{"description":"advisory.Gallagher","properties":{"activeExploitation":{"type":"boolean"},"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"fixes":{"type":"string"},"reportedBy":{"type":"string"},"severity":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Gen":{"description":"advisory.Gen","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"id":{"description":"not all of them have this","type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Genetec":{"description":"advisory.Genetec","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Gigabyte":{"description":"advisory.Gigabyte","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"link":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.GitHubExploit":{"description":"advisory.GitHubExploit","properties":{"clone_https_url":{"type":"string"},"clone_ssh_url":{"type":"string"},"clone_ssh_url_cached":{"type":"string"},"currently_trending":{"type":"boolean"},"cve":{"type":"string"},"date_added":{"type":"string"},"date_last_revised":{"type":"string"},"exploit_type":{"type":"string"},"forks":{"type":"integer"},"html_url":{"type":"string"},"id":{"type":"string"},"language":{"type":"string"},"reference_url":{"type":"string"},"refsource":{"type":"string"},"repo_full_path":{"type":"string"},"repo_id":{"type":"string"},"repo_name":{"type":"string"},"repo_owner":{"type":"string"},"stars":{"type":"integer"}},"type":"object"},"advisory.GitLabExploit":{"description":"advisory.GitLabExploit","properties":{"clone_https_url":{"type":"string"},"clone_ssh_url":{"type":"string"},"clone_ssh_url_cached":{"type":"string"},"cve":{"type":"string"},"date_added":{"type":"string"},"date_last_revised":{"type":"string"},"exploit_type":{"type":"string"},"forks":{"type":"integer"},"html_url":{"type":"string"},"language":{"type":"string"},"reference_url":{"type":"string"},"refsource":{"type":"string"},"repo_full_path":{"type":"string"},"repo_id":{"type":"string"},"repo_name":{"type":"string"},"repo_owner":{"type":"string"},"stars":{"type":"integer"}},"type":"object"},"advisory.GiteeExploit":{"description":"advisory.GiteeExploit","properties":{"clone_https_url":{"type":"string"},"clone_ssh_url":{"type":"string"},"clone_ssh_url_cached":{"type":"string"},"cve":{"type":"string"},"date_added":{"type":"string"},"date_last_revised":{"type":"string"},"exploit_type":{"type":"string"},"forks":{"type":"integer"},"html_url":{"type":"string"},"language":{"type":"string"},"reference_url":{"type":"string"},"refsource":{"type":"string"},"repo_full_path":{"type":"string"},"repo_id":{"type":"string"},"repo_name":{"type":"string"},"repo_owner":{"type":"string"},"stars":{"type":"integer"}},"type":"object"},"advisory.GitlabAdvisory":{"description":"advisory.GitlabAdvisory","properties":{"affected_range":{"type":"string"},"affected_versions":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_v2":{"type":"string"},"cvss_v3":{"type":"string"},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"filename":{"type":"string"},"fixed_versions":{"items":{"type":"string"},"type":"array","uniqueItems":false},"ghsa":{"items":{"type":"string"},"type":"array","uniqueItems":false},"gitlab_url":{"type":"string"},"identifier":{"type":"string"},"identifiers":{"items":{"type":"string"},"type":"array","uniqueItems":false},"not_impacted":{"type":"string"},"package_manager":{"type":"string"},"package_name":{"type":"string"},"package_slug":{"type":"string"},"pubdate":{"type":"string"},"solution":{"type":"string"},"title":{"type":"string"},"urls":{"items":{"type":"string"},"type":"array","uniqueItems":false},"uuid":{"type":"string"}},"type":"object"},"advisory.Glibc":{"description":"advisory.Glibc","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GnuTLS":{"description":"advisory.GnuTLS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GoCredits":{"description":"advisory.GoCredits","properties":{"name":{"type":"string"}},"type":"object"},"advisory.GoEvent":{"description":"advisory.GoEvent","properties":{"fixed":{"type":"string"},"introduced":{"type":"string"}},"type":"object"},"advisory.GoVulnAffected":{"description":"advisory.GoVulnAffected","properties":{"database_specific":{"$ref":"#/components/schemas/advisory.GoVulnDatabaseSpecific"},"ecosystem_specific":{"$ref":"#/components/schemas/advisory.GoVulnEcosystemSpecific"},"package":{"$ref":"#/components/schemas/advisory.GoVulnPackage"},"ranges":{"items":{"$ref":"#/components/schemas/advisory.GoVulnRanges"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.GoVulnDatabaseSpecific":{"description":"advisory.GoVulnDatabaseSpecific","properties":{"url":{"type":"string"}},"type":"object"},"advisory.GoVulnEcosystemSpecific":{"description":"advisory.GoVulnEcosystemSpecific","properties":{"imports":{"items":{"$ref":"#/components/schemas/advisory.GoVulnImport"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.GoVulnImport":{"description":"advisory.GoVulnImport","properties":{"path":{"type":"string"},"symbols":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.GoVulnJSON":{"description":"advisory.GoVulnJSON","properties":{"advisory_url":{"type":"string"},"affected":{"items":{"$ref":"#/components/schemas/advisory.GoVulnAffected"},"type":"array","uniqueItems":false},"aliases":{"items":{"type":"string"},"type":"array","uniqueItems":false},"credits":{"items":{"$ref":"#/components/schemas/advisory.GoCredits"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details":{"type":"string"},"ghsa":{"items":{"type":"string"},"type":"array","uniqueItems":false},"go_advisory_id":{"type":"string"},"modified":{"type":"string"},"published":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.GoVulnReference"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.GoVulnPackage":{"description":"advisory.GoVulnPackage","properties":{"ecosystem":{"type":"string"},"name":{"type":"string"}},"type":"object"},"advisory.GoVulnRanges":{"description":"advisory.GoVulnRanges","properties":{"events":{"items":{"$ref":"#/components/schemas/advisory.GoEvent"},"type":"array","uniqueItems":false},"type":{"type":"string"}},"type":"object"},"advisory.GoVulnReference":{"description":"advisory.GoVulnReference","properties":{"type":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Grafana":{"description":"advisory.Grafana","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GreyNoiseDetection":{"description":"advisory.GreyNoiseDetection","properties":{"category":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"intention":{"type":"string"},"label":{"type":"string"},"name":{"type":"string"},"recommend_block":{"type":"boolean"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"related_tags":{"items":{"$ref":"#/components/schemas/advisory.GreyNoiseTags"},"type":"array","uniqueItems":false},"slug":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GreyNoiseTags":{"description":"advisory.GreyNoiseTags","properties":{"category":{"type":"string"},"id":{"type":"string"},"intention":{"type":"string"},"name":{"type":"string"},"slug":{"type":"string"}},"type":"object"},"advisory.HCL":{"description":"advisory.HCL","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.HIKVision":{"description":"advisory.HIKVision","properties":{"advisory_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"link":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.HKCert":{"description":"advisory.HKCert","properties":{"affected":{"items":{"type":"string"},"type":"array"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"impact":{"type":"string"},"link":{"type":"string"},"relatedLinks":{"items":{"type":"string"},"type":"array"},"risk":{"type":"string"},"solutions":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.HMS":{"description":"advisory.HMS","properties":{"affected_products":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"impact":{"type":"string"},"mitigation":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.HP":{"description":"advisory.HP","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"link":{"type":"string"},"severity":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.HPE":{"description":"advisory.HPE","properties":{"csaf":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Hacktivity":{"description":"advisory.Hacktivity","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"float64":{"type":"number"},"rank":{"type":"integer"},"reports_submitted":{"type":"integer"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.HardwareUpdate":{"description":"advisory.HardwareUpdate","properties":{"affectedVersions":{"type":"string"},"cves":{"items":{"type":"string"},"type":"array"},"hardwarePlatform":{"type":"string"},"system":{"type":"string"},"updatedVersion":{"type":"string"}},"type":"object"},"advisory.HarmonyOS":{"description":"advisory.HarmonyOS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.HashiCorp":{"description":"advisory.HashiCorp","properties":{"affected_products":{"type":"string"},"background":{"type":"string"},"bulletin_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details":{"type":"string"},"remediation":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.HaskellAffected":{"description":"advisory.HaskellAffected","properties":{"affected_constraint":{"type":"string"},"affected_versions":{"items":{"$ref":"#/components/schemas/advisory.HaskellVersion"},"type":"array","uniqueItems":false},"arch":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"os":{"items":{"type":"string"},"type":"array","uniqueItems":false},"package":{"type":"string"}},"type":"object"},"advisory.HaskellSADBAdvisory":{"description":"advisory.HaskellSADBAdvisory","properties":{"advisory_id":{"type":"string"},"affected_packages":{"items":{"$ref":"#/components/schemas/advisory.HaskellAffected"},"type":"array","uniqueItems":false},"aliases":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwes":{"items":{"type":"integer"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"keywords":{"items":{"type":"string"},"type":"array","uniqueItems":false},"references":{"additionalProperties":{"items":{"type":"string"},"type":"array"},"type":"object"},"related_vulns":{"items":{"type":"string"},"type":"array","uniqueItems":false},"updated_at":{"type":"string"}},"type":"object"},"advisory.HaskellVersion":{"description":"advisory.HaskellVersion","properties":{"fixed":{"type":"string"},"introduced":{"type":"string"}},"type":"object"},"advisory.HillromAdvisory":{"description":"advisory.HillromAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Hitachi":{"description":"advisory.Hitachi","properties":{"affectedProducts":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixedProducts":{"type":"string"},"hitachiId":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.HitachiEnergy":{"description":"advisory.HitachiEnergy","properties":{"advisory_id":{"type":"string"},"csaf_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"exploited":{"type":"boolean"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Honeywell":{"description":"advisory.Honeywell","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Huawei":{"description":"advisory.Huawei","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"sa_number":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.HuaweiEulerOS":{"description":"advisory.HuaweiEulerOS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"integer"},"packages":{"type":"string"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"synopsis":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.HuaweiIPS":{"description":"advisory.HuaweiIPS","properties":{"cnnvd":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_updated":{"type":"string"},"name":{"type":"string"},"severity":{"type":"string"},"threat_id":{"type":"integer"},"url":{"type":"string"},"vendor":{"type":"string"}},"type":"object"},"advisory.IAVA":{"description":"advisory.IAVA","properties":{"IAVA":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.IBM":{"description":"advisory.IBM","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ITW":{"description":"advisory.ITW","properties":{"cve":{"type":"string"},"date_added":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.ITWExploit":{"description":"advisory.ITWExploit","properties":{"advisory":{"type":"string"},"affected_versions":{"type":"string"},"analysis_url":{"type":"string"},"bug_introducing_change_list_url":{"type":"string"},"claimed_attribution":{"type":"string"},"claimed_attribution_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_discovered":{"type":"string"},"date_patched":{"type":"string"},"description":{"type":"string"},"first_patched_version":{"type":"string"},"patch_change_list_url":{"type":"string"},"product":{"type":"string"},"reported_by":{"type":"string"},"root_cause_analysis_url":{"type":"string"},"vendor":{"type":"string"},"vulnerability_type":{"type":"string"}},"type":"object"},"advisory.IVal":{"description":"advisory.IVal","properties":{"Value":{"type":"string"}},"type":"object"},"advisory.Idemia":{"description":"advisory.Idemia","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"sbid":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.IdentificationHelper":{"additionalProperties":{},"description":"advisory.IdentificationHelper","type":"object"},"advisory.Igel":{"description":"advisory.Igel","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Impact":{"description":"advisory.Impact","properties":{"capecId":{"type":"string"},"descriptions":{"items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.IncibeAdvisory":{"description":"advisory.IncibeAdvisory","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"detail":{"type":"string"},"link":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"solution":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.Intel":{"description":"advisory.Intel","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"link":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.IpIntelRecord":{"description":"advisory.IpIntelRecord","properties":{"asn":{"type":"string"},"city":{"type":"string"},"country":{"type":"string"},"country_code":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"feed_ids":{"items":{"type":"string"},"type":"array","uniqueItems":false},"hostnames":{"items":{"type":"string"},"type":"array","uniqueItems":false},"ip":{"type":"string"},"lastSeen":{"type":"string"},"matches":{"items":{"type":"string"},"type":"array","uniqueItems":false},"port":{"type":"integer"},"ssl":{"type":"boolean"},"type":{"$ref":"#/components/schemas/advisory.RecordType"}},"type":"object"},"advisory.IsraeliAlert":{"description":"advisory.IsraeliAlert","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details_he":{"type":"string"},"handling_he":{"type":"string"},"link":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"summary_he":{"type":"string"},"title_he":{"type":"string"}},"type":"object"},"advisory.IsraeliVulnerability":{"description":"advisory.IsraeliVulnerability","properties":{"ILVNId":{"type":"string"},"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"solution":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Issued":{"description":"advisory.Issued","type":"object"},"advisory.Istio":{"description":"advisory.Istio","properties":{"affected_version":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Ivanti":{"description":"advisory.Ivanti","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.IvantiRSS":{"description":"advisory.IvantiRSS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.JFrog":{"description":"advisory.JFrog","properties":{"cpes":{"items":{"$ref":"#/components/schemas/advisory.NVD20CVECPEMatch"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"product":{"type":"string"},"severity":{"type":"string"},"summary":{"type":"string"},"url":{"type":"string"},"versions":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.JNJAdvisory":{"description":"advisory.JNJAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.JVN":{"description":"advisory.JVN","properties":{"affected_en":{"type":"string"},"affected_ja":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description_en":{"type":"string"},"description_ja":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"solution_en":{"type":"string"},"solution_ja":{"type":"string"},"summary_en":{"type":"string"},"summary_ja":{"type":"string"},"title_en":{"type":"string"},"title_ja":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.JVNAdvisoryItem":{"description":"advisory.JVNAdvisoryItem","properties":{"cpe":{"items":{"$ref":"#/components/schemas/advisory.JVNCPE"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"items":{"$ref":"#/components/schemas/advisory.CVSS"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"description_en":{"type":"string"},"identifier":{"type":"string"},"issued":{"type":"string"},"modified":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.JVNReference"},"type":"array","uniqueItems":false},"title":{"type":"string"},"title_en":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"url_en":{"type":"string"}},"type":"object"},"advisory.JVNCPE":{"description":"advisory.JVNCPE","properties":{"cpe":{"type":"string"},"product":{"type":"string"},"vendor":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.JVNReference":{"description":"advisory.JVNReference","properties":{"id":{"type":"string"},"source":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.Jenkins":{"description":"advisory.Jenkins","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fix":{"type":"string"},"link":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.JetBrains":{"description":"advisory.JetBrains","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"product":{"type":"string"},"resolved_in":{"items":{"type":"string"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.JohnsonControls":{"description":"advisory.JohnsonControls","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"mitigation":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Juniper":{"description":"advisory.Juniper","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss3_score":{"type":"string"},"cvss3_vector":{"type":"string"},"cvss4_score":{"type":"string"},"cvss4_vector":{"type":"string"},"date_added":{"type":"string"},"fixed":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.K8S":{"description":"advisory.K8S","properties":{"content":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"issue_id":{"type":"integer"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.KEVCatalogVulnerability":{"description":"advisory.KEVCatalogVulnerability","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwes":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"dueDate":{"type":"string"},"knownRansomwareCampaignUse":{"type":"string"},"notes":{"type":"string"},"product":{"type":"string"},"requiredAction":{"type":"string"},"shortDescription":{"type":"string"},"vendorProject":{"type":"string"},"vulnerabilityName":{"type":"string"}},"type":"object"},"advisory.KRCertAdvisory":{"description":"advisory.KRCertAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description_ko":{"type":"string"},"link":{"type":"string"},"overview_ko":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"title_ko":{"type":"string"}},"type":"object"},"advisory.KasperskyICSCERTAdvisory":{"description":"advisory.KasperskyICSCERTAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"klcert_id":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Kb":{"description":"advisory.Kb","properties":{"kb_url":{"type":"string"},"ms_date_added":{"type":"string"},"status":{"type":"string"},"supercedence":{"type":"string"},"value":{"type":"string"}},"type":"object"},"advisory.KbThreatDescription":{"description":"advisory.KbThreatDescription","properties":{"dos":{"type":"string"},"exploited":{"type":"string"},"latest_software_release":{"type":"string"},"level":{"items":{"type":"string"},"type":"array","uniqueItems":false},"older_software_release":{"type":"string"},"publicly_disclosed":{"type":"string"},"type":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.KoreLogic":{"description":"advisory.KoreLogic","properties":{"affected_product":{"type":"string"},"affected_vendor":{"type":"string"},"affected_version":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Kunbus":{"description":"advisory.Kunbus","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.LG":{"description":"advisory.LG","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Lantronix":{"description":"advisory.Lantronix","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Lenovo":{"description":"advisory.Lenovo","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"industry_identifiers":{"items":{"type":"string"},"type":"array","uniqueItems":false},"last_updated":{"type":"string"},"lenovo_id":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.LexmarkAdvisory":{"description":"advisory.LexmarkAdvisory","properties":{"affectedProducts":{"items":{"$ref":"#/components/schemas/advisory.AffectedProduct"},"type":"array"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details":{"type":"string"},"impact":{"type":"string"},"lastUpdate":{"type":"string"},"link":{"type":"string"},"publicReleaseDate":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"revision":{"type":"string"},"summary":{"type":"string"},"updated_at":{"type":"string"},"workarounds":{"type":"string"}},"type":"object"},"advisory.LibreOffice":{"description":"advisory.LibreOffice","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Linux":{"description":"advisory.Linux","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.LogSource":{"description":"advisory.LogSource","properties":{"category":{"type":"string"},"definition":{"type":"string"},"product":{"type":"string"},"service":{"type":"string"}},"type":"object"},"advisory.LolAdvs":{"description":"advisory.LolAdvs","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"lol_json":{"additionalProperties":{},"type":"object"},"mitre_id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MACert":{"description":"advisory.MACert","properties":{"affected_systems_fr":{"type":"string"},"assessment_fr":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"impact_fr":{"type":"string"},"reference":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"risk_fr":{"type":"string"},"risks_fr":{"type":"string"},"solution_fr":{"type":"string"},"title_fr":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MAffected":{"description":"advisory.MAffected","properties":{"collectionURL":{"type":"string"},"cpes":{"items":{"type":"string"},"type":"array","uniqueItems":false},"defaultStatus":{"type":"string"},"packageName":{"type":"string"},"packageURL":{"type":"string"},"platforms":{"items":{"type":"string"},"type":"array","uniqueItems":false},"product":{"type":"string"},"repo":{"type":"string"},"vendor":{"type":"string"},"versions":{"items":{"$ref":"#/components/schemas/advisory.MVersion"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.MBranch":{"description":"advisory.MBranch","properties":{"Branch":{"items":{"$ref":"#/components/schemas/advisory.MBranch"},"type":"array","uniqueItems":false},"FullProductName":{"items":{"$ref":"#/components/schemas/advisory.MFullProductName"},"type":"array","uniqueItems":false},"Items":{"items":{"$ref":"#/components/schemas/advisory.MItem"},"type":"array","uniqueItems":false},"name":{"type":"string"},"type":{"description":"diff","type":"integer"}},"type":"object"},"advisory.MCPEApplicability":{"description":"advisory.MCPEApplicability","properties":{"negate":{"type":"boolean"},"nodes":{"items":{"$ref":"#/components/schemas/advisory.MNodes"},"type":"array","uniqueItems":false},"operator":{"type":"string"}},"type":"object"},"advisory.MCPEMatch":{"description":"advisory.MCPEMatch","properties":{"criteria":{"type":"string"},"matchCriteriaId":{"type":"string"},"versionEndExcluding":{"type":"string"},"versionEndIncluding":{"type":"string"},"versionStartExcluding":{"type":"string"},"versionStartIncluding":{"type":"string"},"vulnerable":{"type":"boolean"}},"type":"object"},"advisory.MCna":{"description":"advisory.MCna","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.MAffected"},"type":"array","uniqueItems":false},"cpeApplicability":{"items":{"$ref":"#/components/schemas/advisory.CustomCPE"},"type":"array","uniqueItems":false},"credits":{"items":{"$ref":"#/components/schemas/advisory.Credit"},"type":"array","uniqueItems":false},"descriptions":{"items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false},"impacts":{"items":{"$ref":"#/components/schemas/advisory.Impact"},"type":"array","uniqueItems":false},"metrics":{"items":{"$ref":"#/components/schemas/advisory.Metric"},"type":"array","uniqueItems":false},"problemTypes":{"items":{"$ref":"#/components/schemas/advisory.MProblemTypes"},"type":"array","uniqueItems":false},"providerMetadata":{"$ref":"#/components/schemas/advisory.MProviderMetadata"},"references":{"items":{"$ref":"#/components/schemas/advisory.MReference"},"type":"array","uniqueItems":false},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"timeline":{"items":{"$ref":"#/components/schemas/advisory.Timeline"},"type":"array","uniqueItems":false},"title":{"type":"string"}},"type":"object"},"advisory.MContainers":{"description":"advisory.MContainers","properties":{"adp":{"items":{"$ref":"#/components/schemas/advisory.ADPContainer"},"type":"array","uniqueItems":false},"cna":{"$ref":"#/components/schemas/advisory.MCna"}},"type":"object"},"advisory.MCveMetadata":{"description":"advisory.MCveMetadata","properties":{"assignerOrgId":{"type":"string"},"assignerShortName":{"type":"string"},"cveId":{"type":"string"},"datePublished":{"type":"string"},"dateReserved":{"type":"string"},"dateUpdated":{"type":"string"},"state":{"type":"string"}},"type":"object"},"advisory.MCvssV20":{"description":"advisory.MCvssV20","properties":{"accessVector":{"type":"string"},"attackComplexity":{"type":"string"},"authentication":{"type":"string"},"availabilityImpact":{"type":"string"},"baseScore":{"type":"number"},"confidentialityImpact":{"type":"string"},"integrityImpact":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.MCvssV30":{"description":"advisory.MCvssV30","properties":{"attackComplexity":{"type":"string"},"attackVector":{"type":"string"},"availabilityImpact":{"type":"string"},"baseScore":{"type":"number"},"baseSeverity":{"type":"string"},"confidentialityImpact":{"type":"string"},"integrityImpact":{"type":"string"},"privilegesRequired":{"type":"string"},"scope":{"type":"string"},"userInteraction":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.MCvssV31":{"description":"advisory.MCvssV31","properties":{"attackComplexity":{"type":"string"},"attackVector":{"type":"string"},"availabilityImpact":{"type":"string"},"baseScore":{"type":"number"},"baseSeverity":{"type":"string"},"confidentialityImpact":{"type":"string"},"integrityImpact":{"type":"string"},"privilegesRequired":{"type":"string"},"scope":{"type":"string"},"userInteraction":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.MCvssV40":{"description":"advisory.MCvssV40","properties":{"attackComplexity":{"type":"string"},"attackRequirements":{"type":"string"},"attackVector":{"type":"string"},"automatable":{"type":"string"},"baseScore":{"type":"number"},"baseSeverity":{"type":"string"},"privilegesRequired":{"type":"string"},"providerUrgency":{"type":"string"},"recovery":{"type":"string"},"safety":{"type":"string"},"subAvailabilityImpact":{"type":"string"},"subConfidentialityImpact":{"type":"string"},"subIntegrityImpact":{"type":"string"},"userInteraction":{"type":"string"},"valueDensity":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"},"vulnAvailabilityImpact":{"type":"string"},"vulnConfidentialityImpact":{"type":"string"},"vulnIntegrityImpact":{"type":"string"},"vulnerabilityResponseEffort":{"type":"string"}},"type":"object"},"advisory.MDescriptions":{"description":"advisory.MDescriptions","properties":{"lang":{"type":"string"},"value":{"type":"string"}},"type":"object"},"advisory.MDocumentTracking":{"description":"advisory.MDocumentTracking","properties":{"CurrentReleaseDate":{"type":"string"},"InitialReleaseDate":{"type":"string"},"identification":{"$ref":"#/components/schemas/advisory.MIdentification"},"revisionhistory":{"description":"diff in xml/json","items":{"$ref":"#/components/schemas/advisory.RRevision"},"type":"array","uniqueItems":false},"status":{"description":"again - change in json/xml","type":"integer"},"version":{"type":"string"}},"type":"object"},"advisory.MEProduct":{"description":"advisory.MEProduct","properties":{"ID":{"type":"string"},"display_value":{"type":"string"}},"type":"object"},"advisory.MFiles":{"description":"advisory.MFiles","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MFullProductName":{"description":"advisory.MFullProductName","properties":{"CPE":{"type":"string"},"ProductID":{"type":"string"},"Value":{"type":"string"}},"type":"object"},"advisory.MISPValueNoID":{"description":"advisory.MISPValueNoID","properties":{"description":{"type":"string"},"meta":{"$ref":"#/components/schemas/advisory.MispMeta"},"related":{"items":{"$ref":"#/components/schemas/advisory.MispRelatedItem"},"type":"array","uniqueItems":false},"value":{"type":"string"}},"type":"object"},"advisory.MITREAttackGroupNoID":{"description":"advisory.MITREAttackGroupNoID","properties":{"aliases":{"items":{"type":"string"},"type":"array","uniqueItems":false},"description":{"type":"string"},"name":{"type":"string"},"techniques":{"items":{"$ref":"#/components/schemas/advisory.MitreAttackTechnique"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.MIdentification":{"description":"advisory.MIdentification","properties":{"alias":{"$ref":"#/components/schemas/advisory.IVal"},"id":{"$ref":"#/components/schemas/advisory.IVal"}},"type":"object"},"advisory.MItem":{"description":"advisory.MItem","properties":{"Items":{"items":{"$ref":"#/components/schemas/advisory.MItem"},"type":"array","uniqueItems":false},"Name":{"type":"string"},"ProductID":{"type":"string"},"Type":{"description":"diff","type":"integer"},"Value":{"type":"string"}},"type":"object"},"advisory.MNodes":{"description":"advisory.MNodes","properties":{"cpeMatch":{"items":{"$ref":"#/components/schemas/advisory.MCPEMatch"},"type":"array","uniqueItems":false},"negate":{"type":"boolean"},"operator":{"type":"string"}},"type":"object"},"advisory.MProblemTypes":{"description":"advisory.MProblemTypes","properties":{"descriptions":{"items":{"$ref":"#/components/schemas/advisory.PTMDescriptions"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.MProductStatus":{"description":"advisory.MProductStatus","properties":{"ProductID":{"items":{"type":"string"},"type":"array","uniqueItems":false},"type":{"description":"diff","type":"integer"}},"type":"object"},"advisory.MProductTree":{"description":"advisory.MProductTree","properties":{"Branch":{"items":{"$ref":"#/components/schemas/advisory.MBranch"},"type":"array","uniqueItems":false},"FullProductName":{"items":{"$ref":"#/components/schemas/advisory.MFullProductName"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.MProviderMetadata":{"description":"OK","properties":{"dateUpdated":{"description":"FIXME: flip to time","type":"string"},"orgId":{"type":"string"},"shortName":{"type":"string"}},"type":"object"},"advisory.MReference":{"description":"advisory.MReference","properties":{"name":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"advisory.MRemediation":{"description":"advisory.MRemediation","properties":{"AffectedFiles":{"items":{"$ref":"#/components/schemas/advisory.AffectedFile"},"type":"array","uniqueItems":false},"Date":{"type":"string"},"DateSpecified":{"type":"boolean"},"Description":{"$ref":"#/components/schemas/advisory.IVal"},"FixedBuild":{"type":"string"},"ProductID":{"items":{"type":"string"},"type":"array","uniqueItems":false},"RestartRequired":{"$ref":"#/components/schemas/advisory.IVal"},"SubType":{"type":"string"},"Type":{"description":"diff","type":"integer"},"Url":{"type":"string"},"supercedence":{"type":"string"}},"type":"object"},"advisory.MSCVRF":{"description":"advisory.MSCVRF","properties":{"DocumentTitle":{"$ref":"#/components/schemas/advisory.MSDocumentTitle"},"DocumentTracking":{"$ref":"#/components/schemas/advisory.MDocumentTracking"},"ProductTree":{"$ref":"#/components/schemas/advisory.MProductTree"},"document_type":{"type":"string"},"documentnotes":{"description":"diff","items":{"$ref":"#/components/schemas/advisory.RNote"},"type":"array","uniqueItems":false},"documentpublisher":{"$ref":"#/components/schemas/advisory.DocumentPublisher"},"vulnerability":{"items":{"$ref":"#/components/schemas/advisory.MVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.MSDocumentTitle":{"description":"advisory.MSDocumentTitle","properties":{"Value":{"type":"string"}},"type":"object"},"advisory.MVersion":{"description":"advisory.MVersion","properties":{"lessThan":{"type":"string"},"lessThanOrEqual":{"type":"string"},"status":{"type":"string"},"version":{"type":"string"},"versionType":{"type":"string"}},"type":"object"},"advisory.MVulnerability":{"description":"advisory.MVulnerability","properties":{"ProductStatuses":{"items":{"$ref":"#/components/schemas/advisory.MProductStatus"},"type":"array","uniqueItems":false},"Remediations":{"items":{"$ref":"#/components/schemas/advisory.MRemediation"},"type":"array","uniqueItems":false},"Threats":{"items":{"$ref":"#/components/schemas/advisory.RThreat"},"type":"array","uniqueItems":false},"acknowledgments":{"items":{"$ref":"#/components/schemas/advisory.Acknowledgement"},"type":"array","uniqueItems":false},"cve":{"type":"string"},"cvssscoresets":{"items":{"$ref":"#/components/schemas/advisory.RScoreSet"},"type":"array","uniqueItems":false},"notes":{"items":{"$ref":"#/components/schemas/advisory.Note"},"type":"array","uniqueItems":false},"ordinal":{"type":"string"},"revisionhistory":{"description":"diff in xml/json","items":{"$ref":"#/components/schemas/advisory.RRevision"},"type":"array","uniqueItems":false},"title":{"$ref":"#/components/schemas/advisory.IVal"}},"type":"object"},"advisory.MaliciousPackage":{"description":"advisory.MaliciousPackage","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"malware":{"$ref":"#/components/schemas/advisory.OSVObj"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MaliciousVSCodeExts":{"description":"advisory.MaliciousVSCodeExts","properties":{"date_added":{"type":"string"},"name":{"type":"string"},"publisher":{"type":"string"},"type":{"type":"string"},"updated_at":{"description":"the data in this feed comes from manual curation. so this will likely be omitted.","type":"string"},"url":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.ManageEngine":{"description":"advisory.ManageEngine","properties":{"ADVISORY":{"type":"string"},"Added_Time":{"type":"string"},"CVE_Details_Link":{"$ref":"#/components/schemas/advisory.CVEDetailsLink"},"CVE_ID":{"type":"string"},"CVSS_Severity_Rating":{"type":"string"},"Fixed":{"type":"string"},"For_product_search":{"type":"string"},"ID":{"type":"string"},"Product":{"$ref":"#/components/schemas/advisory.MEProduct"},"Product_list":{"items":{"$ref":"#/components/schemas/advisory.MEProduct"},"type":"array","uniqueItems":false},"Product_specific_details":{"items":{"$ref":"#/components/schemas/advisory.ProductSpecificDetail"},"type":"array","uniqueItems":false},"Summary":{"type":"string"},"Version":{"type":"string"},"index_field":{"type":"string"}},"type":"object"},"advisory.ManageEngineAdvisory":{"description":"advisory.ManageEngineAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"manage_engine":{"$ref":"#/components/schemas/advisory.ManageEngine"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MbedTLS":{"description":"advisory.MbedTLS","properties":{"affects":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.McAfee":{"description":"advisory.McAfee","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"mcafee_score":{"items":{"$ref":"#/components/schemas/advisory.McAfeeScore"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.McAfeeScore":{"description":"advisory.McAfeeScore","properties":{"base":{"type":"string"},"cve":{"type":"string"},"temporal":{"type":"string"},"vector":{"type":"string"}},"type":"object"},"advisory.Mediatek":{"description":"advisory.Mediatek","properties":{"affected_chipsets":{"items":{"type":"string"},"type":"array","uniqueItems":false},"affected_software":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"severity":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MedtronicAdvisory":{"description":"advisory.MedtronicAdvisory","properties":{"affected_products":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"mitigation":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Mendix":{"description":"advisory.Mendix","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"id":{"type":"string"},"mendix_id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MetaAdvisories":{"description":"advisory.MetaAdvisories","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.MAffected"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MetaData":{"description":"advisory.MetaData","properties":{"advisory":{"$ref":"#/components/schemas/advisory.AdvisoryDetails"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"packages":{"items":{"$ref":"#/components/schemas/advisory.VulnCheckPackage"},"type":"array","uniqueItems":false},"references":{"items":{"$ref":"#/components/schemas/advisory.OvalReference"},"type":"array","uniqueItems":false},"title":{"type":"string"}},"type":"object"},"advisory.MetasploitExploit":{"description":"advisory.MetasploitExploit","properties":{"author":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Metric":{"description":"advisory.Metric","properties":{"cvssV2_0":{"$ref":"#/components/schemas/advisory.MCvssV20"},"cvssV3_0":{"$ref":"#/components/schemas/advisory.MCvssV30"},"cvssV3_1":{"$ref":"#/components/schemas/advisory.MCvssV31"},"cvssV4_0":{"$ref":"#/components/schemas/advisory.MCvssV40"},"format":{"type":"string"},"other":{"$ref":"#/components/schemas/advisory.MetricsOther"},"scenarios":{"items":{"$ref":"#/components/schemas/advisory.MetricScenario"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.MetricScenario":{"description":"advisory.MetricScenario","properties":{"lang":{"type":"string"},"value":{"type":"string"}},"type":"object"},"advisory.MetricsOther":{"description":"advisory.MetricsOther","properties":{"content":{"type":"object"},"type":{"type":"string"}},"type":"object"},"advisory.MicrosoftCSAF":{"description":"advisory.MicrosoftCSAF","properties":{"csaf":{"$ref":"#/components/schemas/advisory.CSAF"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MicrosoftCVRF":{"description":"advisory.MicrosoftCVRF","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvrf":{"$ref":"#/components/schemas/advisory.MSCVRF"},"date_added":{"type":"string"},"exploited_list":{"items":{"$ref":"#/components/schemas/advisory.ITW"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MicrosoftDriverBlockList":{"description":"advisory.MicrosoftDriverBlockList","properties":{"date_added":{"type":"string"},"file_id":{"description":"From FileAttrib or Deny","type":"string"},"file_metadata":{"$ref":"#/components/schemas/advisory.MicrosoftFileMetadata"}},"type":"object"},"advisory.MicrosoftFileMetadata":{"description":"File-level metadata","properties":{"file_name":{"description":"Full path (FilePath + FileName or FriendlyName)","type":"string"},"maximum_file_version":{"type":"string"},"minimum_file_version":{"type":"string"},"product_name":{"type":"string"},"sha1_hash":{"type":"string"},"sha256_hash":{"type":"string"}},"type":"object"},"advisory.MicrosoftKb":{"description":"advisory.MicrosoftKb","properties":{"cve":{"type":"string"},"date_added":{"type":"string"},"kbs":{"items":{"$ref":"#/components/schemas/advisory.Kb"},"type":"array","uniqueItems":false},"threat":{"$ref":"#/components/schemas/advisory.KbThreatDescription"},"title":{"type":"string"}},"type":"object"},"advisory.Mikrotik":{"description":"advisory.Mikrotik","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Mindray":{"description":"advisory.Mindray","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MispMeta":{"description":"advisory.MispMeta","properties":{"attribution-confidence":{"type":"string"},"cfr-suspected-state-sponsor":{"type":"string"},"cfr-suspected-victims":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cfr-target-category":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cfr-type-of-incident":{"items":{"type":"string"},"type":"array","uniqueItems":false},"country":{"type":"string"},"refs":{"items":{"type":"string"},"type":"array","uniqueItems":false},"synonyms":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.MispRelatedItem":{"description":"advisory.MispRelatedItem","properties":{"dest-uuid":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"type":{"type":"string"}},"type":"object"},"advisory.MispValue":{"description":"advisory.MispValue","properties":{"description":{"type":"string"},"meta":{"$ref":"#/components/schemas/advisory.MispMeta"},"related":{"items":{"$ref":"#/components/schemas/advisory.MispRelatedItem"},"type":"array","uniqueItems":false},"uuid":{"type":"string"},"value":{"type":"string"}},"type":"object"},"advisory.Mitel":{"description":"advisory.Mitel","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MitreAttackRef":{"description":"advisory.MitreAttackRef","properties":{"date_added":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MitreAttackTechWithRefs":{"description":"advisory.MitreAttackTechWithRefs","properties":{"domain":{"type":"string"},"id":{"type":"string"},"name":{"type":"string"},"nist_controls":{"items":{"$ref":"#/components/schemas/advisory.NISTControl"},"type":"array","uniqueItems":false},"references":{"items":{"$ref":"#/components/schemas/advisory.MitreAttackRef"},"type":"array","uniqueItems":false},"subtechnique":{"type":"boolean"},"tactics":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"advisory.MitreAttackTechnique":{"description":"advisory.MitreAttackTechnique","properties":{"sub_technique":{"type":"string"},"sub_technique_name":{"type":"string"},"tactic":{"items":{"type":"string"},"type":"array","uniqueItems":false},"technique_id":{"type":"string"},"technique_name":{"type":"string"}},"type":"object"},"advisory.MitreCVEListV5":{"description":"advisory.MitreCVEListV5","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"mitre_ref":{"$ref":"#/components/schemas/advisory.MitreCVEListV5Ref"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MitreCVEListV5Ref":{"description":"advisory.MitreCVEListV5Ref","properties":{"containers":{"$ref":"#/components/schemas/advisory.MContainers"},"cveMetadata":{"$ref":"#/components/schemas/advisory.MCveMetadata"},"dataType":{"type":"string"},"dataVersion":{"type":"string"}},"type":"object"},"advisory.MitreGroupCTI":{"description":"advisory.MitreGroupCTI","properties":{"aliases":{"items":{"type":"string"},"type":"array","uniqueItems":false},"description":{"type":"string"},"id":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.ExternalReferences"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.MitsubishiElectricAdvisory":{"description":"advisory.MitsubishiElectricAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_revised":{"description":"could nuke this at some pt in the future as it's a dupe","type":"string"},"mitsubishi_electric_id":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MongoDB":{"description":"advisory.MongoDB","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"score":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MoxaAdvisory":{"description":"advisory.MoxaAdvisory","properties":{"advisory_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MozillaAdvisory":{"description":"advisory.MozillaAdvisory","properties":{"affected_components":{"items":{"$ref":"#/components/schemas/advisory.MozillaComponent"},"type":"array","uniqueItems":false},"bugzilla":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"fixed_in":{"items":{"type":"string"},"type":"array","uniqueItems":false},"impact":{"type":"string"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"reporter":{"type":"string"},"risk":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MozillaComponent":{"description":"advisory.MozillaComponent","properties":{"bugzilla":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"description":{"type":"string"},"impact":{"type":"string"},"reporter":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.NCSC":{"description":"advisory.NCSC","properties":{"csaf":{"$ref":"#/components/schemas/advisory.CSAF"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary_nl":{"type":"string"},"title_nl":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NCSCCVE":{"description":"advisory.NCSCCVE","properties":{"csaf":{"$ref":"#/components/schemas/advisory.CSAF"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary_nl":{"type":"string"},"title_nl":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NEC":{"description":"advisory.NEC","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"nvd_id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NHS":{"description":"advisory.NHS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"summary":{"type":"string"},"threat_id":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NI":{"description":"advisory.NI","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"ovewrview":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NISTControl":{"description":"advisory.NISTControl","properties":{"cis_controls":{"items":{"$ref":"#/components/schemas/advisory.CISControl"},"type":"array","uniqueItems":false},"nist_control_family":{"type":"string"},"nist_control_id":{"type":"string"},"nist_control_name":{"type":"string"}},"type":"object"},"advisory.NTP":{"description":"advisory.NTP","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NVD20CVECPEMatch":{"description":"advisory.NVD20CVECPEMatch","properties":{"criteria":{"type":"string"},"matchCriteriaId":{"type":"string"},"versionEndExcluding":{"type":"string"},"versionEndIncluding":{"type":"string"},"versionStartExcluding":{"type":"string"},"versionStartIncluding":{"type":"string"},"vulnerable":{"type":"boolean"}},"type":"object"},"advisory.NVD20Configuration":{"description":"advisory.NVD20Configuration","properties":{"negate":{"type":"boolean"},"nodes":{"items":{"$ref":"#/components/schemas/advisory.NVD20Node"},"type":"array","uniqueItems":false},"operator":{"type":"string"}},"type":"object"},"advisory.NVD20Node":{"description":"advisory.NVD20Node","properties":{"cpeMatch":{"items":{"$ref":"#/components/schemas/advisory.NVD20CVECPEMatch"},"type":"array","uniqueItems":false},"negate":{"type":"boolean"},"operator":{"type":"string"}},"type":"object"},"advisory.NVD20Source":{"description":"advisory.NVD20Source","properties":{"contactEmail":{"type":"string"},"created":{"type":"string"},"cweAcceptanceLevel":{"$ref":"#/components/schemas/advisory.CweAcceptanceLevel"},"lastModified":{"type":"string"},"name":{"type":"string"},"sourceIdentifiers":{"items":{"type":"string"},"type":"array","uniqueItems":false},"v3AcceptanceLevel":{"$ref":"#/components/schemas/advisory.V3AcceptanceLevel"}},"type":"object"},"advisory.NVDCPEDictionary":{"description":"advisory.NVDCPEDictionary","properties":{"backupOnly":{"type":"string"}},"type":"object"},"advisory.NZAdvisory":{"description":"advisory.NZAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"happening":{"type":"string"},"link":{"type":"string"},"lookFor":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"title":{"type":"string"},"whatToDo":{"type":"string"}},"type":"object"},"advisory.Naver":{"description":"advisory.Naver","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Nessus":{"description":"advisory.Nessus","properties":{"cpe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"exploitability_ease":{"description":"seems like only 3 vals for this","type":"string"},"filename":{"type":"string"},"iava":{"items":{"type":"string"},"type":"array","uniqueItems":false},"name":{"type":"string"},"script_id":{"type":"integer"},"updated":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NetApp":{"description":"advisory.NetApp","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"impact":{"type":"string"},"ntap":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Netatalk":{"description":"advisory.Netatalk","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"fixed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Netgate":{"description":"advisory.Netgate","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Netgear":{"description":"advisory.Netgear","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"psvn_number":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Netskope":{"description":"advisory.Netskope","properties":{"advisory_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Nexpose":{"description":"advisory.Nexpose","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"identifier":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NginxAdvisory":{"description":"advisory.NginxAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"not_vuln_versions":{"items":{"type":"string"},"type":"array","uniqueItems":false},"patch_pgp":{"type":"string"},"patch_url":{"type":"string"},"severity":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vuln_versions":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.NodeAuthor":{"description":"advisory.NodeAuthor","properties":{"author":{"type":"string"},"username":{"type":"string"},"website":{"type":"string"}},"type":"object"},"advisory.NodeJS":{"description":"advisory.NodeJS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NodeSecurity":{"description":"advisory.NodeSecurity","properties":{"affected_environments":{"items":{"type":"string"},"type":"array","uniqueItems":false},"author":{"$ref":"#/components/schemas/advisory.NodeAuthor"},"coordinating_vendor":{"type":"string"},"created_at":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"number"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"id":{"type":"integer"},"module_name":{"type":"string"},"overview":{"type":"string"},"patched_versions":{"type":"string"},"publish_date":{"type":"string"},"recommendation":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vulnerable_versions":{"type":"string"}},"type":"object"},"advisory.Nokia":{"description":"advisory.Nokia","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Note":{"description":"advisory.Note","properties":{"ordinal":{"type":"string"},"text":{"type":"string"},"title":{"type":"string"},"type":{"type":"integer"}},"type":"object"},"advisory.NotePadPlusPlus":{"description":"advisory.NotePadPlusPlus","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Nozomi":{"description":"advisory.Nozomi","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Nuclei":{"description":"advisory.Nuclei","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"template":{"type":"object"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NvidiaRevision":{"description":"advisory.NvidiaRevision","properties":{"date":{"type":"string"},"description":{"type":"string"},"revision":{"type":"string"}},"type":"object"},"advisory.OCurl":{"description":"advisory.OCurl","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.CurlAffected"},"type":"array","uniqueItems":false},"aliases":{"items":{"type":"string"},"type":"array","uniqueItems":false},"credits":{"items":{"$ref":"#/components/schemas/advisory.CurlCredit"},"type":"array","uniqueItems":false},"database_specific":{"$ref":"#/components/schemas/advisory.DBSpecific"},"details":{"type":"string"},"id":{"type":"string"},"modified":{"type":"string"},"published":{"type":"string"},"schema_version":{"type":"string"},"summary":{"type":"string"}},"type":"object"},"advisory.OSV":{"description":"advisory.OSV","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_updated":{"type":"string"},"osv":{"$ref":"#/components/schemas/advisory.OSVObj"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OSVObj":{"description":"advisory.OSVObj","properties":{"affected":{"description":"collection based on https://ossf.github.io/osv-schema/","items":{"$ref":"#/components/schemas/advisory.Affected"},"type":"array","uniqueItems":false},"aliases":{"items":{"type":"string"},"type":"array","uniqueItems":false},"details":{"type":"string"},"id":{"type":"string"},"modified":{"type":"string"},"published":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.OSVReference"},"type":"array","uniqueItems":false},"related":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"withdrawn":{"type":"string"}},"type":"object"},"advisory.OSVPackage":{"description":"advisory.OSVPackage","properties":{"ecosystem":{"type":"string"},"name":{"type":"string"},"purl":{"type":"string"}},"type":"object"},"advisory.OSVReference":{"description":"advisory.OSVReference","properties":{"type":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OTRS":{"description":"advisory.OTRS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"id":{"type":"string"},"product":{"type":"string"},"release":{"type":"string"},"risk":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OctopusDeploy":{"description":"advisory.OctopusDeploy","properties":{"advisory_number":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Okta":{"description":"advisory.Okta","properties":{"affected_products":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"cwe":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"resolution":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Omron":{"description":"advisory.Omron","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OneE":{"description":"advisory.OneE","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OpenBSD":{"description":"advisory.OpenBSD","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"patch":{"type":"string"},"release":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OpenCVDB":{"description":"advisory.OpenCVDB","properties":{"affected_platforms":{"items":{"type":"string"},"type":"array","uniqueItems":false},"affected_services":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"disclosed_at":{"type":"string"},"known_itw_exploitation":{"type":"boolean"},"manual_remediation":{"type":"string"},"published_at":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OpenJDK":{"description":"advisory.OpenJDK","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"openjdk_cves":{"items":{"$ref":"#/components/schemas/advisory.OpenJDKCVE"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OpenJDKCVE":{"description":"advisory.OpenJDKCVE","properties":{"cve":{"type":"string"},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"}},"type":"object"},"advisory.OpenSSH":{"description":"advisory.OpenSSH","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OpenSSLSecAdv":{"description":"advisory.OpenSSLSecAdv","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_updated":{"type":"string"},"description":{"type":"string"},"filename":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"url":{"type":"string"},"vulnerabilities":{"items":{"$ref":"#/components/schemas/advisory.OpenSSLVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.OpenSSLVulnerability":{"description":"advisory.OpenSSLVulnerability","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"fixed":{"items":{"$ref":"#/components/schemas/advisory.FixAff"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.OpenStack":{"description":"advisory.OpenStack","properties":{"affects":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Opengear":{"description":"advisory.Opengear","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OracleCPU":{"description":"advisory.OracleCPU","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"product":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OracleCPUCSAF":{"description":"advisory.OracleCPUCSAF","properties":{"csaf":{"$ref":"#/components/schemas/advisory.CSAF"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OriginalGHSA":{"description":"advisory.OriginalGHSA","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.GHSAAffected"},"type":"array","uniqueItems":false},"aliases":{"items":{"type":"string"},"type":"array","uniqueItems":false},"database_specific":{"$ref":"#/components/schemas/advisory.GHSADatabaseSpecific"},"details":{"type":"string"},"id":{"type":"string"},"modified":{"type":"string"},"published":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.GHSAReference"},"type":"array","uniqueItems":false},"schema_version":{"type":"string"},"severity":{"items":{"$ref":"#/components/schemas/advisory.GHSASeverity"},"type":"array","uniqueItems":false},"summary":{"type":"string"}},"type":"object"},"advisory.OvalCVE":{"description":"advisory.OvalCVE","properties":{"href":{"type":"string"},"id":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.OvalReference":{"description":"advisory.OvalReference","properties":{"ref_id":{"type":"string"},"ref_url":{"type":"string"},"source":{"type":"string"}},"type":"object"},"advisory.Override":{"description":"advisory.Override","properties":{"_annotation":{"$ref":"#/components/schemas/advisory.OverrideAnnotation"},"cve":{"$ref":"#/components/schemas/advisory.OverrideCVE"}},"type":"object"},"advisory.OverrideAnnotation":{"description":"advisory.OverrideAnnotation","properties":{"cve_id":{"type":"string"},"modified":{"type":"string"},"published":{"type":"string"},"reason":{"type":"string"},"snapshot":{"type":"string"},"triage_notes":{"$ref":"#/components/schemas/advisory.TriageNotes"}},"type":"object"},"advisory.OverrideCVE":{"description":"advisory.OverrideCVE","properties":{"configurations":{"items":{"$ref":"#/components/schemas/advisory.OverrideConfiguration"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.OverrideConfiguration":{"description":"advisory.OverrideConfiguration","properties":{"nodes":{"items":{"$ref":"#/components/schemas/advisory.CPENode"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.OwnCloud":{"description":"advisory.OwnCloud","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PGFix":{"description":"advisory.PGFix","properties":{"affected":{"type":"string"},"fixed":{"type":"string"}},"type":"object"},"advisory.PHPMyAdmin":{"description":"advisory.PHPMyAdmin","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PKCert":{"description":"advisory.PKCert","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PTC":{"description":"advisory.PTC","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PTMDescriptions":{"description":"advisory.PTMDescriptions","properties":{"cweId":{"type":"string"},"description":{"type":"string"},"lang":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.Package":{"description":"advisory.Package","properties":{"filename":{"type":"string"},"name":{"description":"sort","type":"string"},"release":{"type":"string"},"src":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.PackageStat":{"description":"advisory.PackageStat","properties":{"cpe":{"type":"string"},"fix_state":{"type":"string"},"package_name":{"type":"string"},"product_name":{"type":"string"}},"type":"object"},"advisory.PacketstormExploit":{"description":"advisory.PacketstormExploit","properties":{"author":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"download_url":{"type":"string"},"md5":{"type":"string"},"summary":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Palantir":{"description":"advisory.Palantir","properties":{"affected_products":{"type":"string"},"background":{"type":"string"},"bulletin_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details":{"type":"string"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PaloAltoAdvisory":{"description":"advisory.PaloAltoAdvisory","properties":{"affected":{"type":"string"},"applicableVersions":{"type":"string"},"attackComplexity":{"type":"string"},"attackRequirements":{"type":"string"},"attackVector":{"type":"string"},"availabilityImpact":{"type":"string"},"confidentialityImpact":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvssbaseScore":{"type":"string"},"datePublished":{"type":"string"},"dateUpdated":{"type":"string"},"date_added":{"type":"string"},"id":{"type":"string"},"integrityImpact":{"type":"string"},"privilegesRequired":{"type":"string"},"problem":{"type":"string"},"product":{"type":"string"},"scope":{"type":"string"},"severity":{"type":"string"},"solution":{"type":"string"},"title":{"type":"string"},"unaffected":{"type":"string"},"url":{"type":"string"},"userInteraction":{"type":"string"},"workaround":{"type":"string"}},"type":"object"},"advisory.Panasonic":{"description":"advisory.Panasonic","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PaperCut":{"description":"advisory.PaperCut","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Patch":{"description":"advisory.Patch","properties":{"advisory_id":{"type":"string"},"component":{"type":"string"},"link":{"type":"string"},"os_sw":{"type":"string"}},"type":"object"},"advisory.Pega":{"description":"advisory.Pega","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"score":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PhilipsAdvisory":{"description":"advisory.PhilipsAdvisory","properties":{"affected_products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_updated":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PhoenixContactAdvisory":{"description":"advisory.PhoenixContactAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vde":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.PostgresSQL":{"description":"advisory.PostgresSQL","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"pg_fix":{"items":{"$ref":"#/components/schemas/advisory.PGFix"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PowerDNS":{"description":"advisory.PowerDNS","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PrimeVersion":{"description":"advisory.PrimeVersion","properties":{"jdK":{"type":"string"},"prime":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.Product":{"description":"advisory.Product","properties":{"name":{"type":"string"},"product_id":{"type":"string"},"product_identification_helper":{"$ref":"#/components/schemas/advisory.IdentificationHelper"}},"type":"object"},"advisory.ProductBranch":{"description":"ProductTree contains information about the product tree (branches only).\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#322-product-tree-property","properties":{"branches":{"items":{"$ref":"#/components/schemas/advisory.ProductBranch"},"type":"array","uniqueItems":false},"category":{"type":"string"},"name":{"type":"string"},"product":{"$ref":"#/components/schemas/advisory.Product"},"relationships":{"items":{"$ref":"#/components/schemas/advisory.CSAFRelationship"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.ProductSpecificDetail":{"description":"advisory.ProductSpecificDetail","properties":{"ID":{"type":"string"},"display_value":{"type":"string"}},"type":"object"},"advisory.ProductsAffected":{"description":"advisory.ProductsAffected","properties":{"cve":{"type":"string"},"description":{"type":"string"},"name":{"type":"string"}},"type":"object"},"advisory.Progress":{"description":"advisory.Progress","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Proofpoint":{"description":"advisory.Proofpoint","properties":{"advisory_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Publisher":{"description":"advisory.Publisher","properties":{"category":{"type":"string"},"contact_details":{"type":"string"},"issuing_authority":{"type":"string"},"name":{"type":"string"},"namespace":{"type":"string"}},"type":"object"},"advisory.PureStorage":{"description":"advisory.PureStorage","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"product":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PyPAAdvisory":{"description":"advisory.PyPAAdvisory","properties":{"advisory_id":{"description":"ID is the PYSEC- identifier","type":"string"},"affected":{"description":"Affected will list out the vulnerable versions.","items":{"$ref":"#/components/schemas/advisory.PyPAAffected"},"type":"array","uniqueItems":false},"aliases":{"description":"Aliases are other identifiers that refer to this, such as a CVE","items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details":{"description":"Details discuss the vulnerability information","type":"string"},"modified":{"description":"Modified is non-zero Time if entry was updated","type":"string"},"published":{"description":"Published is the datetime when this was released","type":"string"},"references":{"description":"References are links to more detailed advisories, fixes, etc.","items":{"$ref":"#/components/schemas/advisory.PyPAReference"},"type":"array","uniqueItems":false},"was_withdrawn":{"description":"WasWD indicates if the advisory was withdrawn or not.","type":"boolean"},"withdrawn":{"description":"Withdrawn is non-zero if this advisory has been withdrawn","type":"string"}},"type":"object"},"advisory.PyPAAffected":{"description":"advisory.PyPAAffected","properties":{"package":{"$ref":"#/components/schemas/advisory.PyPAPackage"},"ranges":{"items":{"$ref":"#/components/schemas/advisory.PyPARange"},"type":"array","uniqueItems":false},"versions":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.PyPAEvent":{"description":"advisory.PyPAEvent","properties":{"fixed":{"type":"string"},"introduced":{"type":"string"}},"type":"object"},"advisory.PyPAPackage":{"description":"advisory.PyPAPackage","properties":{"ecosystem":{"type":"string"},"name":{"type":"string"},"purl":{"type":"string"}},"type":"object"},"advisory.PyPARange":{"description":"advisory.PyPARange","properties":{"events":{"items":{"$ref":"#/components/schemas/advisory.PyPAEvent"},"type":"array","uniqueItems":false},"ranges_type":{"type":"string"}},"type":"object"},"advisory.PyPAReference":{"description":"advisory.PyPAReference","properties":{"refs_type":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.QNAPAdvisory":{"description":"advisory.QNAPAdvisory","properties":{"affected":{"type":"string"},"bulletin_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"last_update_date":{"type":"string"},"link":{"type":"string"},"severity":{"type":"string"},"severity_number":{"type":"string"},"status":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.QQID":{"description":"advisory.QQID","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss3_score":{"type":"string"},"cvss_score":{"type":"string"},"date_added":{"type":"string"},"qid":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.QSB":{"description":"advisory.QSB","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Qualcomm":{"description":"advisory.Qualcomm","properties":{"chipsets":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"score":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Qualys":{"description":"advisory.Qualys","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"exploits":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.QualysQID":{"description":"advisory.QualysQID","properties":{"consequence":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_v2":{"items":{"$ref":"#/components/schemas/advisory.CvsssV2_3"},"type":"array","uniqueItems":false},"cvss_v3":{"items":{"$ref":"#/components/schemas/advisory.CvsssV2_3"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_insert":{"type":"string"},"description":{"type":"string"},"patches":{"items":{"$ref":"#/components/schemas/advisory.Patch"},"type":"array","uniqueItems":false},"published":{"type":"string"},"qid":{"type":"string"},"severity":{"type":"string"},"solution":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"vendor_refs":{"items":{"$ref":"#/components/schemas/advisory.VendorRef"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.RDescription":{"description":"advisory.RDescription","properties":{"value":{"type":"string"}},"type":"object"},"advisory.RNote":{"description":"advisory.RNote","properties":{"audience":{"type":"string"},"ordinal":{"type":"string"},"text":{"type":"string"},"title":{"type":"string"},"type":{"description":"diff between xml \u0026\u0026 json","type":"integer"}},"type":"object"},"advisory.RRevision":{"description":"advisory.RRevision","properties":{"date":{"type":"string"},"description":{"$ref":"#/components/schemas/advisory.RDescription"},"number":{"type":"string"}},"type":"object"},"advisory.RScoreSet":{"description":"advisory.RScoreSet","properties":{"base_score":{"type":"string"},"product_id":{"type":"string"},"temporal_score":{"type":"string"},"vector":{"type":"string"}},"type":"object"},"advisory.RThreat":{"description":"advisory.RThreat","properties":{"Date":{"type":"string"},"DateSpecified":{"type":"boolean"},"Description":{"$ref":"#/components/schemas/advisory.IVal"},"ProductID":{"items":{"type":"string"},"type":"array","uniqueItems":false},"Type":{"description":"diff","type":"integer"}},"type":"object"},"advisory.Range":{"description":"advisory.Range","properties":{"events":{"items":{"$ref":"#/components/schemas/advisory.Event"},"type":"array","uniqueItems":false},"repo":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.RansomwareExploit":{"description":"advisory.RansomwareExploit","properties":{"associated_capecs":{"items":{"$ref":"#/components/schemas/advisory.Capec"},"type":"array","uniqueItems":false},"associated_cwes":{"items":{"$ref":"#/components/schemas/advisory.CweData"},"type":"array","uniqueItems":false},"associated_mitre_attack_techniques":{"items":{"$ref":"#/components/schemas/advisory.MitreAttackTechWithRefs"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve_references":{"items":{"$ref":"#/components/schemas/advisory.CVEReference"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"malpedia_url":{"type":"string"},"ransomware_family":{"type":"string"},"tools":{"items":{"$ref":"#/components/schemas/advisory.Tool"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.RecordType":{"description":"advisory.RecordType","properties":{"finding":{"type":"string"},"id":{"type":"string"},"kind":{"type":"string"}},"type":"object"},"advisory.RedLion":{"description":"advisory.RedLion","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.RedhatCVE":{"description":"advisory.RedhatCVE","properties":{"advisories":{"items":{"type":"string"},"type":"array","uniqueItems":false},"advisory_csaf_vex_url":{"items":{"type":"string"},"type":"array","uniqueItems":false},"affected_packages":{"description":"used for un-marshlling from redhat","items":{"type":"string"},"type":"array","uniqueItems":false},"affected_release":{"items":{"$ref":"#/components/schemas/advisory.AffectedRel"},"type":"array","uniqueItems":false},"bugzilla":{"type":"string"},"bugzilla_description":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve_csaf_vex_url":{"type":"string"},"cvss3_score":{"type":"string"},"cvss3_scoring_vector":{"type":"string"},"cvss_score":{"type":"number"},"cvss_scoring_vector":{"type":"string"},"cwe":{"type":"string"},"package_state":{"items":{"$ref":"#/components/schemas/advisory.PackageStat"},"type":"array","uniqueItems":false},"packages":{"description":"used to index into vulncheck OS","items":{"$ref":"#/components/schemas/advisory.VulnCheckPackage"},"type":"array","uniqueItems":false},"public_date":{"type":"string"},"resource_url":{"type":"string"},"severity":{"type":"string"}},"type":"object"},"advisory.Reference":{"description":"advisory.Reference","properties":{"href":{"description":"sort","type":"string"},"id":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.RelatedRule":{"description":"advisory.RelatedRule","properties":{"id":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.RemediationData":{"description":"advisory.RemediationData","properties":{"category":{"type":"string"},"date":{"type":"string"},"details":{"type":"string"},"entitlements":{"items":{"type":"string"},"type":"array","uniqueItems":false},"group_ids":{"items":{"type":"string"},"type":"array","uniqueItems":false},"product_ids":{"items":{"type":"string"},"type":"array","uniqueItems":false},"restart_required":{"$ref":"#/components/schemas/advisory.RestartData"}},"type":"object"},"advisory.Renesas":{"description":"advisory.Renesas","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ReportedExploit":{"description":"advisory.ReportedExploit","properties":{"date_added":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.RestartData":{"description":"advisory.RestartData","properties":{"category":{"type":"string"},"details":{"type":"string"}},"type":"object"},"advisory.RevisionHistory":{"description":"advisory.RevisionHistory","properties":{"date":{"type":"string"},"number":{"type":"string"},"summary":{"type":"string"}},"type":"object"},"advisory.Revive":{"description":"advisory.Revive","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.RhelCVE":{"description":"advisory.RhelCVE","properties":{"csaf":{"$ref":"#/components/schemas/advisory.CSAF"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Roche":{"description":"advisory.Roche","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"roche_cves":{"items":{"$ref":"#/components/schemas/advisory.RocheCVE"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.RocheCVE":{"description":"advisory.RocheCVE","properties":{"cve":{"type":"string"},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"}},"type":"object"},"advisory.Rockwell":{"description":"advisory.Rockwell","properties":{"affected_products":{"items":{"$ref":"#/components/schemas/advisory.RockwellAffectedProduct"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"impact":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.RockwellAffectedProduct":{"description":"advisory.RockwellAffectedProduct","properties":{"affectedCatalogNumber":{"type":"string"},"affectedVersion":{"type":"string"},"correctedVersion":{"type":"string"},"cve":{"type":"string"},"product":{"type":"string"}},"type":"object"},"advisory.RockyAdvisory":{"description":"advisory.RockyAdvisory","properties":{"affectedProducts":{"items":{"type":"string"},"type":"array","uniqueItems":false},"buildReferences":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cves":{"items":{"$ref":"#/components/schemas/advisory.RockyCve"},"type":"array","uniqueItems":false},"description":{"type":"string"},"fixes":{"items":{"$ref":"#/components/schemas/advisory.RockyFix"},"type":"array","uniqueItems":false},"name":{"type":"string"},"publishedAt":{"type":"string"},"rebootSuggested":{"type":"boolean"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"rpms":{"$ref":"#/components/schemas/advisory.RockyRpms"},"severity":{"type":"string"},"shortCode":{"type":"string"},"solution":{"type":"string"},"synopsis":{"type":"string"},"topic":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.RockyCve":{"description":"advisory.RockyCve","properties":{"cvss3BaseScore":{"type":"string"},"cvss3ScoringVector":{"type":"string"},"cwe":{"type":"string"},"name":{"type":"string"},"sourceBy":{"type":"string"},"sourceLink":{"type":"string"}},"type":"object"},"advisory.RockyErrata":{"description":"advisory.RockyErrata","properties":{"advisory":{"$ref":"#/components/schemas/advisory.RockyAdvisory"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"packages":{"items":{"$ref":"#/components/schemas/advisory.RockyPackage"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"advisory.RockyFix":{"description":"advisory.RockyFix","properties":{"description":{"type":"string"},"sourceBy":{"type":"string"},"sourceLink":{"type":"string"},"ticket":{"type":"string"}},"type":"object"},"advisory.RockyPackage":{"description":"advisory.RockyPackage","properties":{"distro":{"type":"string"},"name":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.RockyRpms":{"additionalProperties":{"$ref":"#/components/schemas/advisory.RockyVersion"},"description":"advisory.RockyRpms","type":"object"},"advisory.RockyVersion":{"description":"advisory.RockyVersion","properties":{"nvras":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.Rsync":{"description":"advisory.Rsync","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Ruckus":{"description":"advisory.Ruckus","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.RustsecAdvisory":{"description":"advisory.RustsecAdvisory","properties":{"advisory":{"$ref":"#/components/schemas/advisory.RustsecFrontMatterAdvisory"},"affected":{"$ref":"#/components/schemas/advisory.RustsecAffected"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"versions":{"$ref":"#/components/schemas/advisory.RustsecFrontMatterVersions"}},"type":"object"},"advisory.RustsecAffected":{"description":"advisory.RustsecAffected","properties":{"arch":{"items":{"type":"string"},"type":"array","uniqueItems":false},"functions":{"type":"string"},"os":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.RustsecFrontMatterAdvisory":{"description":"advisory.RustsecFrontMatterAdvisory","properties":{"aliases":{"description":"Vulnerability aliases, e.g. CVE IDs (optional but recommended)\nRequest a CVE for your RustSec vulns: https://iwantacve.org/","items":{"type":"string"},"type":"array","uniqueItems":false},"categories":{"description":"Optional: Categories this advisory falls under. Valid categories are:\n\"code-execution\", \"crypto-failure\", \"denial-of-service\", \"file-disclosure\"\n\"format-injection\", \"memory-corruption\", \"memory-exposure\", \"privilege-escalation\"","items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"description":"Optional: a Common Vulnerability Scoring System score. More information\ncan be found on the CVSS website, https://www.first.org/cvss/.","type":"string"},"date":{"description":"Disclosure date of the advisory as an RFC 3339 date (mandatory)","type":"string"},"informational":{"description":"Optional: Indicates the type of informational security advisory\n - \"unsound\" for soundness issues\n - \"unmaintained\" for crates that are no longer maintained\n - \"notice\" for other informational notices","type":"string"},"keywords":{"description":"Freeform keywords which describe this vulnerability, similar to Cargo (optional)","items":{"type":"string"},"type":"array","uniqueItems":false},"package":{"description":"Name of the affected crate (mandatory)","type":"string"},"references":{"description":"URL to additional helpful references regarding the advisory (optional)","items":{"type":"string"},"type":"array","uniqueItems":false},"related":{"description":"Related vulnerabilities (optional)\ne.g. CVE for a C library wrapped by a -sys crate)","items":{"type":"string"},"type":"array","uniqueItems":false},"rustsec_id":{"description":"Identifier for the advisory (mandatory). Will be assigned a \"RUSTSEC-YYYY-NNNN\"\nidentifier e.g. RUSTSEC-2018-0001. Please use \"RUSTSEC-0000-0000\" in PRs.","type":"string"},"url":{"description":"URL to a long-form description of this issue, e.g. a GitHub issue/PR,\na change log entry, or a blogpost announcing the release (optional)","type":"string"},"withdrawn":{"description":"Whether the advisory is withdrawn (optional)","type":"string"}},"type":"object"},"advisory.RustsecFrontMatterVersions":{"description":"advisory.RustsecFrontMatterVersions","properties":{"patched":{"items":{"type":"string"},"type":"array","uniqueItems":false},"unaffected":{"description":"Versions which were never vulnerable (optional)","items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.SAAdvisory":{"description":"advisory.SAAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"link":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"severity":{"type":"string"},"threats":{"type":"string"},"vendor":{"type":"string"},"warningDate":{"type":"string"},"warningNumber":{"type":"string"}},"type":"object"},"advisory.SAP":{"description":"advisory.SAP","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SECConsult":{"description":"advisory.SECConsult","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SSASource":{"description":"advisory.SSASource","properties":{"document":{"$ref":"#/components/schemas/advisory.SiemensDocument"},"product_tree":{"$ref":"#/components/schemas/advisory.SiemensProductTree"},"vulnerabilities":{"items":{"$ref":"#/components/schemas/advisory.SiemensVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.SSDAdvisory":{"description":"advisory.SSDAdvisory","properties":{"analysis":{"type":"string"},"credit":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"link":{"type":"string"},"poc":{"description":"contains actual poc code","type":"string"},"published":{"type":"string"},"response_ref":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.Safran":{"description":"advisory.Safran","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SaintExploit":{"description":"advisory.SaintExploit","properties":{"bid":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"osvdb":{"type":"string"},"saint_id":{"type":"string"},"type":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SalesForce":{"description":"advisory.SalesForce","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"integer"},"link":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.Samba":{"description":"advisory.Samba","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"issues":{"type":"string"},"patches":{"items":{"type":"string"},"type":"array","uniqueItems":false},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Sandisk":{"description":"advisory.Sandisk","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SansDshield":{"description":"advisory.SansDshield","properties":{"count":{"type":"integer"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"firstSeen":{"type":"string"},"lastSeen":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SchneiderCVE":{"description":"advisory.SchneiderCVE","properties":{"cve":{"type":"string"},"cvss_score3":{"type":"string"},"cvss_score4":{"type":"string"},"cvss_vector3":{"type":"string"},"cvss_vector4":{"type":"string"}},"type":"object"},"advisory.SchneiderElectricAdvisory":{"description":"advisory.SchneiderElectricAdvisory","properties":{"csaf_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"pdf_url":{"type":"string"},"schneider_cves":{"items":{"$ref":"#/components/schemas/advisory.SchneiderCVE"},"type":"array","uniqueItems":false},"schneider_electric_id":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Schutzwerk":{"description":"advisory.Schutzwerk","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SecFix":{"description":"advisory.SecFix","properties":{"arch":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"release":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.SecurityBulletin":{"description":"advisory.SecurityBulletin","properties":{"acknowledgement":{"type":"string"},"bulletinId":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvedetails":{"items":{"$ref":"#/components/schemas/advisory.CVEDetail"},"type":"array"},"date_added":{"type":"string"},"hardwareUpdates":{"items":{"$ref":"#/components/schemas/advisory.HardwareUpdate"},"type":"array"},"lastUpdated":{"type":"string"},"link":{"type":"string"},"revisions":{"items":{"$ref":"#/components/schemas/advisory.NvidiaRevision"},"type":"array"},"severity":{"type":"string"},"softwareUpdates":{"items":{"$ref":"#/components/schemas/advisory.SoftwareUpdate"},"type":"array"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.SecurityLab":{"description":"advisory.SecurityLab","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"title_ru":{"type":"string"},"url":{"type":"string"},"vendor":{"type":"string"}},"type":"object"},"advisory.SeebugExploit":{"description":"advisory.SeebugExploit","properties":{"author":{"type":"string"},"category":{"type":"string"},"cnnvd":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cnvd":{"items":{"type":"string"},"type":"array","uniqueItems":false},"component":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"find_time":{"type":"string"},"name":{"type":"string"},"ssv_id":{"type":"string"},"submitter":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Sel":{"description":"advisory.Sel","properties":{"acknowledgement":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SentinelOne":{"description":"advisory.SentinelOne","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ServiceNow":{"description":"advisory.ServiceNow","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SevenZip":{"description":"advisory.SevenZip","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Severity":{"description":"advisory.Severity","properties":{"score":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.ShadowServerExploitedVulnerability":{"description":"advisory.ShadowServerExploitedVulnerability","properties":{"cnvd":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"detections_last_1_day":{"type":"integer"},"detections_last_30_days":{"type":"integer"},"detections_last_7_days":{"type":"integer"},"detections_last_90_days":{"type":"integer"},"edb":{"type":"string"},"in_kev":{"type":"boolean"},"is_iot":{"type":"boolean"},"is_ransomware":{"type":"boolean"},"product":{"type":"string"},"url":{"type":"string"},"vendor":{"type":"string"},"vulnerability_id":{"type":"string"},"vulnerability_link":{"type":"string"}},"type":"object"},"advisory.Shielder":{"description":"advisory.Shielder","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Sick":{"description":"advisory.Sick","properties":{"csaf_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"id":{"type":"string"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"}},"type":"object"},"advisory.SiemensAcknowledgments":{"description":"advisory.SiemensAcknowledgments","properties":{"names":{"items":{"type":"string"},"type":"array","uniqueItems":false},"organization":{"type":"string"},"summary":{"type":"string"}},"type":"object"},"advisory.SiemensAdvisory":{"description":"advisory.SiemensAdvisory","properties":{"csaf_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvrf_url":{"type":"string"},"date_added":{"type":"string"},"html_url":{"type":"string"},"id":{"type":"string"},"last_update":{"description":"could potentially kill this in the future as it's a dupe","type":"string"},"pdf_url":{"type":"string"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"ssa":{"$ref":"#/components/schemas/advisory.SSASource"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"txt_url":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.SiemensBranch":{"description":"advisory.SiemensBranch","properties":{"branches":{"items":{"$ref":"#/components/schemas/advisory.SiemensSubBranch"},"type":"array","uniqueItems":false},"category":{"type":"string"},"name":{"type":"string"}},"type":"object"},"advisory.SiemensCVSSV3":{"description":"advisory.SiemensCVSSV3","properties":{"baseScore":{"type":"number"},"baseSeverity":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.SiemensCWE":{"description":"advisory.SiemensCWE","properties":{"id":{"type":"string"},"name":{"type":"string"}},"type":"object"},"advisory.SiemensDistribution":{"description":"advisory.SiemensDistribution","properties":{"text":{"type":"string"},"tlp":{"$ref":"#/components/schemas/advisory.SiemensTLP"}},"type":"object"},"advisory.SiemensDocument":{"description":"advisory.SiemensDocument","properties":{"acknowledgments":{"items":{"$ref":"#/components/schemas/advisory.SiemensAcknowledgments"},"type":"array","uniqueItems":false},"category":{"type":"string"},"csaf_version":{"type":"string"},"distribution":{"$ref":"#/components/schemas/advisory.SiemensDistribution"},"notes":{"items":{"$ref":"#/components/schemas/advisory.SiemensNotes"},"type":"array","uniqueItems":false},"publisher":{"$ref":"#/components/schemas/advisory.SiemensPublisher"},"references":{"items":{"$ref":"#/components/schemas/advisory.SiemensReferences"},"type":"array","uniqueItems":false},"title":{"type":"string"},"tracking":{"$ref":"#/components/schemas/advisory.SiemensTracking"}},"type":"object"},"advisory.SiemensEngine":{"description":"advisory.SiemensEngine","properties":{"name":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.SiemensGenerator":{"description":"advisory.SiemensGenerator","properties":{"engine":{"$ref":"#/components/schemas/advisory.SiemensEngine"}},"type":"object"},"advisory.SiemensNotes":{"description":"advisory.SiemensNotes","properties":{"category":{"type":"string"},"text":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.SiemensProduct":{"description":"advisory.SiemensProduct","properties":{"name":{"type":"string"},"product_id":{"type":"string"},"product_identification_helper":{"$ref":"#/components/schemas/advisory.SiemensProductIdentificationHelper"}},"type":"object"},"advisory.SiemensProductIdentificationHelper":{"description":"advisory.SiemensProductIdentificationHelper","properties":{"model_numbers":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.SiemensProductStatus":{"description":"advisory.SiemensProductStatus","properties":{"known_affected":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.SiemensProductTree":{"description":"advisory.SiemensProductTree","properties":{"branches":{"items":{"$ref":"#/components/schemas/advisory.SiemensBranch"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.SiemensPublisher":{"description":"advisory.SiemensPublisher","properties":{"category":{"type":"string"},"contact_details":{"type":"string"},"name":{"type":"string"},"namespace":{"type":"string"}},"type":"object"},"advisory.SiemensReferences":{"description":"advisory.SiemensReferences","properties":{"category":{"type":"string"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SiemensRemediation":{"description":"advisory.SiemensRemediation","properties":{"category":{"type":"string"},"details":{"type":"string"},"product_ids":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"advisory.SiemensRevisionHistory":{"description":"advisory.SiemensRevisionHistory","properties":{"date":{"type":"string"},"legacy_version":{"type":"string"},"number":{"type":"string"},"summary":{"type":"string"}},"type":"object"},"advisory.SiemensScore":{"description":"advisory.SiemensScore","properties":{"cvss_v3":{"$ref":"#/components/schemas/advisory.SiemensCVSSV3"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.SiemensSubBranch":{"description":"advisory.SiemensSubBranch","properties":{"branches":{"items":{"$ref":"#/components/schemas/advisory.SiemensSubSubBranch"},"type":"array","uniqueItems":false},"category":{"type":"string"},"name":{"type":"string"}},"type":"object"},"advisory.SiemensSubSubBranch":{"description":"advisory.SiemensSubSubBranch","properties":{"category":{"type":"string"},"name":{"type":"string"},"product":{"$ref":"#/components/schemas/advisory.SiemensProduct"}},"type":"object"},"advisory.SiemensTLP":{"description":"advisory.SiemensTLP","properties":{"label":{"type":"string"}},"type":"object"},"advisory.SiemensTracking":{"description":"advisory.SiemensTracking","properties":{"current_release_date":{"type":"string"},"generator":{"$ref":"#/components/schemas/advisory.SiemensGenerator"},"id":{"type":"string"},"initial_release_date":{"type":"string"},"revision_history":{"items":{"$ref":"#/components/schemas/advisory.SiemensRevisionHistory"},"type":"array","uniqueItems":false},"status":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.SiemensVulnerability":{"description":"advisory.SiemensVulnerability","properties":{"cve":{"type":"string"},"cwe":{"$ref":"#/components/schemas/advisory.SiemensCWE"},"notes":{"items":{"$ref":"#/components/schemas/advisory.SiemensNotes"},"type":"array","uniqueItems":false},"product_status":{"$ref":"#/components/schemas/advisory.SiemensProductStatus"},"references":{"items":{"$ref":"#/components/schemas/advisory.SiemensReferences"},"type":"array","uniqueItems":false},"remediations":{"items":{"$ref":"#/components/schemas/advisory.SiemensRemediation"},"type":"array","uniqueItems":false},"scores":{"items":{"$ref":"#/components/schemas/advisory.SiemensScore"},"type":"array","uniqueItems":false},"title":{"type":"string"}},"type":"object"},"advisory.SierraWireless":{"description":"advisory.SierraWireless","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"swid":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SigmaRule":{"description":"advisory.SigmaRule","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"mitre_attack_techniques":{"items":{"type":"string"},"type":"array","uniqueItems":false},"sigma_rule":{"$ref":"#/components/schemas/advisory.SigmaRuleRule"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SigmaRuleRule":{"description":"advisory.SigmaRuleRule","properties":{"author":{"type":"string"},"date":{"type":"string"},"description":{"type":"string"},"detection":{"additionalProperties":{},"type":"object"},"false_positives":{"items":{"type":"string"},"type":"array","uniqueItems":false},"fields":{"items":{"type":"string"},"type":"array","uniqueItems":false},"id":{"type":"string"},"level":{"type":"string"},"logsource":{"$ref":"#/components/schemas/advisory.LogSource"},"modified":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"related":{"items":{"$ref":"#/components/schemas/advisory.RelatedRule"},"type":"array","uniqueItems":false},"status":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"}},"type":"object"},"advisory.SingCert":{"description":"advisory.SingCert","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"link":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"summary":{"type":"string"},"title":{"type":"string"},"updated":{"type":"string"}},"type":"object"},"advisory.Sitecore":{"description":"advisory.Sitecore","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"refs":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"summary_ja":{"type":"string"},"title":{"type":"string"},"title_ja":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Slackware":{"description":"advisory.Slackware","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SoftwareUpdate":{"description":"advisory.SoftwareUpdate","properties":{"affectedVersion":{"type":"string"},"cves":{"items":{"type":"string"},"type":"array"},"operatingSystem":{"type":"string"},"softwareProduct":{"type":"string"},"updatedVersion":{"type":"string"}},"type":"object"},"advisory.SolarWindsAdvisory":{"description":"advisory.SolarWindsAdvisory","properties":{"affected_products":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"date_added":{"type":"string"},"fixed_version":{"type":"string"},"severity":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Solr":{"description":"advisory.Solr","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Sonatype":{"description":"advisory.Sonatype","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SonicWallAdvisory":{"description":"advisory.SonicWallAdvisory","properties":{"advisory_id":{"type":"string"},"affected_products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"cvss_vector":{"type":"string"},"cvss_version":{"type":"number"},"cwe":{"type":"string"},"date_added":{"type":"string"},"impact":{"type":"string"},"is_workaround_available":{"type":"boolean"},"last_updated_when":{"type":"string"},"published_when":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"vuln_status":{"type":"string"},"vulnerable_products_list":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.SpacelabsHealthcareAdvisory":{"description":"advisory.SpacelabsHealthcareAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Splunk":{"description":"advisory.Splunk","properties":{"advisory_id":{"type":"string"},"affected_products":{"items":{"$ref":"#/components/schemas/advisory.SplunkProduct"},"type":"array","uniqueItems":false},"bug_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SplunkProduct":{"description":"advisory.SplunkProduct","properties":{"affected_version":{"type":"string"},"component":{"type":"string"},"fixed_version":{"type":"string"},"product":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.Spring":{"description":"advisory.Spring","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Stormshield":{"description":"advisory.Stormshield","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.StrykerAdvisory":{"description":"advisory.StrykerAdvisory","properties":{"affected_components":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Sudo":{"description":"advisory.Sudo","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details":{"type":"string"},"fix":{"type":"string"},"impact":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"workaround":{"type":"string"}},"type":"object"},"advisory.SuseSecurity":{"description":"advisory.SuseSecurity","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SwisslogHealthcareAdvisory":{"description":"advisory.SwisslogHealthcareAdvisory","properties":{"affected_components":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Symfony":{"description":"advisory.Symfony","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Synacktiv":{"description":"advisory.Synacktiv","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SyncroSoft":{"description":"advisory.SyncroSoft","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Synology":{"description":"advisory.Synology","properties":{"affected_products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"last_updated":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"status":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Syss":{"description":"advisory.Syss","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.TI":{"description":"advisory.TI","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"incident_id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.TPLink":{"description":"advisory.TPLink","properties":{"bulletin_id":{"type":"integer"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.TWCertAdvisory":{"description":"advisory.TWCertAdvisory","properties":{"affected_cn":{"type":"string"},"affected_en":{"type":"string"},"credit_cn":{"type":"string"},"credit_en":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description_cn":{"type":"string"},"description_en":{"type":"string"},"link":{"type":"string"},"solution_cn":{"type":"string"},"solution_en":{"type":"string"},"title_cn":{"type":"string"},"title_en":{"type":"string"},"tvnid":{"type":"string"}},"type":"object"},"advisory.Tailscale":{"description":"advisory.Tailscale","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.TalosAdvisory":{"description":"advisory.TalosAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"talos_id":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.TeamViewer":{"description":"advisory.TeamViewer","properties":{"bulletin_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.TenableResearchAdvisory":{"description":"advisory.TenableResearchAdvisory","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Tencent":{"description":"advisory.Tencent","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary_cn":{"type":"string"},"title_cn":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Thales":{"description":"advisory.Thales","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.TheMissingLink":{"description":"advisory.TheMissingLink","properties":{"affected_versions":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed_versions":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ThermoFisher":{"description":"advisory.ThermoFisher","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ThreatActorWithExternalObjects":{"description":"advisory.ThreatActorWithExternalObjects","properties":{"associated_capecs":{"items":{"$ref":"#/components/schemas/advisory.Capec"},"type":"array","uniqueItems":false},"associated_cwes":{"items":{"$ref":"#/components/schemas/advisory.CweData"},"type":"array","uniqueItems":false},"associated_mitre_attack_techniques":{"items":{"$ref":"#/components/schemas/advisory.MitreAttackTechWithRefs"},"type":"array","uniqueItems":false},"country":{"type":"string"},"cve_references":{"items":{"$ref":"#/components/schemas/advisory.CVEReference"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"malpedia_url":{"type":"string"},"misp_id":{"type":"string"},"misp_threat_actor":{"$ref":"#/components/schemas/advisory.MISPValueNoID"},"mitre_attack_group":{"$ref":"#/components/schemas/advisory.MITREAttackGroupNoID"},"mitre_group_cti":{"$ref":"#/components/schemas/advisory.MitreGroupCTI"},"mitre_id":{"type":"string"},"threat_actor_name":{"type":"string"},"tools":{"items":{"$ref":"#/components/schemas/advisory.Tool"},"type":"array","uniqueItems":false},"vendor_names_for_threat_actors":{"items":{"$ref":"#/components/schemas/advisory.VendorNameForThreatActor"},"type":"array","uniqueItems":false},"vendors_and_products_targeted":{"items":{"$ref":"#/components/schemas/advisory.VendorProduct"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.ThreatData":{"description":"advisory.ThreatData","properties":{"category":{"type":"string"},"details":{"type":"string"},"product_ids":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.Tibco":{"description":"advisory.Tibco","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"impact":{"type":"string"},"overview":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Timeline":{"description":"advisory.Timeline","properties":{"lang":{"type":"string"},"time":{"description":"FIXME: flip to time","type":"string"},"value":{"type":"string"}},"type":"object"},"advisory.Tool":{"description":"advisory.Tool","properties":{"name":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.ToolRef"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.ToolRef":{"description":"advisory.ToolRef","properties":{"date_added":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Tracking":{"description":"advisory.Tracking","properties":{"current_release_date":{"type":"string"},"id":{"type":"string"},"initial_release_date":{"type":"string"},"revision_history":{"items":{"$ref":"#/components/schemas/advisory.RevisionHistory"},"type":"array","uniqueItems":false},"status":{"type":"string"},"version":{"description":"should match last 'number' in []RevisionHistory","type":"string"}},"type":"object"},"advisory.TrackingID":{"description":"advisory.TrackingID","properties":{"system_name":{"type":"string"},"text":{"type":"string"}},"type":"object"},"advisory.TraneTechnology":{"description":"advisory.TraneTechnology","properties":{"brand":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"product":{"type":"string"},"summary":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.TrendMicro":{"description":"advisory.TrendMicro","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"scores":{"type":"string"},"severity":{"type":"string"},"solution":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.TriageNotes":{"description":"advisory.TriageNotes","properties":{"references":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.Trustwave":{"description":"advisory.Trustwave","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.USD":{"description":"advisory.USD","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.USOMAdvisory":{"description":"advisory.USOMAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"effect_tr":{"type":"string"},"general_information_tr":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"solution_tr":{"type":"string"},"title_tr":{"type":"string"},"trid":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Ubiquiti":{"description":"advisory.Ubiquiti","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"links":{"items":{"type":"string"},"type":"array","uniqueItems":false},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.UbuntuCVE":{"description":"advisory.UbuntuCVE","properties":{"affected_packages":{"items":{"$ref":"#/components/schemas/advisory.AffectedUbuntuPackage"},"type":"array","uniqueItems":false},"cve":{"description":"Candidate","items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"description":"PublicDate","type":"string"},"reference_urls":{"description":"References","items":{"type":"string"},"type":"array","uniqueItems":false},"source_url":{"type":"string"},"status":{"description":"active || retired","type":"string"},"ubuntu_url":{"type":"string"},"usn":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.UbuntuPackageReleaseStatus":{"description":"advisory.UbuntuPackageReleaseStatus","properties":{"affected":{"type":"boolean"},"fixed":{"type":"boolean"},"fixed_version":{"type":"string"},"lts":{"type":"boolean"},"release":{"type":"string"},"release_long":{"type":"string"},"release_version":{"type":"string"},"status":{"type":"string"}},"type":"object"},"advisory.Unify":{"description":"advisory.Unify","properties":{"advisory_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Unisoc":{"description":"advisory.Unisoc","properties":{"access_vector":{"type":"string"},"affected_chipsets":{"type":"string"},"affected_software":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"rating":{"type":"string"},"score":{"type":"string"},"severity":{"type":"string"},"technology":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vulnerability":{"type":"string"}},"type":"object"},"advisory.Update":{"description":"advisory.Update","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"description":"sort // key","type":"string"},"issued":{"$ref":"#/components/schemas/advisory.DateTime"},"os_arch":{"type":"string"},"os_version":{"type":"string"},"packages":{"items":{"$ref":"#/components/schemas/advisory.Package"},"type":"array","uniqueItems":false},"references":{"items":{"$ref":"#/components/schemas/advisory.Reference"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"},"updated":{"$ref":"#/components/schemas/advisory.DateTime"}},"type":"object"},"advisory.Updated":{"description":"advisory.Updated","type":"object"},"advisory.V3AcceptanceLevel":{"description":"advisory.V3AcceptanceLevel","properties":{"description":{"type":"string"},"lastModified":{"type":"string"}},"type":"object"},"advisory.VCCPEDictionary":{"description":"advisory.VCCPEDictionary","properties":{"baseCPE":{"type":"string"},"versions":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.VCVulnerableCPEs":{"description":"advisory.VCVulnerableCPEs","properties":{"cve":{"type":"string"},"unrolled":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.VDEAdvisory":{"description":"advisory.VDEAdvisory","properties":{"csaf_json":{"$ref":"#/components/schemas/advisory.CSAF"},"csaf_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_revised":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vde":{"type":"string"}},"type":"object"},"advisory.VLC":{"description":"advisory.VLC","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.VMWareAdvisory":{"description":"advisory.VMWareAdvisory","properties":{"AdvisoryID":{"type":"string"},"AdvisoryURL":{"type":"string"},"CVSSv3Range":{"type":"string"},"IssueDate":{"type":"string"},"Severity":{"type":"string"},"Synopsis":{"type":"string"},"UpdatedOn":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.VYAIREAdvisory":{"description":"advisory.VYAIREAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.VanDyke":{"description":"advisory.VanDyke","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.VapidLabsAdvisory":{"description":"advisory.VapidLabsAdvisory","properties":{"author":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"exploit":{"type":"string"},"link":{"type":"string"},"title":{"type":"string"},"vapidId":{"type":"string"},"vendor":{"type":"string"},"vulnerability":{"type":"string"}},"type":"object"},"advisory.Veeam":{"description":"advisory.Veeam","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"solution":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.VendorNameForThreatActor":{"description":"advisory.VendorNameForThreatActor","properties":{"threat_actor_name":{"type":"string"},"url":{"type":"string"},"vendor_name":{"type":"string"}},"type":"object"},"advisory.VendorProduct":{"description":"advisory.VendorProduct","properties":{"product":{"type":"string"},"vendor":{"type":"string"}},"type":"object"},"advisory.VendorRef":{"description":"advisory.VendorRef","properties":{"vendor_ref":{"type":"string"},"vendor_ref_url":{"type":"string"}},"type":"object"},"advisory.Veritas":{"description":"advisory.Veritas","properties":{"bulletin_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Virtuozzo":{"description":"advisory.Virtuozzo","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.VoidSec":{"description":"advisory.VoidSec","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.VulnCheck":{"description":"advisory.VulnCheck","properties":{"affecting":{"items":{"type":"string"},"type":"array","uniqueItems":false},"credit":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"cvss_v3_vector":{"type":"string"},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.VulnCheckCVEListV5":{"description":"advisory.VulnCheckCVEListV5","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"mitre_ref":{"$ref":"#/components/schemas/advisory.MitreCVEListV5Ref"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.VulnCheckConfig":{"description":"advisory.VulnCheckConfig","properties":{"config":{"items":{"$ref":"#/components/schemas/advisory.NVD20Configuration"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"}},"type":"object"},"advisory.VulnCheckKEV":{"description":"advisory.VulnCheckKEV","properties":{"_timestamp":{"type":"string"},"cisa_date_added":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwes":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"dueDate":{"type":"string"},"knownRansomwareCampaignUse":{"type":"string"},"product":{"type":"string"},"reported_exploited_by_vulncheck_canaries":{"type":"boolean"},"required_action":{"type":"string"},"shortDescription":{"type":"string"},"vendorProject":{"type":"string"},"vulncheck_reported_exploitation":{"items":{"$ref":"#/components/schemas/advisory.ReportedExploit"},"type":"array","uniqueItems":false},"vulncheck_xdb":{"items":{"$ref":"#/components/schemas/advisory.XDB"},"type":"array","uniqueItems":false},"vulnerabilityName":{"type":"string"}},"type":"object"},"advisory.VulnCheckPackage":{"description":"advisory.VulnCheckPackage","properties":{"arch":{"type":"string"},"distro":{"type":"string"},"filename":{"type":"string"},"md5":{"type":"string"},"name":{"type":"string"},"purl":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.VulnerableDebianPackage":{"description":"advisory.VulnerableDebianPackage","properties":{"associated_cves":{"items":{"$ref":"#/components/schemas/advisory.DebianCVE"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"package_name":{"type":"string"}},"type":"object"},"advisory.VulnerableProduct":{"description":"advisory.VulnerableProduct","properties":{"name":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.Vulnrichment":{"description":"advisory.Vulnrichment","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"mitre_ref":{"$ref":"#/components/schemas/advisory.VulnrichmentCVERef"},"url":{"type":"string"}},"type":"object"},"advisory.VulnrichmentCVERef":{"description":"advisory.VulnrichmentCVERef","properties":{"containers":{"$ref":"#/components/schemas/advisory.VulnrichmentContainers"},"cveMetadata":{"$ref":"#/components/schemas/advisory.MCveMetadata"},"dataType":{"type":"string"},"dataVersion":{"type":"string"}},"type":"object"},"advisory.VulnrichmentContainers":{"description":"advisory.VulnrichmentContainers","properties":{"adp":{"items":{"$ref":"#/components/schemas/advisory.ADP"},"type":"array","uniqueItems":false},"cna":{"$ref":"#/components/schemas/advisory.MCna"}},"type":"object"},"advisory.VulnrichmentContent":{"description":"advisory.VulnrichmentContent","properties":{"id":{"type":"string"},"options":{"items":{"$ref":"#/components/schemas/advisory.VulnrichmentOption"},"type":"array","uniqueItems":false},"role":{"type":"string"},"timestamp":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.VulnrichmentMetric":{"description":"advisory.VulnrichmentMetric","properties":{"other":{"$ref":"#/components/schemas/advisory.VulnrichmentOther"}},"type":"object"},"advisory.VulnrichmentOption":{"description":"advisory.VulnrichmentOption","properties":{"Automatable":{"type":"string"},"Exploitation":{"type":"string"},"Technical Impact":{"type":"string"}},"type":"object"},"advisory.VulnrichmentOther":{"description":"advisory.VulnrichmentOther","properties":{"content":{"$ref":"#/components/schemas/advisory.VulnrichmentContent"},"type":{"type":"string"}},"type":"object"},"advisory.WRT":{"description":"advisory.WRT","properties":{"advisory":{"type":"string"},"affectedVersions":{"type":"string"},"credits":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"mitigations":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"requirements":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.WatchGuard":{"description":"advisory.WatchGuard","properties":{"advisory_id":{"type":"string"},"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"resolution":{"type":"string"},"score":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.WhatsApp":{"description":"advisory.WhatsApp","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Wibu":{"description":"advisory.Wibu","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Wireshark":{"description":"advisory.Wireshark","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.WithSecure":{"description":"advisory.WithSecure","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.WolfSSL":{"description":"advisory.WolfSSL","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"fixed_version":{"type":"string"},"severity":{"type":"string"}},"type":"object"},"advisory.Wolfi":{"description":"advisory.Wolfi","properties":{"apkurl":{"type":"string"},"archs":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"description":"un-used","type":"string"},"packages":{"items":{"$ref":"#/components/schemas/advisory.WolfiPackage"},"type":"array","uniqueItems":false},"reponame":{"type":"string"},"urlprefix":{"type":"string"}},"type":"object"},"advisory.WolfiPackage":{"description":"advisory.WolfiPackage","properties":{"name":{"type":"string"},"secfixes":{"items":{"$ref":"#/components/schemas/advisory.WolfiSecFix"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.WolfiSecFix":{"description":"advisory.WolfiSecFix","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"version":{"type":"string"}},"type":"object"},"advisory.Wordfence":{"description":"advisory.Wordfence","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"fixed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.XDB":{"description":"advisory.XDB","properties":{"clone_ssh_url":{"type":"string"},"date_added":{"type":"string"},"exploit_type":{"type":"string"},"xdb_id":{"type":"string"},"xdb_url":{"type":"string"}},"type":"object"},"advisory.Xen":{"description":"advisory.Xen","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updatedAt":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Xerox":{"description":"advisory.Xerox","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Xiaomi":{"description":"advisory.Xiaomi","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"internal_id":{"type":"string"},"summary":{"type":"string"},"summary_cn":{"type":"string"},"title":{"type":"string"},"title_cn":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Xylem":{"description":"advisory.Xylem","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"xsa":{"type":"string"}},"type":"object"},"advisory.Yamaha":{"description":"advisory.Yamaha","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"summary_ja":{"type":"string"},"title_ja":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.YokogawaAdvisory":{"description":"advisory.YokogawaAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_revised":{"type":"string"},"name":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"ysar_id":{"type":"string"}},"type":"object"},"advisory.Yubico":{"description":"advisory.Yubico","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ZDI":{"description":"advisory.ZDI","properties":{"cves":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"cvss_version":{"type":"string"},"discoverers":{"items":{"type":"string"},"type":"array","uniqueItems":false},"filter_ids_dv":{"items":{"type":"string"},"type":"array","uniqueItems":false},"last_updated_at":{"type":"string"},"products":{"items":{"$ref":"#/components/schemas/advisory.ZDIProduct"},"type":"array","uniqueItems":false},"public_advisory":{"type":"string"},"published_date":{"type":"string"},"responses":{"items":{"$ref":"#/components/schemas/advisory.ZDIResponse"},"type":"array","uniqueItems":false},"title":{"type":"string"},"zdi_can":{"type":"string"},"zdi_public":{"type":"string"}},"type":"object"},"advisory.ZDIProduct":{"description":"advisory.ZDIProduct","properties":{"name":{"type":"string"},"uri":{"type":"string"},"vendor":{"$ref":"#/components/schemas/advisory.ZDIVendor"}},"type":"object"},"advisory.ZDIResponse":{"description":"advisory.ZDIResponse","properties":{"text":{"type":"string"},"uri":{"type":"string"},"vendor":{"$ref":"#/components/schemas/advisory.ZDIResponseVendor"}},"type":"object"},"advisory.ZDIResponseVendor":{"description":"advisory.ZDIResponseVendor","properties":{"name":{"type":"string"}},"type":"object"},"advisory.ZDIVendor":{"description":"advisory.ZDIVendor","properties":{"name":{"type":"string"},"uri":{"type":"string"}},"type":"object"},"advisory.Zebra":{"description":"advisory.Zebra","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ZeroDayAdvisory":{"description":"advisory.ZeroDayAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"zdi":{"$ref":"#/components/schemas/advisory.ZDI"}},"type":"object"},"advisory.ZeroScienceAdvisory":{"description":"advisory.ZeroScienceAdvisory","properties":{"advisoryId":{"type":"string"},"affectedVersions":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"impact":{"type":"string"},"link":{"type":"string"},"poC":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"risk":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"},"vendor":{"type":"string"}},"type":"object"},"advisory.Zimbra":{"description":"advisory.Zimbra","properties":{"bugs":{"items":{"type":"integer"},"type":"array"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"fix":{"type":"string"},"rating":{"type":"string"},"reporter":{"type":"string"},"summary":{"type":"string"}},"type":"object"},"advisory.Zoom":{"description":"advisory.Zoom","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"zsb":{"type":"string"}},"type":"object"},"advisory.Zscaler":{"description":"advisory.Zscaler","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ZuluVersion":{"description":"advisory.ZuluVersion","properties":{"jdk":{"type":"string"},"type":{"type":"string"},"zulu":{"type":"string"}},"type":"object"},"advisory.Zuso":{"description":"advisory.Zuso","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"zaid":{"type":"string"}},"type":"object"},"advisory.Zyxel":{"description":"advisory.Zyxel","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"api.BaseMetricV2":{"description":"api.BaseMetricV2","properties":{"acInsufInfo":{"type":"boolean"},"cvssV2":{"$ref":"#/components/schemas/api.CVSSV2"},"exploitabilityScore":{"type":"number"},"impactScore":{"type":"number"},"obtainAllPrivilege":{"type":"boolean"},"obtainOtherPrivilege":{"type":"boolean"},"obtainUserPrivilege":{"type":"boolean"},"severity":{"type":"string"},"userInteractionRequired":{"type":"boolean"}},"type":"object"},"api.BaseMetricV3":{"description":"api.BaseMetricV3","properties":{"cvssV3":{"$ref":"#/components/schemas/api.CVSSV3"},"exploitabilityScore":{"type":"number"},"impactScore":{"type":"number"}},"type":"object"},"api.CPE":{"description":"api.CPE","properties":{"edition":{"type":"string"},"language":{"type":"string"},"other":{"type":"string"},"part":{"type":"string"},"product":{"type":"string"},"sw_edition":{"type":"string"},"target_hw":{"type":"string"},"target_sw":{"type":"string"},"update":{"type":"string"},"vendor":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.CPEMatch":{"description":"api.CPEMatch","properties":{"cpe22Uri":{"type":"string"},"cpe23Uri":{"type":"string"},"cpe_name":{"items":{"$ref":"#/components/schemas/api.CPEName"},"type":"array","uniqueItems":false},"versionEndExcluding":{"type":"string"},"versionEndIncluding":{"type":"string"},"versionStartExcluding":{"type":"string"},"versionStartIncluding":{"type":"string"},"vulnerable":{"type":"boolean"}},"type":"object"},"api.CPEName":{"description":"api.CPEName","properties":{"cpe22Uri":{"type":"string"},"cpe23Uri":{"type":"string"},"lastModifiedDate":{"type":"string"}},"type":"object"},"api.CVE":{"description":"api.CVE","properties":{"CVE_data_meta":{"$ref":"#/components/schemas/api.CVEDataMeta"},"data_format":{"type":"string"},"data_type":{"type":"string"},"data_version":{"type":"string"},"description":{"$ref":"#/components/schemas/api.Description"},"problemtype":{"$ref":"#/components/schemas/api.ProblemType"},"references":{"$ref":"#/components/schemas/api.References"}},"type":"object"},"api.CVEDataMeta":{"description":"api.CVEDataMeta","properties":{"ASSIGNER":{"type":"string"},"ID":{"type":"string"}},"type":"object"},"api.CVEDataMetaExtended":{"description":"api.CVEDataMetaExtended","properties":{"ALIAS":{"type":"string"},"ASSIGNER":{"type":"string"},"ID":{"type":"string"},"STATUS":{"type":"string"}},"type":"object"},"api.CVEExtended":{"description":"api.CVEExtended","properties":{"CVE_data_meta":{"$ref":"#/components/schemas/api.CVEDataMetaExtended"},"categorization":{"$ref":"#/components/schemas/api.CategorizationExtended"},"data_format":{"type":"string"},"data_type":{"type":"string"},"data_version":{"type":"string"},"description":{"$ref":"#/components/schemas/api.Description"},"problemtype":{"$ref":"#/components/schemas/api.ProblemTypeExtended"},"references":{"$ref":"#/components/schemas/api.ReferencesExtended"}},"type":"object"},"api.CVSSV2":{"description":"api.CVSSV2","properties":{"accessComplexity":{"type":"string"},"accessVector":{"type":"string"},"authentication":{"type":"string"},"availabilityImpact":{"type":"string"},"baseScore":{"type":"number"},"confidentialityImpact":{"type":"string"},"integrityImpact":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.CVSSV3":{"description":"api.CVSSV3","properties":{"attackComplexity":{"type":"string"},"attackVector":{"type":"string"},"availabilityImpact":{"type":"string"},"baseScore":{"type":"number"},"baseSeverity":{"type":"string"},"confidentialityImpact":{"type":"string"},"integrityImpact":{"type":"string"},"privilegesRequired":{"type":"string"},"scope":{"type":"string"},"userInteraction":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.CWE":{"description":"api.CWE","properties":{"abstraction":{"type":"string"},"description":{"type":"string"},"kev_count":{"type":"integer"},"status":{"type":"string"},"structure":{"type":"string"},"vulncheck_nvd_count":{"type":"integer"},"weakness_id":{"type":"string"},"weakness_name":{"type":"string"},"weighted_score":{"type":"number"}},"type":"object"},"api.CategorizationExtended":{"description":"api.CategorizationExtended","properties":{"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"api.ClientFingerprints":{"description":"api.ClientFingerprints","properties":{"hassh":{"type":"string"},"ja3":{"type":"string"},"ja4":{"type":"string"}},"type":"object"},"api.Configurations":{"description":"api.Configurations","properties":{"CVE_data_version":{"type":"string"},"nodes":{"items":{"$ref":"#/components/schemas/api.Nodes"},"type":"array","uniqueItems":false}},"type":"object"},"api.CveItems":{"description":"api.CveItems","properties":{"configurations":{"$ref":"#/components/schemas/api.Configurations"},"cve":{"$ref":"#/components/schemas/api.CVE"},"impact":{"$ref":"#/components/schemas/api.Impact"},"lastModifiedDate":{"type":"string"},"publishedDate":{"type":"string"},"vcConfigurations":{"$ref":"#/components/schemas/api.Configurations"},"vcVulnerableCPEs":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"api.CveItemsExtended":{"description":"api.CveItemsExtended","properties":{"_timestamp":{"type":"string"},"configurations":{"$ref":"#/components/schemas/api.Configurations"},"cve":{"$ref":"#/components/schemas/api.CVEExtended"},"date_added":{"type":"string"},"documentGenerationDate":{"description":"the deep tag instructs deep.Equal to ignore this field (used during OpenSearch loading)","type":"string"},"impact":{"$ref":"#/components/schemas/api.ImpactExtended"},"lastModifiedDate":{"type":"string"},"mitre_attack_techniques":{"items":{"$ref":"#/components/schemas/api.MitreAttackTech"},"type":"array","uniqueItems":false},"publishedDate":{"type":"string"},"related_attack_patterns":{"items":{"$ref":"#/components/schemas/api.RelatedAttackPattern"},"type":"array","uniqueItems":false},"vcConfigurations":{"$ref":"#/components/schemas/api.Configurations"},"vcVulnerableCPEs":{"items":{"type":"string"},"type":"array","uniqueItems":false},"vulnerable_cpes":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"api.DateTime":{"description":"api.DateTime","type":"object"},"api.Description":{"description":"api.Description","properties":{"description_data":{"items":{"$ref":"#/components/schemas/api.DescriptionData"},"type":"array","uniqueItems":false}},"type":"object"},"api.DescriptionData":{"description":"api.DescriptionData","properties":{"lang":{"type":"string"},"value":{"type":"string"}},"type":"object"},"api.EPSS":{"description":"exclude EPSS from changelog","properties":{"epss_percentile":{"type":"number"},"epss_score":{"type":"number"},"last_modified":{"type":"string"}},"type":"object"},"api.EPSSData":{"description":"api.EPSSData","properties":{"_timestamp":{"type":"string"},"cve":{"type":"string"},"epss_percentile":{"type":"number"},"epss_score":{"type":"number"}},"type":"object"},"api.ExploitChain":{"description":"api.ExploitChain","properties":{"cves":{"items":{"$ref":"#/components/schemas/api.ExploitChainCVE"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"url":{"type":"string"}},"type":"object"},"api.ExploitChainCVE":{"description":"api.ExploitChainCVE","properties":{"cve":{"type":"string"},"type":{"type":"string"}},"type":"object"},"api.ExploitV3Result":{"description":"api.ExploitV3Result","properties":{"_timestamp":{"description":"ignore this field when checking for differences/changes","type":"string"},"commercial_exploit_found":{"type":"boolean"},"counts":{"$ref":"#/components/schemas/api.ExploitsV3Count"},"date_added":{"type":"string"},"epss":{"$ref":"#/components/schemas/api.EPSS"},"exploits":{"items":{"$ref":"#/components/schemas/api.NormalizedExploitV3Entry"},"type":"array","uniqueItems":false},"id":{"type":"string"},"inKEV":{"type":"boolean"},"inVCKEV":{"type":"boolean"},"max_exploit_maturity":{"type":"string"},"public_exploit_found":{"type":"boolean"},"reported_exploitation":{"items":{"$ref":"#/components/schemas/api.NormalizedReportV3Entry"},"type":"array","uniqueItems":false},"reported_exploited":{"type":"boolean"},"reported_exploited_by_botnets":{"type":"boolean"},"reported_exploited_by_honeypot_service":{"type":"boolean"},"reported_exploited_by_ransomware":{"type":"boolean"},"reported_exploited_by_threat_actors":{"type":"boolean"},"reported_exploited_by_vulncheck_canaries":{"type":"boolean"},"timeline":{"$ref":"#/components/schemas/api.ExploitsV3Timeline"},"trending":{"$ref":"#/components/schemas/api.ExploitsTrending"},"weaponized_exploit_found":{"type":"boolean"}},"type":"object"},"api.ExploitsChange":{"description":"api.ExploitsChange","properties":{"change_time":{"type":"string"},"change_type":{"type":"string"},"field":{"type":"string"},"new_value":{},"old_value":{}},"type":"object"},"api.ExploitsChangelog":{"description":"api.ExploitsChangelog","properties":{"changes":{"items":{"$ref":"#/components/schemas/api.ExploitsChange"},"type":"array","uniqueItems":false},"cve":{"type":"string"}},"type":"object"},"api.ExploitsTrending":{"description":"api.ExploitsTrending","properties":{"github":{"type":"boolean"}},"type":"object"},"api.ExploitsV3Count":{"description":"api.ExploitsV3Count","properties":{"botnets":{"type":"integer"},"exploits":{"type":"integer"},"ransomware_families":{"type":"integer"},"threat_actors":{"type":"integer"}},"type":"object"},"api.ExploitsV3Timeline":{"description":"api.ExploitsV3Timeline","properties":{"cisa_kev_date_added":{"type":"string"},"cisa_kev_date_due":{"type":"string"},"first_exploit_published":{"type":"string"},"first_exploit_published_weaponized_or_higher":{"type":"string"},"first_reported_botnet":{"type":"string"},"first_reported_ransomware":{"type":"string"},"first_reported_threat_actor":{"type":"string"},"most_recent_exploit_published":{"type":"string"},"most_recent_reported_botnet":{"type":"string"},"most_recent_reported_ransomware":{"type":"string"},"most_recent_reported_threat_actor":{"type":"string"},"nvd_last_modified":{"description":"it's often the case the nvd record was updated, but in a way that is irrelevant to the contents\nof a vc exploits record.","type":"string"},"nvd_published":{"type":"string"},"vulncheck_kev_date_added":{"type":"string"},"vulncheck_kev_date_due":{"type":"string"}},"type":"object"},"api.HTTPDetails":{"description":"api.HTTPDetails","properties":{"http_request_body":{"type":"string"},"http_user_agent":{"type":"string"},"method":{"type":"string"},"protocol":{"type":"string"},"url":{"type":"string"}},"type":"object"},"api.Impact":{"description":"api.Impact","properties":{"baseMetricV2":{"$ref":"#/components/schemas/api.BaseMetricV2"},"baseMetricV3":{"$ref":"#/components/schemas/api.BaseMetricV3"},"metricV40":{"$ref":"#/components/schemas/advisory.CVSSV40"}},"type":"object"},"api.ImpactExtended":{"description":"api.ImpactExtended","properties":{"baseMetricV2":{"$ref":"#/components/schemas/api.BaseMetricV2"},"baseMetricV3":{"$ref":"#/components/schemas/api.BaseMetricV3"},"correctedBaseMetricV3":{"$ref":"#/components/schemas/api.BaseMetricV3"},"epss":{"$ref":"#/components/schemas/api.EPSS"},"metricV40":{"$ref":"#/components/schemas/advisory.CVSSV40"},"ssvc":{"items":{"$ref":"#/components/schemas/api.SSVC"},"type":"array","uniqueItems":false},"temporalMetricV2":{"$ref":"#/components/schemas/api.TemporalMetricV2"},"temporalMetricV3":{"$ref":"#/components/schemas/api.TemporalMetricV3"},"temporalV3Corrected":{"$ref":"#/components/schemas/api.TemporalMetricV3"},"threatMetricV40":{"$ref":"#/components/schemas/advisory.CVSSV40Threat"}},"type":"object"},"api.InitialAccess":{"description":"api.InitialAccess","properties":{"artifacts":{"description":"Artifacts holds the set of available artifacts for this vulnerability, such as exploit, shodan queries, PCAP traces, and others.","items":{"$ref":"#/components/schemas/api.InitialAccessArtifact"},"type":"array","uniqueItems":false},"cve":{"description":"CVE identifier for the given initial access record.","type":"string"},"inKEV":{"description":"InKEV is true if this artifact is in CISA's Known Exploited Vulnerabilities (KEV) data set; otherwise, false.","type":"boolean"},"inVCKEV":{"description":"InVCKEV is true if this artifact is in VulnCheck's Known Exploited Vulnerabilities (VCKEV) data set; otherwise, false.","type":"boolean"},"vulnerable_cpes":{"description":"VulnerableCPEs is the list of vulnerable CPE strings associated with this CVE and artifact(s).","items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"api.InitialAccessArtifact":{"description":"api.InitialAccessArtifact","properties":{"artifactName":{"description":"ArtifactName is a title to associate with this artifact.","type":"string"},"artifactsURL":{"description":"ArtifactsURL are URLs to the available artifact.","items":{"type":"string"},"type":"array","uniqueItems":false},"baiduQueries":{"description":"...","items":{"type":"string"},"type":"array","uniqueItems":false},"baiduRawQueries":{"description":"...","items":{"type":"string"},"type":"array","uniqueItems":false},"censysLegacyQueries":{"description":"CensysLegacyQueries are legacy queries for examining potential Internet-exposed devices \u0026 applications with Censys in URL form.","items":{"type":"string"},"type":"array","uniqueItems":false},"censysLegacyRawQueries":{"description":"CensysLegacyRawQueries are raw legacy queries for examining potential Internet-exposed devices \u0026 applications with Censys.","items":{"type":"string"},"type":"array","uniqueItems":false},"censysQueries":{"description":"CensysQueries are queries for examining potential Internet-exposed devices \u0026 applications with Censys in URL form.","items":{"type":"string"},"type":"array","uniqueItems":false},"censysRawQueries":{"description":"CensysRawQueries are raw queries for examining potential Internet-exposed devices \u0026 applications with Censys.","items":{"type":"string"},"type":"array","uniqueItems":false},"chain":{"description":"Chain can represent the chain of exploitation.","items":{"type":"string"},"type":"array","uniqueItems":false},"cloneSSHURL":{"description":"CloneSSHURL is the git URL to clone the artifact with.","type":"string"},"dateAdded":{"description":"DateAdded is when this artifact entry was first added to the InitialAccess data set.","type":"string"},"driftnetQueries":{"description":"DriftnetQueries are queries for examining Internet exposed services with Driftnet.","items":{"type":"string"},"type":"array","uniqueItems":false},"driftnetRawQueries":{"description":"DriftnetRawQueries are queries for examining Internet exposed services with Driftnet.","items":{"type":"string"},"type":"array","uniqueItems":false},"exploit":{"description":"Exploit indicates whether or not an exploit is available in this artifact.","type":"boolean"},"fofaQueries":{"description":"FOFAQueries are raw queries for examining potential Internet-exposed devices \u0026 applications with FOFA.","items":{"type":"string"},"type":"array","uniqueItems":false},"fofaRawQueries":{"items":{"type":"string"},"type":"array","uniqueItems":false},"googleQueries":{"description":"google queries","items":{"type":"string"},"type":"array","uniqueItems":false},"googleRawQueries":{"description":"raw google queries","items":{"type":"string"},"type":"array","uniqueItems":false},"greynoiseQueries":{"description":"GreynoiseQueries are queries for finding the vulnerability via honeypot data.","items":{"type":"string"},"type":"array","uniqueItems":false},"mitreAttackTechniques":{"description":"MITRE ATT\u0026CK techniques","items":{"type":"string"},"type":"array","uniqueItems":false},"nmapScript":{"description":"NmapScript indicates whether or not an nmap script for scanning environment exists in this artifact.","type":"boolean"},"pcap":{"description":"PCAP indicates whether of not a package capture of the exploit PoC exploiting a vulnerable system exists in this artifact.","type":"boolean"},"product":{"description":"Product are the software that has the vulnerability.","items":{"type":"string"},"type":"array","uniqueItems":false},"related":{"description":"Related is a set of related cves.","items":{"type":"string"},"type":"array","uniqueItems":false},"shodanQueries":{"description":"ShodanQueries are queries for examining potential Internet-exposed devices \u0026 applications with Shodan in URL form.","items":{"type":"string"},"type":"array","uniqueItems":false},"shodanRawQueries":{"description":"ShodanRawQueries are raw queries for examining potential Internet-exposed devices \u0026 applications with Shodan.","items":{"type":"string"},"type":"array","uniqueItems":false},"sigmaRule":{"description":"SigmaRule indicates whether or not a Sigma rule designed to detect the exploitation of the vulnerability over the network exists in this artifact.","type":"boolean"},"snortRule":{"description":"SnortRule indicates whether or not a Snort rule designed to detect the exploitation of the vulnerability over the network exists in this artifact.","type":"boolean"},"suricataRule":{"description":"SuricataRule indicates whether or not a Suricata rule designed to detect the exploitation of the vulnerability over the network exists in this artifact.","type":"boolean"},"targetDocker":{"description":"TargetDocker indicates whether or not there is an available docker image with the vulnerability.","type":"boolean"},"targetEncryptedComms":{"description":"Encrypted communications?","type":"string"},"targetService":{"description":"TargetService indicates the service (HTTP, FTP, etc) that this exploit targets.","type":"string"},"vendor":{"description":"Vendor of the vulnerable product","type":"string"},"versionScanner":{"description":"VersionScanner indicates whether or not the exploit PoC can determine if target system is vulnerable without sending exploit payload in this artifact.","type":"boolean"},"yara":{"description":"YARA indicates whether or not a YARA rule designed to detect the exploit on an endpoint exists in this artifact.","type":"boolean"},"zeroday":{"description":"Zeroday indicates whether or not it is a VulnCheck zeroday.","type":"boolean"},"zoomEyeQueries":{"description":"ZoomEyeQueries are raw queries for examining potential Internet-exposed devices \u0026 applications with ZoomEye.","items":{"type":"string"},"type":"array","uniqueItems":false},"zoomEyeRawQueries":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"api.MitreAttackTech":{"description":"api.MitreAttackTech","properties":{"d3fendmapping":{"items":{"$ref":"#/components/schemas/api.MitreMitigation2D3fendMapping"},"type":"array","uniqueItems":false},"detections":{"items":{"$ref":"#/components/schemas/api.MitreDetectionTech"},"type":"array","uniqueItems":false},"domain":{"type":"string"},"id":{"type":"string"},"mitigations":{"items":{"$ref":"#/components/schemas/api.MitreMitigationTech"},"type":"array","uniqueItems":false},"name":{"type":"string"},"subtechnique":{"type":"boolean"},"tactics":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"api.MitreAttackToCVE":{"description":"api.MitreAttackToCVE","properties":{"cve_list":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"technique_id":{"$ref":"#/components/schemas/api.MitreAttackTech"}},"type":"object"},"api.MitreD3fendTechnique":{"description":"api.MitreD3fendTechnique","properties":{"id":{"type":"string"},"url":{"type":"string"}},"type":"object"},"api.MitreDetectionTech":{"description":"api.MitreDetectionTech","properties":{"datacomponent":{"type":"string"},"datasource":{"type":"string"},"detects":{"type":"string"},"id":{"type":"string"}},"type":"object"},"api.MitreMitigation2D3fendMapping":{"description":"api.MitreMitigation2D3fendMapping","properties":{"d3fendtechniques":{"items":{"$ref":"#/components/schemas/api.MitreD3fendTechnique"},"type":"array","uniqueItems":false},"id":{"type":"string"}},"type":"object"},"api.MitreMitigationTech":{"description":"api.MitreMitigationTech","properties":{"description":{"type":"string"},"id":{"type":"string"},"mitigation_url":{"type":"string"}},"type":"object"},"api.NVD20CPEMatch":{"description":"api.NVD20CPEMatch","properties":{"cpeLastModified":{"type":"string"},"created":{"type":"string"},"criteria":{"type":"string"},"lastModified":{"type":"string"},"matchCriteriaId":{"type":"string"},"matches":{"items":{"$ref":"#/components/schemas/api.NVD20CPEName"},"type":"array","uniqueItems":false},"status":{"type":"string"},"versionEndExcluding":{"type":"string"},"versionEndIncluding":{"type":"string"},"versionStartExcluding":{"type":"string"},"versionStartIncluding":{"type":"string"}},"type":"object"},"api.NVD20CPEName":{"description":"api.NVD20CPEName","properties":{"cpeName":{"type":"string"},"cpeNameId":{"type":"string"}},"type":"object"},"api.NVD20CVE":{"description":"api.NVD20CVE","properties":{"cisaActionDue":{"type":"string"},"cisaExploitAdd":{"type":"string"},"cisaRequiredAction":{"type":"string"},"cisaVulnerabilityName":{"type":"string"},"configurations":{"items":{"$ref":"#/components/schemas/advisory.NVD20Configuration"},"type":"array","uniqueItems":false},"descriptions":{"items":{"$ref":"#/components/schemas/api.NVD20Description"},"type":"array","uniqueItems":false},"evaluatorComment":{"type":"string"},"evaluatorImpact":{"type":"string"},"evaluatorSolution":{"type":"string"},"id":{"type":"string"},"lastModified":{"type":"string"},"metrics":{"$ref":"#/components/schemas/api.NVD20Metric"},"published":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/api.NVD20Reference"},"type":"array","uniqueItems":false},"sourceIdentifier":{"type":"string"},"vcConfigurations":{"items":{"$ref":"#/components/schemas/advisory.NVD20Configuration"},"type":"array","uniqueItems":false},"vcVulnerableCPEs":{"items":{"type":"string"},"type":"array","uniqueItems":false},"vendorComments":{"items":{"$ref":"#/components/schemas/api.NVD20VendorComment"},"type":"array","uniqueItems":false},"vulnStatus":{"type":"string"},"weaknesses":{"items":{"$ref":"#/components/schemas/api.NVD20Weakness"},"type":"array","uniqueItems":false}},"type":"object"},"api.NVD20CVEExtended":{"description":"api.NVD20CVEExtended","properties":{"ALIAS":{"type":"string"},"STATUS":{"type":"string"},"_timestamp":{"description":"the deep tag instructs deep.Equal to ignore this field (used during OpenSearch loading)","type":"string"},"categorization":{"$ref":"#/components/schemas/api.CategorizationExtended"},"cisaActionDue":{"type":"string"},"cisaExploitAdd":{"type":"string"},"cisaRequiredAction":{"type":"string"},"cisaVulnerabilityName":{"type":"string"},"configurations":{"items":{"$ref":"#/components/schemas/advisory.NVD20Configuration"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"descriptions":{"items":{"$ref":"#/components/schemas/api.NVD20Description"},"type":"array","uniqueItems":false},"documentGenerationDate":{"type":"string"},"evaluatorComment":{"type":"string"},"evaluatorImpact":{"type":"string"},"evaluatorSolution":{"type":"string"},"id":{"type":"string"},"lastModified":{"type":"string"},"metrics":{"$ref":"#/components/schemas/api.NVD20MetricExtended"},"mitreAttackTechniques":{"items":{"$ref":"#/components/schemas/api.MitreAttackTech"},"type":"array","uniqueItems":false},"published":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/api.NVD20ReferenceExtended"},"type":"array","uniqueItems":false},"relatedAttackPatterns":{"items":{"$ref":"#/components/schemas/api.RelatedAttackPattern"},"type":"array","uniqueItems":false},"sourceIdentifier":{"type":"string"},"vcConfigurations":{"items":{"$ref":"#/components/schemas/advisory.NVD20Configuration"},"type":"array","uniqueItems":false},"vcVulnerableCPEs":{"items":{"type":"string"},"type":"array","uniqueItems":false},"vendorComments":{"items":{"$ref":"#/components/schemas/api.NVD20VendorComment"},"type":"array","uniqueItems":false},"vulnStatus":{"type":"string"},"vulncheckKEVExploitAdd":{"type":"string"},"vulnerableCPEs":{"items":{"type":"string"},"type":"array","uniqueItems":false},"weaknesses":{"items":{"$ref":"#/components/schemas/api.NVD20WeaknessExtended"},"type":"array","uniqueItems":false}},"type":"object"},"api.NVD20CvssDataV2":{"description":"api.NVD20CvssDataV2","properties":{"accessComplexity":{"type":"string"},"accessVector":{"type":"string"},"authentication":{"type":"string"},"availabilityImpact":{"type":"string"},"availabilityRequirement":{"type":"string"},"baseScore":{"type":"number"},"collateralDamagePotential":{"type":"string"},"confidentialityImpact":{"type":"string"},"confidentialityRequirement":{"type":"string"},"environmentalScore":{"type":"number"},"exploitability":{"type":"string"},"integrityImpact":{"type":"string"},"integrityRequirement":{"type":"string"},"remediationLevel":{"type":"string"},"reportConfidence":{"type":"string"},"targetDistribution":{"type":"string"},"temporalScore":{"type":"number"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.NVD20CvssDataV3":{"description":"api.NVD20CvssDataV3","properties":{"attackComplexity":{"type":"string"},"attackVector":{"type":"string"},"availabilityImpact":{"type":"string"},"availabilityRequirement":{"type":"string"},"baseScore":{"type":"number"},"baseSeverity":{"type":"string"},"confidentialityImpact":{"type":"string"},"confidentialityRequirement":{"type":"string"},"environmentalScore":{"type":"number"},"environmentalSeverity":{"type":"string"},"exploitCodeMaturity":{"type":"string"},"integrityImpact":{"type":"string"},"integrityRequirement":{"type":"string"},"modifiedAttackComplexity":{"type":"string"},"modifiedAttackVector":{"type":"string"},"modifiedAvailabilityImpact":{"type":"string"},"modifiedConfidentialityImpact":{"type":"string"},"modifiedIntegrityImpact":{"type":"string"},"modifiedPrivilegesRequired":{"type":"string"},"modifiedScope":{"type":"string"},"modifiedUserInteraction":{"type":"string"},"privilegesRequired":{"type":"string"},"remediationLevel":{"type":"string"},"reportConfidence":{"type":"string"},"scope":{"type":"string"},"temporalScore":{"type":"number"},"temporalSeverity":{"type":"string"},"userInteraction":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.NVD20CvssMetricV2":{"description":"api.NVD20CvssMetricV2","properties":{"acInsufInfo":{"type":"boolean"},"baseSeverity":{"type":"string"},"cvssData":{"$ref":"#/components/schemas/api.NVD20CvssDataV2"},"exploitabilityScore":{"type":"number"},"impactScore":{"type":"number"},"obtainAllPrivilege":{"type":"boolean"},"obtainOtherPrivilege":{"type":"boolean"},"obtainUserPrivilege":{"type":"boolean"},"source":{"type":"string"},"type":{"type":"string"},"userInteractionRequired":{"type":"boolean"}},"type":"object"},"api.NVD20CvssMetricV3":{"description":"api.NVD20CvssMetricV3","properties":{"cvssData":{"$ref":"#/components/schemas/api.NVD20CvssDataV3"},"exploitabilityScore":{"type":"number"},"impactScore":{"type":"number"},"source":{"type":"string"},"type":{"type":"string"}},"type":"object"},"api.NVD20CvssMetricV40":{"description":"api.NVD20CvssMetricV40","properties":{"cvssData":{"$ref":"#/components/schemas/advisory.CVSSV40"},"source":{"type":"string"},"type":{"type":"string"}},"type":"object"},"api.NVD20Description":{"description":"api.NVD20Description","properties":{"lang":{"type":"string"},"value":{"type":"string"}},"type":"object"},"api.NVD20Metric":{"description":"api.NVD20Metric","properties":{"cvssMetricV2":{"items":{"$ref":"#/components/schemas/api.NVD20CvssMetricV2"},"type":"array","uniqueItems":false},"cvssMetricV30":{"items":{"$ref":"#/components/schemas/api.NVD20CvssMetricV3"},"type":"array","uniqueItems":false},"cvssMetricV31":{"items":{"$ref":"#/components/schemas/api.NVD20CvssMetricV3"},"type":"array","uniqueItems":false},"cvssMetricV40":{"items":{"$ref":"#/components/schemas/api.NVD20CvssMetricV40"},"type":"array","uniqueItems":false}},"type":"object"},"api.NVD20MetricExtended":{"description":"api.NVD20MetricExtended","properties":{"cvssMetricV2":{"items":{"$ref":"#/components/schemas/api.NVD20CvssMetricV2"},"type":"array","uniqueItems":false},"cvssMetricV30":{"items":{"$ref":"#/components/schemas/api.NVD20CvssMetricV3"},"type":"array","uniqueItems":false},"cvssMetricV31":{"items":{"$ref":"#/components/schemas/api.NVD20CvssMetricV3"},"type":"array","uniqueItems":false},"cvssMetricV40":{"items":{"$ref":"#/components/schemas/api.NVD20CvssMetricV40"},"type":"array","uniqueItems":false},"epss":{"$ref":"#/components/schemas/api.EPSS"},"ssvc":{"items":{"$ref":"#/components/schemas/api.SSVC"},"type":"array","uniqueItems":false},"temporalCVSSV2":{"$ref":"#/components/schemas/api.NVD20TemporalCVSSV2"},"temporalCVSSV2Secondary":{"items":{"$ref":"#/components/schemas/api.NVD20TemporalCVSSV2"},"type":"array","uniqueItems":false},"temporalCVSSV30":{"$ref":"#/components/schemas/api.NVD20TemporalCVSSV3"},"temporalCVSSV30Secondary":{"items":{"$ref":"#/components/schemas/api.NVD20TemporalCVSSV3"},"type":"array","uniqueItems":false},"temporalCVSSV31":{"$ref":"#/components/schemas/api.NVD20TemporalCVSSV3"},"temporalCVSSV31Secondary":{"items":{"$ref":"#/components/schemas/api.NVD20TemporalCVSSV3"},"type":"array","uniqueItems":false},"threatCVSSV40":{"$ref":"#/components/schemas/api.NVD20ThreatCVSSV40"},"threatCVSSV40Secondary":{"items":{"$ref":"#/components/schemas/api.NVD20ThreatCVSSV40"},"type":"array","uniqueItems":false}},"type":"object"},"api.NVD20Reference":{"description":"api.NVD20Reference","properties":{"source":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"api.NVD20ReferenceExtended":{"description":"api.NVD20ReferenceExtended","properties":{"date_added":{"type":"string"},"external_id":{"type":"string"},"lang":{"type":"string"},"name":{"type":"string"},"previous_url":{"type":"string"},"refsource":{"type":"string"},"source":{"type":"string"},"status":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"api.NVD20TemporalAssociatedBaseMetric":{"description":"api.NVD20TemporalAssociatedBaseMetric","properties":{"baseScore":{"type":"number"},"source":{"type":"string"},"type":{"type":"string"}},"type":"object"},"api.NVD20TemporalCVSSV2":{"description":"api.NVD20TemporalCVSSV2","properties":{"associatedBaseMetricV2":{"$ref":"#/components/schemas/api.NVD20TemporalAssociatedBaseMetric"},"exploitability":{"type":"string"},"remediationLevel":{"type":"string"},"reportConfidence":{"type":"string"},"temporalScore":{"type":"number"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.NVD20TemporalCVSSV3":{"description":"api.NVD20TemporalCVSSV3","properties":{"associatedBaseMetricV3":{"$ref":"#/components/schemas/api.NVD20TemporalAssociatedBaseMetric"},"exploitCodeMaturity":{"type":"string"},"remediationLevel":{"type":"string"},"reportConfidence":{"type":"string"},"temporalScore":{"type":"number"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.NVD20ThreatAssociatedBaseMetric":{"description":"api.NVD20ThreatAssociatedBaseMetric","properties":{"baseScore":{"type":"number"},"source":{"type":"string"},"type":{"type":"string"}},"type":"object"},"api.NVD20ThreatCVSSV40":{"description":"api.NVD20ThreatCVSSV40","properties":{"associatedBaseMetricV40":{"$ref":"#/components/schemas/api.NVD20ThreatAssociatedBaseMetric"},"baseThreatScore":{"type":"number"},"baseThreatSeverity":{"type":"string"},"exploitMaturity":{"type":"string"}},"type":"object"},"api.NVD20VendorComment":{"description":"api.NVD20VendorComment","properties":{"comment":{"type":"string"},"lastModified":{"type":"string"},"organization":{"type":"string"}},"type":"object"},"api.NVD20Weakness":{"description":"api.NVD20Weakness","properties":{"description":{"items":{"$ref":"#/components/schemas/api.NVD20Description"},"type":"array","uniqueItems":false},"source":{"type":"string"},"type":{"type":"string"}},"type":"object"},"api.NVD20WeaknessDescExtended":{"description":"api.NVD20WeaknessDescExtended","properties":{"lang":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"},"value":{"type":"string"}},"type":"object"},"api.NVD20WeaknessExtended":{"description":"api.NVD20WeaknessExtended","properties":{"description":{"items":{"$ref":"#/components/schemas/api.NVD20WeaknessDescExtended"},"type":"array","uniqueItems":false},"source":{"type":"string"},"type":{"type":"string"}},"type":"object"},"api.Nodes":{"description":"api.Nodes","properties":{"children":{"items":{"$ref":"#/components/schemas/api.Nodes"},"type":"array","uniqueItems":false},"cpe_match":{"items":{"$ref":"#/components/schemas/api.CPEMatch"},"type":"array","uniqueItems":false},"operator":{"type":"string"}},"type":"object"},"api.NormalizedExploitV3Entry":{"description":"api.NormalizedExploitV3Entry","properties":{"clone_ssh_url":{"type":"string"},"clone_ssh_url_cached":{"type":"string"},"date_added":{"type":"string"},"exploit_availability":{"type":"string"},"exploit_maturity":{"type":"string"},"exploit_type":{"type":"string"},"name":{"type":"string"},"reference_url":{"type":"string"},"refsource":{"type":"string"},"repo_id":{"type":"string"},"url":{"type":"string"}},"type":"object"},"api.NormalizedReportV3Entry":{"description":"api.NormalizedReportV3Entry","properties":{"date_added":{"type":"string"},"name":{"type":"string"},"refsource":{"type":"string"},"url":{"type":"string"}},"type":"object"},"api.OSSPackage":{"description":"api.OSSPackage","properties":{"artifacts":{"$ref":"#/components/schemas/api.OSSPackageArtifacts"},"cves":{"items":{"type":"string"},"type":"array","uniqueItems":false},"licenses":{"items":{"type":"string"},"type":"array","uniqueItems":false},"name":{"type":"string"},"published_date":{"type":"string"},"purl":{"items":{"type":"string"},"type":"array","uniqueItems":false},"research_attributes":{"$ref":"#/components/schemas/api.OSSPackageResearchAttributes"},"version":{"type":"string"},"vulnerabilities":{"items":{"$ref":"#/components/schemas/api.OSSPackageVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"api.OSSPackageArtifacts":{"description":"api.OSSPackageArtifacts","properties":{"binary":{"items":{"$ref":"#/components/schemas/api.OSSPackageDownloadInfo"},"type":"array","uniqueItems":false},"source":{"items":{"$ref":"#/components/schemas/api.OSSPackageDownloadInfo"},"type":"array","uniqueItems":false}},"type":"object"},"api.OSSPackageDownloadInfo":{"description":"api.OSSPackageDownloadInfo","properties":{"hashes":{"items":{"$ref":"#/components/schemas/api.OSSPackageHashInfo"},"type":"array","uniqueItems":false},"reference":{"type":"string"},"type":{"description":"See OSSPackageDownloadInfoType* consts","type":"string"},"url":{"type":"string"}},"type":"object"},"api.OSSPackageHashInfo":{"description":"api.OSSPackageHashInfo","properties":{"algorithm":{"description":"See OSSPackageHashInfoAlgo* consts","type":"string"},"type":{"description":"See OSSPackageHashInfoType* consts","type":"string"},"value":{"description":"hex string digest or link to hash","type":"string"}},"type":"object"},"api.OSSPackageResearchAttributes":{"description":"api.OSSPackageResearchAttributes","properties":{"abandoned":{"type":"boolean"},"eol":{"type":"boolean"},"is_malicious":{"type":"boolean"},"malicious_source":{"type":"string"},"repo_hijackable":{"type":"boolean"},"squatted_package":{"type":"string"}},"type":"object"},"api.OSSPackageVulnerability":{"description":"api.OSSPackageVulnerability","properties":{"detection":{"type":"string"},"fixed_version":{"type":"string"}},"type":"object"},"api.Package":{"description":"api.Package","properties":{"filename":{"type":"string"},"name":{"description":"sort","type":"string"},"release":{"type":"string"},"src":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.ProblemType":{"description":"api.ProblemType","properties":{"problemtype_data":{"items":{"$ref":"#/components/schemas/api.ProblemTypeData"},"type":"array","uniqueItems":false}},"type":"object"},"api.ProblemTypeData":{"description":"api.ProblemTypeData","properties":{"description":{"items":{"$ref":"#/components/schemas/api.ProblemTypeDescription"},"type":"array","uniqueItems":false}},"type":"object"},"api.ProblemTypeDataExtended":{"description":"api.ProblemTypeDataExtended","properties":{"description":{"items":{"$ref":"#/components/schemas/api.ProblemTypeDescriptionExtended"},"type":"array","uniqueItems":false}},"type":"object"},"api.ProblemTypeDescription":{"description":"api.ProblemTypeDescription","properties":{"lang":{"type":"string"},"value":{"type":"string"}},"type":"object"},"api.ProblemTypeDescriptionExtended":{"description":"api.ProblemTypeDescriptionExtended","properties":{"lang":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"},"value":{"type":"string"}},"type":"object"},"api.ProblemTypeExtended":{"description":"api.ProblemTypeExtended","properties":{"problemtype_data":{"items":{"$ref":"#/components/schemas/api.ProblemTypeDataExtended"},"type":"array","uniqueItems":false}},"type":"object"},"api.Reference":{"description":"api.Reference","properties":{"href":{"description":"sort","type":"string"},"id":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"}},"type":"object"},"api.ReferenceData":{"description":"api.ReferenceData","properties":{"name":{"type":"string"},"refsource":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"api.ReferenceDataExtended":{"description":"api.ReferenceDataExtended","properties":{"date_added":{"type":"string"},"external_id":{"type":"string"},"lang":{"type":"string"},"name":{"type":"string"},"previous_url":{"type":"string"},"refsource":{"type":"string"},"status":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"api.References":{"description":"api.References","properties":{"reference_data":{"items":{"$ref":"#/components/schemas/api.ReferenceData"},"type":"array","uniqueItems":false}},"type":"object"},"api.ReferencesExtended":{"description":"api.ReferencesExtended","properties":{"reference_data":{"description":"ExploitData []NormalizedExploit `json:\"exploit_data,omitempty\"`\n\t\tThreatActorData []ThreatActorExtended `json:\"threat_actor_data,omitempty\"`\n\t\tRansomwareData []RansomwareReferenceData `json:\"ransomware_data,omitempty\"`\n\t\tAdvisoryData []AdvisoryExtended `json:\"advisory_data,omitempty\"`\n\t\tIdentifierData []IdentifierExtended `json:\"identifier_data,omitempty\"`","items":{"$ref":"#/components/schemas/api.ReferenceDataExtended"},"type":"array","uniqueItems":false}},"type":"object"},"api.RelatedAttackPattern":{"description":"api.RelatedAttackPattern","properties":{"capec_id":{"type":"string"},"capec_name":{"type":"string"},"capec_url":{"type":"string"},"lang":{"type":"string"}},"type":"object"},"api.SSVC":{"description":"api.SSVC","properties":{"automatable":{"type":"string"},"exploitation":{"type":"string"},"source":{"type":"string"},"technicalImpact":{"type":"string"}},"type":"object"},"api.TemporalCVSSV2":{"description":"api.TemporalCVSSV2","properties":{"exploitability":{"type":"string"},"remediationLevel":{"type":"string"},"reportConfidence":{"type":"string"},"temporalScore":{"type":"number"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.TemporalCVSSV3":{"description":"api.TemporalCVSSV3","properties":{"exploitCodeMaturity":{"type":"string"},"remediationLevel":{"type":"string"},"reportConfidence":{"type":"string"},"temporalScore":{"type":"number"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.TemporalMetricV2":{"description":"api.TemporalMetricV2","properties":{"cvssV2":{"$ref":"#/components/schemas/api.TemporalCVSSV2"}},"type":"object"},"api.TemporalMetricV3":{"description":"api.TemporalMetricV3","properties":{"cvssV3":{"$ref":"#/components/schemas/api.TemporalCVSSV3"}},"type":"object"},"api.Update":{"description":"api.Update","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"description":"sort // key","type":"string"},"issued":{"$ref":"#/components/schemas/api.DateTime"},"os_arch":{"type":"string"},"os_version":{"type":"string"},"packages":{"items":{"$ref":"#/components/schemas/api.Package"},"type":"array","uniqueItems":false},"references":{"items":{"$ref":"#/components/schemas/api.Reference"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"},"updated":{"$ref":"#/components/schemas/api.DateTime"}},"type":"object"},"api.VulnCheckCanary":{"description":"api.VulnCheckCanary","properties":{"category":{"type":"string"},"client_fingerprints":{"$ref":"#/components/schemas/api.ClientFingerprints"},"cve":{"type":"string"},"dst_country":{"type":"string"},"http":{"$ref":"#/components/schemas/api.HTTPDetails"},"payload":{"type":"string"},"severity":{"type":"integer"},"signature":{"type":"string"},"signature_id":{"type":"integer"},"src_country":{"type":"string"},"src_ip":{"type":"string"},"src_port":{"type":"integer"},"timestamp":{"type":"string"}},"type":"object"},"api.VulnerabilityAlias":{"description":"api.VulnerabilityAlias","properties":{"alias":{"type":"string"},"cve":{"type":"string"},"reference_url":{"type":"string"}},"type":"object"},"backup.BackupResponse":{"description":"backup.BackupResponse","properties":{"available":{"type":"boolean"},"feed":{"type":"string"},"url":{"type":"string"},"url_direct":{"type":"string"},"url_expires":{"type":"string"}},"type":"object"},"backup.FeedItem":{"description":"backup.FeedItem","properties":{"available":{"type":"boolean"},"backup_written_at":{"type":"string"},"href":{"type":"string"},"name":{"type":"string"}},"type":"object"},"backup.ListBackupsResponse":{"description":"backup.ListBackupsResponse","properties":{"data":{"items":{"$ref":"#/components/schemas/backup.FeedItem"},"type":"array","uniqueItems":false}},"type":"object"},"models.Entitlements":{"description":"models.Entitlements","properties":{"entitlements":{"additionalProperties":{"items":{"type":"string"},"type":"array"},"description":"Entitlements provides a map of roles to a list of entitlements","type":"object"}},"type":"object"},"paginate.Match":{"description":"paginate.Match","properties":{"field":{"type":"string"},"value":{"type":"string"}},"type":"object"},"paginate.Pagination":{"description":"paginate.Pagination","properties":{"cursor":{"description":"Cursor for the current page","type":"string"},"first_item":{"description":"First and last Item","type":"integer"},"index":{"description":"The requested index","type":"string"},"last_item":{"type":"integer"},"limit":{"description":"Per-Page limit","type":"integer"},"matches":{"items":{"$ref":"#/components/schemas/paginate.Match"},"type":"array","uniqueItems":false},"max_pages":{"type":"integer"},"next_cursor":{"description":"Cursor for the next page","type":"string"},"opensearch_query":{"type":"object"},"order":{"type":"string"},"page":{"description":"The current Page number","type":"integer"},"pages":{"items":{"type":"string"},"type":"array","uniqueItems":false},"parameters":{"items":{"$ref":"#/components/schemas/paginate.Param"},"type":"array","uniqueItems":false},"show_pages":{"type":"boolean"},"show_query":{"type":"boolean"},"sort":{"type":"string"},"timestamp":{"type":"string"},"total_documents":{"description":"The total number of items","type":"integer"},"total_pages":{"description":"The total number of pages","type":"integer"},"warnings":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"paginate.Param":{"description":"paginate.Param","properties":{"filtering":{"type":"string"},"format":{"type":"string"},"name":{"type":"string"}},"type":"object"},"params.IndexBackup":{"description":"params.IndexBackup","properties":{"date_added":{"type":"string"},"filename":{"type":"string"},"sha256":{"type":"string"},"url":{"type":"string"},"url_ap-southeast-2":{"type":"string"},"url_eu-west-2":{"type":"string"},"url_expires":{"type":"string"},"url_il-central-1":{"type":"string"},"url_me-central-1":{"type":"string"},"url_mrap":{"type":"string"},"url_ttl_minutes":{"type":"integer"},"url_us-east-1":{"type":"string"},"url_us-west-2":{"type":"string"}},"type":"object"},"params.IndexBackupList":{"description":"params.IndexBackupList","properties":{"description":{"type":"string"},"href":{"description":"Href API endpoint URI to detailed backup information","type":"string"},"name":{"type":"string"}},"type":"object"},"params.IndexList":{"description":"params.IndexList","properties":{"description":{"type":"string"},"href":{"description":"Href API endpoint URI to detailed index information","type":"string"},"name":{"type":"string"}},"type":"object"},"purl.BatchVulnFinding":{"description":"purl.BatchVulnFinding","properties":{"cves":{"description":"list of associated CVE 's","items":{"type":"string"},"type":"array","uniqueItems":false},"purl":{"description":"the purl, ex. hex/coherence@0.1.2","type":"string"},"purl_struct":{"$ref":"#/components/schemas/purl.PackageURLJSON"},"research_attributes":{"$ref":"#/components/schemas/api.OSSPackageResearchAttributes"},"vulnerabilities":{"description":"list of associated vulnerabilities","items":{"$ref":"#/components/schemas/api.OSSPackageVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"purl.PackageURLJSON":{"description":"meta-data about the purl","properties":{"name":{"type":"string"},"namespace":{"type":"string"},"qualifiers":{"items":{"$ref":"#/components/schemas/purl.QualifierJSON"},"type":"array","uniqueItems":false},"subpath":{"type":"string"},"type":{"type":"string"},"version":{"type":"string"}},"type":"object"},"purl.QualifierJSON":{"description":"purl.QualifierJSON","properties":{"key":{"type":"string"},"value":{"type":"string"}},"type":"object"},"purls.Artifact":{"description":"purls.Artifact","type":"object"},"purls.PurlResponse":{"description":"purls.PurlResponse","properties":{"artifacts":{"$ref":"#/components/schemas/purls.Artifact"},"cves":{"items":{"type":"string"},"type":"array","uniqueItems":false},"licenses":{"items":{"type":"string"},"type":"array","uniqueItems":false},"name":{"type":"string"},"published_date":{"type":"string"},"purl":{"items":{"type":"string"},"type":"array","uniqueItems":false},"version":{"type":"string"},"vulnerabilities":{"items":{"$ref":"#/components/schemas/purls.Vulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"purls.Vulnerability":{"description":"purls.Vulnerability","properties":{"arch":{"type":"string"},"detection":{"type":"string"},"fixed_version":{"type":"string"}},"type":"object"},"render.Response-array_params_IndexBackupList":{"description":"render.Response-array_params_IndexBackupList","properties":{"_benchmark":{"type":"number"},"data":{"items":{"$ref":"#/components/schemas/params.IndexBackupList"},"type":"array","uniqueItems":false}},"type":"object"},"render.Response-array_params_IndexList":{"description":"render.Response-array_params_IndexList","properties":{"_benchmark":{"type":"number"},"data":{"items":{"$ref":"#/components/schemas/params.IndexList"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_A10-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_A10-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.A10"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ABBAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ABBAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ABBAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AIX-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AIX-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AIX"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AMD-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AMD-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AMD"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AMI-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AMI-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AMI"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ASRG-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ASRG-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ASRG"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AVEVAAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AVEVAAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AVEVAAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AVIDMLAdvs-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AVIDMLAdvs-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AVIDMLAdvs"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AWS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AWS-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AWS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Abbott-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Abbott-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Abbott"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Absolute-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Absolute-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Absolute"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Acronis-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Acronis-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Acronis"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AdobeAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AdobeAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AdobeAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Advantech-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Advantech-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Advantech"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Advisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Advisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Advisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AdvisoryRecord-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AdvisoryRecord-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AdvisoryRecord"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AlephResearch-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AlephResearch-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AlephResearch"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Alibaba-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Alibaba-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Alibaba"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AlmaLinuxUpdate-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AlmaLinuxUpdate-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AlmaLinuxUpdate"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AlpineLinuxSecDB-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AlpineLinuxSecDB-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AlpineLinuxSecDB"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AmazonCVE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AmazonCVE-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AmazonCVE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AnchoreNVDOverride-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AnchoreNVDOverride-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AnchoreNVDOverride"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AndroidAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AndroidAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AndroidAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheActiveMQ-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheActiveMQ-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheActiveMQ"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheArchiva-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheArchiva-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheArchiva"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheArrow-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheArrow-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheArrow"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheCamel-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheCamel-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheCamel"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheCommons-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheCommons-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheCommons"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheCouchDB-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheCouchDB-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheCouchDB"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheFlink-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheFlink-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheFlink"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheGuacamole-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheGuacamole-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheGuacamole"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheHTTP-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheHTTP-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheHTTP"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheHadoop-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheHadoop-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheHadoop"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheJSPWiki-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheJSPWiki-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheJSPWiki"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheKafka-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheKafka-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheKafka"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheLoggingServices-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheLoggingServices-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheLoggingServices"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheNiFi-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheNiFi-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheNiFi"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheOFBiz-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheOFBiz-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheOFBiz"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheOpenMeetings-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheOpenMeetings-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheOpenMeetings"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheOpenOffice-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheOpenOffice-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheOpenOffice"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApachePulsar-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApachePulsar-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApachePulsar"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheShiro-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheShiro-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheShiro"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheSpark-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheSpark-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheSpark"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheStruts-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheStruts-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheStruts"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheSubversion-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheSubversion-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheSubversion"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheSuperset-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheSuperset-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheSuperset"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheTomcat-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheTomcat-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheTomcat"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheZooKeeper-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheZooKeeper-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ApacheZooKeeper"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AppCheck-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AppCheck-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AppCheck"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Appgate-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Appgate-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Appgate"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AppleAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AppleAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AppleAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ArchIssue-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ArchIssue-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ArchIssue"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Arista-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Arista-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Arista"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Aruba-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Aruba-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Aruba"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AssetNote-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AssetNote-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AssetNote"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Asterisk-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Asterisk-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Asterisk"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Astra-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Astra-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Astra"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Asus-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Asus-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Asus"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AtlassianAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AtlassianAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AtlassianAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AtlassianVuln-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AtlassianVuln-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AtlassianVuln"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Atredis-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Atredis-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Atredis"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Audiocodes-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Audiocodes-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Audiocodes"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AusCert-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AusCert-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.AusCert"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Autodesk-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Autodesk-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Autodesk"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Avaya-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Avaya-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Avaya"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Avigilon-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Avigilon-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Avigilon"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Axis-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Axis-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Axis"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Azul-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Azul-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Azul"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BBraunAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BBraunAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.BBraunAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BDUAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BDUAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.BDUAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BLS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BLS-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.BLS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Bandr-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Bandr-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Bandr"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BaxterAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BaxterAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.BaxterAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BeckhoffAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BeckhoffAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.BeckhoffAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BeckmanCoulter-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BeckmanCoulter-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.BeckmanCoulter"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BectonDickinsonAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BectonDickinsonAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.BectonDickinsonAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BeldenAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BeldenAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.BeldenAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BeyondTrust-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BeyondTrust-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.BeyondTrust"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Binarly-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Binarly-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Binarly"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BitDefender-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BitDefender-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.BitDefender"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BlackBerry-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BlackBerry-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.BlackBerry"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BoschAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BoschAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.BoschAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BostonScientificAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BostonScientificAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.BostonScientificAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Botnet-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Botnet-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Botnet"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CACyberCentreAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CACyberCentreAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CACyberCentreAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CBLMariner-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CBLMariner-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CBLMariner"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CERTEUAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CERTEUAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CERTEUAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CESA-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CESA-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CESA"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CISAAlert-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CISAAlert-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CISAAlert"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CNNVDEntryJSON-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CNNVDEntryJSON-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CNNVDEntryJSON"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CNVDBulletin-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CNVDBulletin-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CNVDBulletin"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CNVDFlaw-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CNVDFlaw-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CNVDFlaw"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CanvasExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CanvasExploit-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CanvasExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CarestreamAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CarestreamAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CarestreamAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Carrier-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Carrier-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Carrier"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CertBE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CertBE-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CertBE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CertFRAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CertFRAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CertFRAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CertIN-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CertIN-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CertIN"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CertIRSecurityAlert-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CertIRSecurityAlert-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CertIRSecurityAlert"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CertSE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CertSE-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CertSE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CertUA-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CertUA-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CertUA"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ChainGuard-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ChainGuard-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ChainGuard"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CheckPoint-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CheckPoint-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CheckPoint"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Chrome-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Chrome-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Chrome"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Ciena-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Ciena-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Ciena"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CisaCsafAdv-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CisaCsafAdv-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CisaCsafAdv"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CiscoAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CiscoAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CiscoAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CiscoCSAF-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CiscoCSAF-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CiscoCSAF"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CiscoKnownGoodValue-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CiscoKnownGoodValue-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CiscoKnownGoodValue"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CitrixAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CitrixAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CitrixAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ClarotyVulnerability-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ClarotyVulnerability-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ClarotyVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CloudBees-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CloudBees-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CloudBees"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CloudVulnDBAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CloudVulnDBAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CloudVulnDBAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CodesysAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CodesysAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CodesysAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CommVault-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CommVault-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CommVault"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CompassSecurity-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CompassSecurity-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CompassSecurity"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ContainerOS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ContainerOS-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ContainerOS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CoreImpactExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CoreImpactExploit-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CoreImpactExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Crestron-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Crestron-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Crestron"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CrowdSec-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CrowdSec-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.CrowdSec"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Curl-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Curl-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Curl"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Cvrf-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Cvrf-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Cvrf"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_DFNCert-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_DFNCert-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.DFNCert"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_DLink-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_DLink-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.DLink"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_DNN-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_DNN-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.DNN"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Dahua-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Dahua-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Dahua"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Danfoss-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Danfoss-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Danfoss"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Dassault-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Dassault-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Dassault"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_DebianSecurityAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_DebianSecurityAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.DebianSecurityAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Dell-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Dell-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Dell"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_DeltaAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_DeltaAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.DeltaAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_DistroPackage-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_DistroPackage-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.DistroPackage"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Django-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Django-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Django"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_DotCMS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_DotCMS-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.DotCMS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_DragosAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_DragosAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.DragosAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Draytek-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Draytek-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Draytek"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Drupal-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Drupal-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Drupal"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_EOLAlibaba-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_EOLAlibaba-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.EOLAlibaba"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_EOLMicrosoft-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_EOLMicrosoft-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.EOLMicrosoft"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_EOLReleaseData-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_EOLReleaseData-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.EOLReleaseData"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_EUVD-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_EUVD-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.EUVD"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_EatonAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_EatonAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.EatonAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Elastic-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Elastic-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Elastic"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Elspec-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Elspec-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Elspec"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_EmergingThreatsSnort-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_EmergingThreatsSnort-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.EmergingThreatsSnort"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_EmersonAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_EmersonAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.EmersonAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_EndOfLife-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_EndOfLife-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.EndOfLife"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Endress-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Endress-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Endress"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ExodusIntel-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ExodusIntel-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ExodusIntel"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ExploitDBExploitv2-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ExploitDBExploitv2-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ExploitDBExploitv2"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_F5-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_F5-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.F5"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_FSecure-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_FSecure-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.FSecure"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Fanuc-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Fanuc-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Fanuc"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Fastly-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Fastly-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Fastly"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Festo-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Festo-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Festo"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_FileCloud-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_FileCloud-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.FileCloud"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_FileZilla-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_FileZilla-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.FileZilla"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_FlattSecurity-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_FlattSecurity-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.FlattSecurity"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ForgeRock-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ForgeRock-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ForgeRock"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_FortinetAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_FortinetAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.FortinetAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_FortinetIPS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_FortinetIPS-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.FortinetIPS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Foxit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Foxit-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Foxit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Fresenius-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Fresenius-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Fresenius"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GCP-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GCP-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.GCP"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GEGas-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GEGas-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.GEGas"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GEHealthcareAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GEHealthcareAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.GEHealthcareAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GHAdvisoryJSONLean-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GHAdvisoryJSONLean-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.GHAdvisoryJSONLean"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GHSA-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GHSA-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.GHSA"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GMOCyberSecurity-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GMOCyberSecurity-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.GMOCyberSecurity"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Gallagher-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Gallagher-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Gallagher"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Gen-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Gen-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Gen"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Genetec-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Genetec-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Genetec"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Gigabyte-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Gigabyte-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Gigabyte"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GitHubExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GitHubExploit-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.GitHubExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GitLabExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GitLabExploit-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.GitLabExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GiteeExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GiteeExploit-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.GiteeExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GitlabAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GitlabAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.GitlabAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Glibc-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Glibc-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Glibc"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GnuTLS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GnuTLS-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.GnuTLS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GoVulnJSON-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GoVulnJSON-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.GoVulnJSON"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Grafana-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Grafana-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Grafana"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GreyNoiseDetection-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GreyNoiseDetection-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.GreyNoiseDetection"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HCL-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HCL-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.HCL"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HIKVision-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HIKVision-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.HIKVision"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HKCert-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HKCert-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.HKCert"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HMS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HMS-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.HMS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HP-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HP-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.HP"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HPE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HPE-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.HPE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Hacktivity-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Hacktivity-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Hacktivity"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HarmonyOS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HarmonyOS-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.HarmonyOS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HashiCorp-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HashiCorp-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.HashiCorp"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HaskellSADBAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HaskellSADBAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.HaskellSADBAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HillromAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HillromAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.HillromAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Hitachi-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Hitachi-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Hitachi"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HitachiEnergy-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HitachiEnergy-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.HitachiEnergy"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Honeywell-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Honeywell-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Honeywell"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Huawei-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Huawei-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Huawei"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HuaweiEulerOS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HuaweiEulerOS-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.HuaweiEulerOS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HuaweiIPS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HuaweiIPS-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.HuaweiIPS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_IAVA-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_IAVA-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.IAVA"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_IBM-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_IBM-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.IBM"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ITWExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ITWExploit-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ITWExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Idemia-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Idemia-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Idemia"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Igel-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Igel-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Igel"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_IncibeAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_IncibeAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.IncibeAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Intel-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Intel-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Intel"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_IpIntelRecord-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_IpIntelRecord-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.IpIntelRecord"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_IsraeliAlert-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_IsraeliAlert-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.IsraeliAlert"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_IsraeliVulnerability-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_IsraeliVulnerability-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.IsraeliVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Istio-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Istio-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Istio"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Ivanti-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Ivanti-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Ivanti"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_IvantiRSS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_IvantiRSS-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.IvantiRSS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_JFrog-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_JFrog-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.JFrog"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_JNJAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_JNJAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.JNJAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_JVN-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_JVN-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.JVN"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_JVNAdvisoryItem-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_JVNAdvisoryItem-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.JVNAdvisoryItem"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Jenkins-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Jenkins-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Jenkins"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_JetBrains-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_JetBrains-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.JetBrains"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_JohnsonControls-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_JohnsonControls-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.JohnsonControls"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Juniper-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Juniper-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Juniper"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_K8S-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_K8S-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.K8S"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_KEVCatalogVulnerability-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_KEVCatalogVulnerability-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.KEVCatalogVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_KRCertAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_KRCertAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.KRCertAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_KasperskyICSCERTAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_KasperskyICSCERTAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.KasperskyICSCERTAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_KoreLogic-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_KoreLogic-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.KoreLogic"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Kunbus-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Kunbus-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Kunbus"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_LG-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_LG-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.LG"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Lantronix-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Lantronix-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Lantronix"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Lenovo-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Lenovo-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Lenovo"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_LexmarkAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_LexmarkAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.LexmarkAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_LibreOffice-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_LibreOffice-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.LibreOffice"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Linux-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Linux-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Linux"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_LolAdvs-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_LolAdvs-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.LolAdvs"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MACert-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MACert-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MACert"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MFiles-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MFiles-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MFiles"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MaliciousPackage-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MaliciousPackage-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MaliciousPackage"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MaliciousVSCodeExts-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MaliciousVSCodeExts-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MaliciousVSCodeExts"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ManageEngineAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ManageEngineAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ManageEngineAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MbedTLS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MbedTLS-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MbedTLS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_McAfee-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_McAfee-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.McAfee"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Mediatek-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Mediatek-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Mediatek"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MedtronicAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MedtronicAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MedtronicAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Mendix-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Mendix-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Mendix"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MetaAdvisories-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MetaAdvisories-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MetaAdvisories"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MetaData-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MetaData-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MetaData"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MetasploitExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MetasploitExploit-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MetasploitExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MicrosoftCSAF-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MicrosoftCSAF-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MicrosoftCSAF"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MicrosoftCVRF-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MicrosoftCVRF-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MicrosoftCVRF"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MicrosoftDriverBlockList-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MicrosoftDriverBlockList-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MicrosoftDriverBlockList"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MicrosoftKb-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MicrosoftKb-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MicrosoftKb"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Mikrotik-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Mikrotik-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Mikrotik"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Mindray-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Mindray-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Mindray"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MispValue-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MispValue-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MispValue"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Mitel-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Mitel-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Mitel"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MitreCVEListV5-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MitreCVEListV5-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MitreCVEListV5"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MitsubishiElectricAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MitsubishiElectricAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MitsubishiElectricAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MongoDB-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MongoDB-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MongoDB"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MoxaAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MoxaAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MoxaAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MozillaAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MozillaAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.MozillaAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NCSC-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NCSC-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.NCSC"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NCSCCVE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NCSCCVE-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.NCSCCVE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NEC-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NEC-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.NEC"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NHS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NHS-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.NHS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NI-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NI-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.NI"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NTP-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NTP-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.NTP"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NVD20Source-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NVD20Source-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.NVD20Source"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NVDCPEDictionary-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NVDCPEDictionary-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.NVDCPEDictionary"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NZAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NZAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.NZAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Naver-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Naver-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Naver"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Nessus-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Nessus-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Nessus"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NetApp-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NetApp-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.NetApp"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Netatalk-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Netatalk-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Netatalk"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Netgate-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Netgate-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Netgate"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Netgear-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Netgear-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Netgear"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Netskope-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Netskope-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Netskope"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Nexpose-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Nexpose-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Nexpose"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NginxAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NginxAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.NginxAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NodeJS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NodeJS-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.NodeJS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NodeSecurity-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NodeSecurity-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.NodeSecurity"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Nokia-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Nokia-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Nokia"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NotePadPlusPlus-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NotePadPlusPlus-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.NotePadPlusPlus"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Nozomi-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Nozomi-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Nozomi"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Nuclei-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Nuclei-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Nuclei"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OSV-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OSV-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.OSV"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OTRS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OTRS-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.OTRS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OctopusDeploy-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OctopusDeploy-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.OctopusDeploy"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Okta-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Okta-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Okta"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Omron-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Omron-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Omron"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OneE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OneE-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.OneE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OpenBSD-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OpenBSD-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.OpenBSD"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OpenCVDB-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OpenCVDB-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.OpenCVDB"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OpenJDK-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OpenJDK-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.OpenJDK"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OpenSSH-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OpenSSH-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.OpenSSH"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OpenSSLSecAdv-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OpenSSLSecAdv-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.OpenSSLSecAdv"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OpenStack-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OpenStack-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.OpenStack"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Opengear-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Opengear-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Opengear"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OracleCPU-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OracleCPU-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.OracleCPU"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OracleCPUCSAF-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OracleCPUCSAF-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.OracleCPUCSAF"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OwnCloud-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OwnCloud-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.OwnCloud"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PHPMyAdmin-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PHPMyAdmin-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.PHPMyAdmin"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PKCert-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PKCert-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.PKCert"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PTC-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PTC-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.PTC"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PacketstormExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PacketstormExploit-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.PacketstormExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Palantir-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Palantir-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Palantir"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PaloAltoAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PaloAltoAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.PaloAltoAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Panasonic-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Panasonic-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Panasonic"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PaperCut-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PaperCut-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.PaperCut"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Pega-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Pega-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Pega"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PhilipsAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PhilipsAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.PhilipsAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PhoenixContactAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PhoenixContactAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.PhoenixContactAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PostgresSQL-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PostgresSQL-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.PostgresSQL"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PowerDNS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PowerDNS-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.PowerDNS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Progress-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Progress-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Progress"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Proofpoint-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Proofpoint-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Proofpoint"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PureStorage-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PureStorage-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.PureStorage"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PyPAAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PyPAAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.PyPAAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_QNAPAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_QNAPAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.QNAPAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_QQID-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_QQID-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.QQID"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_QSB-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_QSB-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.QSB"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Qualcomm-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Qualcomm-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Qualcomm"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Qualys-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Qualys-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Qualys"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_QualysQID-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_QualysQID-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.QualysQID"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_RansomwareExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_RansomwareExploit-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.RansomwareExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_RedLion-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_RedLion-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.RedLion"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_RedhatCVE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_RedhatCVE-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.RedhatCVE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Renesas-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Renesas-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Renesas"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Revive-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Revive-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Revive"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_RhelCVE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_RhelCVE-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.RhelCVE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Roche-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Roche-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Roche"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Rockwell-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Rockwell-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Rockwell"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_RockyErrata-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_RockyErrata-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.RockyErrata"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Rsync-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Rsync-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Rsync"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Ruckus-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Ruckus-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Ruckus"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_RustsecAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_RustsecAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.RustsecAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SAAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SAAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SAAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SAP-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SAP-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SAP"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SECConsult-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SECConsult-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SECConsult"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SSDAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SSDAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SSDAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Safran-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Safran-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Safran"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SaintExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SaintExploit-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SaintExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SalesForce-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SalesForce-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SalesForce"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Samba-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Samba-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Samba"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Sandisk-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Sandisk-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Sandisk"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SansDshield-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SansDshield-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SansDshield"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SchneiderElectricAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SchneiderElectricAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SchneiderElectricAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Schutzwerk-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Schutzwerk-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Schutzwerk"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SecurityBulletin-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SecurityBulletin-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SecurityBulletin"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SecurityLab-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SecurityLab-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SecurityLab"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SeebugExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SeebugExploit-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SeebugExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Sel-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Sel-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Sel"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SentinelOne-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SentinelOne-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SentinelOne"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ServiceNow-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ServiceNow-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ServiceNow"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SevenZip-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SevenZip-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SevenZip"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ShadowServerExploitedVulnerability-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ShadowServerExploitedVulnerability-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ShadowServerExploitedVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Shielder-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Shielder-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Shielder"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Sick-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Sick-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Sick"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SiemensAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SiemensAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SiemensAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SierraWireless-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SierraWireless-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SierraWireless"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SigmaRule-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SigmaRule-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SigmaRule"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SingCert-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SingCert-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SingCert"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Sitecore-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Sitecore-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Sitecore"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Slackware-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Slackware-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Slackware"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SolarWindsAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SolarWindsAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SolarWindsAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Solr-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Solr-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Solr"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Sonatype-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Sonatype-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Sonatype"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SonicWallAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SonicWallAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SonicWallAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SpacelabsHealthcareAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SpacelabsHealthcareAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SpacelabsHealthcareAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Splunk-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Splunk-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Splunk"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Spring-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Spring-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Spring"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Stormshield-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Stormshield-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Stormshield"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_StrykerAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_StrykerAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.StrykerAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Sudo-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Sudo-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Sudo"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SuseSecurity-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SuseSecurity-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SuseSecurity"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SwisslogHealthcareAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SwisslogHealthcareAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SwisslogHealthcareAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Symfony-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Symfony-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Symfony"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Synacktiv-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Synacktiv-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Synacktiv"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SyncroSoft-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SyncroSoft-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.SyncroSoft"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Synology-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Synology-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Synology"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Syss-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Syss-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Syss"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_TI-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_TI-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.TI"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_TPLink-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_TPLink-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.TPLink"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_TWCertAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_TWCertAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.TWCertAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Tailscale-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Tailscale-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Tailscale"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_TalosAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_TalosAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.TalosAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_TeamViewer-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_TeamViewer-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.TeamViewer"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_TenableResearchAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_TenableResearchAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.TenableResearchAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Tencent-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Tencent-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Tencent"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Thales-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Thales-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Thales"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_TheMissingLink-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_TheMissingLink-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.TheMissingLink"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ThermoFisher-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ThermoFisher-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ThermoFisher"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ThreatActorWithExternalObjects-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ThreatActorWithExternalObjects-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ThreatActorWithExternalObjects"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Tibco-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Tibco-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Tibco"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_TraneTechnology-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_TraneTechnology-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.TraneTechnology"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_TrendMicro-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_TrendMicro-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.TrendMicro"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Trustwave-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Trustwave-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Trustwave"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_USD-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_USD-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.USD"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_USOMAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_USOMAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.USOMAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Ubiquiti-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Ubiquiti-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Ubiquiti"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_UbuntuCVE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_UbuntuCVE-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.UbuntuCVE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Unify-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Unify-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Unify"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Unisoc-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Unisoc-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Unisoc"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Update-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Update-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Update"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VCCPEDictionary-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VCCPEDictionary-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.VCCPEDictionary"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VCVulnerableCPEs-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VCVulnerableCPEs-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.VCVulnerableCPEs"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VDEAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VDEAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.VDEAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VLC-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VLC-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.VLC"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VMWareAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VMWareAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.VMWareAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VYAIREAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VYAIREAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.VYAIREAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VanDyke-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VanDyke-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.VanDyke"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VapidLabsAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VapidLabsAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.VapidLabsAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Veeam-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Veeam-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Veeam"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Veritas-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Veritas-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Veritas"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Virtuozzo-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Virtuozzo-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Virtuozzo"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VoidSec-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VoidSec-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.VoidSec"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VulnCheck-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VulnCheck-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.VulnCheck"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VulnCheckCVEListV5-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VulnCheckCVEListV5-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.VulnCheckCVEListV5"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VulnCheckConfig-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VulnCheckConfig-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.VulnCheckConfig"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VulnCheckKEV-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VulnCheckKEV-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.VulnCheckKEV"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VulnerableDebianPackage-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VulnerableDebianPackage-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.VulnerableDebianPackage"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Vulnrichment-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Vulnrichment-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Vulnrichment"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_WRT-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_WRT-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.WRT"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_WatchGuard-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_WatchGuard-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.WatchGuard"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_WhatsApp-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_WhatsApp-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.WhatsApp"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Wibu-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Wibu-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Wibu"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Wireshark-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Wireshark-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Wireshark"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_WithSecure-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_WithSecure-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.WithSecure"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_WolfSSL-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_WolfSSL-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.WolfSSL"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Wolfi-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Wolfi-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Wolfi"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Wordfence-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Wordfence-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Wordfence"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Xen-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Xen-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Xen"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Xerox-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Xerox-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Xerox"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Xiaomi-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Xiaomi-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Xiaomi"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Xylem-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Xylem-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Xylem"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Yamaha-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Yamaha-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Yamaha"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_YokogawaAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_YokogawaAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.YokogawaAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Yubico-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Yubico-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Yubico"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Zebra-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Zebra-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Zebra"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ZeroDayAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ZeroDayAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ZeroDayAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ZeroScienceAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ZeroScienceAdvisory-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.ZeroScienceAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Zimbra-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Zimbra-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Zimbra"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Zoom-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Zoom-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Zoom"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Zscaler-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Zscaler-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Zscaler"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Zuso-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Zuso-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Zuso"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Zyxel-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Zyxel-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/advisory.Zyxel"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_CWE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_CWE-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/api.CWE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_CveItems-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_CveItems-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/api.CveItems"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_CveItemsExtended-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_CveItemsExtended-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/api.CveItemsExtended"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_EPSSData-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_EPSSData-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/api.EPSSData"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_ExploitChain-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_ExploitChain-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/api.ExploitChain"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_ExploitV3Result-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_ExploitV3Result-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/api.ExploitV3Result"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_ExploitsChangelog-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_ExploitsChangelog-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/api.ExploitsChangelog"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_InitialAccess-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_InitialAccess-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/api.InitialAccess"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_MitreAttackToCVE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_MitreAttackToCVE-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/api.MitreAttackToCVE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_NVD20CPEMatch-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_NVD20CPEMatch-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/api.NVD20CPEMatch"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_NVD20CVE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_NVD20CVE-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/api.NVD20CVE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_NVD20CVEExtended-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_NVD20CVEExtended-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/api.NVD20CVEExtended"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/api.OSSPackage"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_Update-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_Update-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/api.Update"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_VulnCheckCanary-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_VulnCheckCanary-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/api.VulnCheckCanary"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_VulnerabilityAlias-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_VulnerabilityAlias-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/api.VulnerabilityAlias"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_purls_PurlResponse-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_purls_PurlResponse-paginate_Pagination","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"items":{"$ref":"#/components/schemas/purls.PurlResponse"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_string-v3controllers_ResponseMetadata":{"description":"render.ResponseWithMetadata-array_string-v3controllers_ResponseMetadata","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/v3controllers.ResponseMetadata"},"data":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-v3controllers_BackupResponseData-v3controllers_BackupResponseMetadata":{"description":"render.ResponseWithMetadata-v3controllers_BackupResponseData-v3controllers_BackupResponseMetadata","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/v3controllers.BackupResponseMetadata"},"data":{"items":{"$ref":"#/components/schemas/params.IndexBackup"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-v3controllers_PurlResponseData-v3controllers_PurlResponseMetadata":{"description":"render.ResponseWithMetadata-v3controllers_PurlResponseData-v3controllers_PurlResponseMetadata","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/v3controllers.PurlResponseMetadata"},"data":{"$ref":"#/components/schemas/v3controllers.PurlResponseData"}},"type":"object"},"render.ResponseWithMetadata-v3controllers_PurlsResponseData-v3controllers_PurlsResponseMetadata":{"description":"render.ResponseWithMetadata-v3controllers_PurlsResponseData-v3controllers_PurlsResponseMetadata","properties":{"_benchmark":{"type":"number"},"_meta":{"$ref":"#/components/schemas/v3controllers.PurlsResponseMetadata"},"data":{"items":{"$ref":"#/components/schemas/purl.BatchVulnFinding"},"type":"array","uniqueItems":false}},"type":"object"},"search.ErrorResponse":{"description":"search.ErrorResponse","properties":{"error":{"type":"boolean"},"errors":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"search.V4AdvisoryMeta":{"description":"search.V4AdvisoryMeta","properties":{"cursor":{"type":"string"},"filtered":{"type":"integer"},"limit":{"type":"integer"},"next_cursor":{"type":"string"},"page":{"type":"integer"},"pages":{"type":"integer"},"total":{"type":"integer"}},"type":"object"},"search.V4AdvisoryReturnValue":{"description":"search.V4AdvisoryReturnValue","properties":{"_meta":{"$ref":"#/components/schemas/search.V4AdvisoryMeta"},"data":{"items":{"$ref":"#/components/schemas/advisory.MitreCVEListV5Ref"},"type":"array","uniqueItems":false}},"type":"object"},"search.V4FeedItem":{"description":"search.V4FeedItem","properties":{"description":{"type":"string"},"href":{"type":"string"},"name":{"type":"string"}},"type":"object"},"search.V4ListFeedReturnValue":{"description":"search.V4ListFeedReturnValue","properties":{"data":{"items":{"$ref":"#/components/schemas/search.V4FeedItem"},"type":"array","uniqueItems":false}},"type":"object"},"v3controllers.BackupResponseMetadata":{"description":"v3controllers.BackupResponseMetadata","properties":{"index":{"type":"string"},"timestamp":{"type":"string"}},"type":"object"},"v3controllers.PurlResponseData":{"description":"v3controllers.PurlResponseData","properties":{"cves":{"description":"list of associated CVE 's","items":{"type":"string"},"type":"array","uniqueItems":false},"vulnerabilities":{"description":"list of associated vulnerabilities","items":{"$ref":"#/components/schemas/api.OSSPackageVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"v3controllers.PurlResponseMetadata":{"description":"v3controllers.PurlResponseMetadata","properties":{"purl_struct":{"$ref":"#/components/schemas/purl.PackageURLJSON"},"timestamp":{"description":"time of the transaction","type":"string"},"total_documents":{"description":"number of results found","type":"integer"}},"type":"object"},"v3controllers.PurlsResponseMetadata":{"description":"v3controllers.PurlsResponseMetadata","properties":{"timestamp":{"description":"time of the transaction","type":"string"},"total_documents":{"description":"number of results found","type":"integer"}},"type":"object"},"v3controllers.ResponseMetadata":{"description":"v3controllers.ResponseMetadata","properties":{"cpe":{"type":"string"},"cpe_struct":{"$ref":"#/components/schemas/api.CPE"},"timestamp":{"type":"string"},"total_documents":{"type":"integer"}},"type":"object"}},"securitySchemes":{"Bearer":{"in":"header","name":"Authorization","type":"apiKey"}}},"externalDocs":{"description":"","url":""},"info":{"contact":{"email":"support@vulncheck.com","name":"VulnCheck API Support"},"description":"VulnCheck API (v3 + v4)","termsOfService":"https://vulncheck.com/terms","title":"VulnCheck API","version":"latest"},"openapi":"3.1.0","paths":{"/advisory":{"get":{"description":"Query the VulnCheck v4 advisory index","parameters":[{"description":"Filter by advisory feed name (e.g. 'vulncheck')","in":"query","name":"name","schema":{"type":"string"}},{"description":"Filter by CVE ID (e.g. 'CVE-2024-1234')","in":"query","name":"cve_id","schema":{"type":"string"}},{"description":"Filter by vendor name","in":"query","name":"vendor","schema":{"type":"string"}},{"description":"Filter by product name","in":"query","name":"product","schema":{"type":"string"}},{"description":"Filter by OS/platform","in":"query","name":"platform","schema":{"type":"string"}},{"description":"Filter by product version (semver-aware)","in":"query","name":"version","schema":{"type":"string"}},{"description":"Filter by CPE (e.g. 'cpe:2.3:a:vendor:product:*')","in":"query","name":"cpe","schema":{"type":"string"}},{"description":"Filter by package name","in":"query","name":"package_name","schema":{"type":"string"}},{"description":"Filter by package URL (PURL)","in":"query","name":"purl","schema":{"type":"string"}},{"description":"Filter by reference URL","in":"query","name":"reference_url","schema":{"type":"string"}},{"description":"Filter by reference tag (e.g. 'patch', 'advisory')","in":"query","name":"reference_tag","schema":{"type":"string"}},{"description":"Filter by description language (e.g. 'en')","in":"query","name":"description_lang","schema":{"type":"string"}},{"description":"Return advisories updated after this date (RFC3339 or date-math e.g. 'now-30d')","in":"query","name":"updatedAfter","schema":{"type":"string"}},{"description":"Return advisories updated before this date (RFC3339 or date-math)","in":"query","name":"updatedBefore","schema":{"type":"string"}},{"description":"Page number (default: 1)","in":"query","name":"page","schema":{"type":"integer"}},{"description":"Results per page, max 100 (default: 10)","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"Presence activates cursor mode from the first page (value is ignored; cannot be combined with page)","in":"query","name":"start_cursor","schema":{"type":"string"}},{"description":"Cursor from previous response _meta.next_cursor to fetch the next page","in":"query","name":"cursor","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.V4AdvisoryReturnValue"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.ErrorResponse"}}},"description":"Bad Request"},"401":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.ErrorResponse"}}},"description":"Unauthorized"},"402":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.ErrorResponse"}}},"description":"Payment Required"},"503":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.ErrorResponse"}}},"description":"Service Unavailable"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v4"}],"summary":"Query advisories","tags":["advisory"]}},"/advisory/list":{"get":{"description":"Return a list of available advisory feed names","responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.V4ListFeedReturnValue"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.ErrorResponse"}}},"description":"Bad Request"},"401":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.ErrorResponse"}}},"description":"Unauthorized"},"402":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.ErrorResponse"}}},"description":"Payment Required"},"503":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.ErrorResponse"}}},"description":"Service Unavailable"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v4"}],"summary":"List advisory feeds","tags":["advisory"]}},"/backup":{"get":{"description":"Returns the list of advisory feeds for which a backup can be requested","responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/backup.ListBackupsResponse"}}},"description":"OK"},"401":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Unauthorized"},"503":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Service Unavailable"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v4"}],"summary":"List available backups","tags":["backup"]}},"/backup/{index}":{"get":{"description":"Validates the feed, generates a fresh backup zip if the source parquet is newer, and returns a pre-signed download URL","parameters":[{"description":"Feed name (e.g. 'vulncheck')","in":"path","name":"index","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/backup.BackupResponse"}}},"description":"OK"},"401":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Unauthorized"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"503":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Service Unavailable"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v4"}],"summary":"Get backup by feed name","tags":["backup"]}},"/cpe":{"get":{"description":"Based on the specified CPE (Common Platform Enumeration) URI string, this endpoint will return a list of vulnerabilities that are related to the package. We support v2.2 and v2.3","parameters":[{"description":"CPE designation to lookup","in":"query","name":"cpe","required":true,"schema":{"type":"string"}},{"description":"Filter by vulnerability status (true/false). Defaults to false if not provided.","in":"query","name":"isVulnerable","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_string-v3controllers_ResponseMetadata"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return CVE 's associated with a specific NIST CPE","tags":["endpoints"]}},"/entitlements":{"get":{"description":"Retrieve entitlements for the current user","responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.Entitlements"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Retrieve user entitlements","tags":["endpoints"]}},"/index":{"get":{"description":"Return a list of available indexes with endpoint links that the user has access to","responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.Response-array_params_IndexList"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"oneOf":[{"type":"string"},{"type":"string"}]}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return a list of available indexes with endpoint links","tags":["endpoints"]}},"/index/7zip":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the 7zip index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** 7Zip Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/7zip?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/7zip?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SevenZip-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"7zip\"","tags":["indices"]}},"/index/a10":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the a10 index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** A10 Networks Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/a10?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/a10?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_A10-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"a10\"","tags":["indices"]}},"/index/abb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the abb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** ABB Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/abb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/abb?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ABBAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"abb\"","tags":["indices"]}},"/index/abbott":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the abbott index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Abbott Product Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/abbott?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/abbott?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Abbott-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"abbott\"","tags":["indices"]}},"/index/absolute":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the absolute index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Absolute Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/absolute?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/absolute?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Absolute-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"absolute\"","tags":["indices"]}},"/index/acronis":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the acronis index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Acronis Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/acronis?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/acronis?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Acronis-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"acronis\"","tags":["indices"]}},"/index/adobe":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the adobe index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Adobe Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/adobe?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/adobe?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AdobeAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"adobe\"","tags":["indices"]}},"/index/advantech":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the advantech index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Advantech Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/advantech?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/advantech?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Advantech-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"advantech\"","tags":["indices"]}},"/index/advisories":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the advisories index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/advisories?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/advisories?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AdvisoryRecord-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"advisories\"","tags":["indices"]}},"/index/aix":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the aix index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AIX Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/aix?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/aix?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AIX-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"aix\"","tags":["indices"]}},"/index/aleph-research":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the aleph-research index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Aleph Research Vulnerability Reports\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/aleph-research?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/aleph-research?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AlephResearch-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"aleph-research\"","tags":["indices"]}},"/index/alibaba-advs":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the alibaba-advs index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Alibaba Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/alibaba-advs?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/alibaba-advs?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Alibaba-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"alibaba-advs\"","tags":["indices"]}},"/index/alma":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the alma index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Alma Linux Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/alma?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/alma?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AlmaLinuxUpdate-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"alma\"","tags":["indices"]}},"/index/alpine":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the alpine index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Alpine Linux Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/alpine?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/alpine?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AlpineLinuxSecDB-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"alpine\"","tags":["indices"]}},"/index/alpine-purls":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the alpine-purls index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Alpine Purls\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/alpine-purls?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/alpine-purls?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_purls_PurlResponse-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"alpine-purls\"","tags":["indices"]}},"/index/amazon":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the amazon index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Amazon Linux Security Center\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/amazon?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/amazon?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Update-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"amazon\"","tags":["indices"]}},"/index/amazon-cve":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the amazon-cve index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Amazon CVEs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/amazon-cve?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/amazon-cve?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AmazonCVE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"amazon-cve\"","tags":["indices"]}},"/index/amd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the amd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AMD Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/amd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/amd?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AMD-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"amd\"","tags":["indices"]}},"/index/ami":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ami index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AMI Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ami?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ami?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AMI-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ami\"","tags":["indices"]}},"/index/anchore-nvd-override":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the anchore-nvd-override index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Anchore NVD Data Overrides\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/anchore-nvd-override?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/anchore-nvd-override?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AnchoreNVDOverride-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"anchore-nvd-override\"","tags":["indices"]}},"/index/android":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the android index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Android Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/android?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/android?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AndroidAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"android\"","tags":["indices"]}},"/index/apache-activemq":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-activemq index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache ActiveMQ Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-activemq?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-activemq?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheActiveMQ-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-activemq\"","tags":["indices"]}},"/index/apache-archiva":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-archiva index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Archiva Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-archiva?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-archiva?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheArchiva-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-archiva\"","tags":["indices"]}},"/index/apache-arrow":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-arrow index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Arrow Security Issues\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-arrow?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-arrow?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheArrow-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-arrow\"","tags":["indices"]}},"/index/apache-camel":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-camel index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Camel Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-camel?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-camel?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheCamel-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-camel\"","tags":["indices"]}},"/index/apache-commons":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-commons index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Commons Known Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-commons?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-commons?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheCommons-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-commons\"","tags":["indices"]}},"/index/apache-couchdb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-couchdb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache CouchDB Security Issues\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-couchdb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-couchdb?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheCouchDB-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-couchdb\"","tags":["indices"]}},"/index/apache-flink":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-flink index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Flink Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-flink?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-flink?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheFlink-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-flink\"","tags":["indices"]}},"/index/apache-guacamole":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-guacamole index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Guacamole Security Reports\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-guacamole?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-guacamole?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheGuacamole-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-guacamole\"","tags":["indices"]}},"/index/apache-hadoop":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-hadoop index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Hadoop CVEs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-hadoop?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-hadoop?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheHadoop-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-hadoop\"","tags":["indices"]}},"/index/apache-http":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-http index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache HTTP Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-http?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-http?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheHTTP-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-http\"","tags":["indices"]}},"/index/apache-jspwiki":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-jspwiki index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache JSPWiki CVEs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-jspwiki?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-jspwiki?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheJSPWiki-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-jspwiki\"","tags":["indices"]}},"/index/apache-kafka":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-kafka index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Kafka Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-kafka?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-kafka?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheKafka-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-kafka\"","tags":["indices"]}},"/index/apache-loggingservices":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-loggingservices index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Logging Services Known Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-loggingservices?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-loggingservices?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheLoggingServices-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-loggingservices\"","tags":["indices"]}},"/index/apache-nifi":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-nifi index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache NiFi Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-nifi?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-nifi?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheNiFi-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-nifi\"","tags":["indices"]}},"/index/apache-ofbiz":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-ofbiz index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache OFBiz Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-ofbiz?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-ofbiz?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheOFBiz-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-ofbiz\"","tags":["indices"]}},"/index/apache-openmeetings":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-openmeetings index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache OpenMeetings Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-openmeetings?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-openmeetings?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheOpenMeetings-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-openmeetings\"","tags":["indices"]}},"/index/apache-openoffice":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-openoffice index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache OpenOffice Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-openoffice?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-openoffice?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheOpenOffice-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-openoffice\"","tags":["indices"]}},"/index/apache-pulsar":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-pulsar index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Pulsar Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-pulsar?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-pulsar?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApachePulsar-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-pulsar\"","tags":["indices"]}},"/index/apache-shiro":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-shiro index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Shiro Vulnerability Reports\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-shiro?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-shiro?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheShiro-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-shiro\"","tags":["indices"]}},"/index/apache-spark":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-spark index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Spark Known Security Issues\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-spark?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-spark?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheSpark-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-spark\"","tags":["indices"]}},"/index/apache-struts":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-struts index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Struts Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-struts?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-struts?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheStruts-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-struts\"","tags":["indices"]}},"/index/apache-subversion":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-subversion index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Subversion Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-subversion?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-subversion?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheSubversion-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-subversion\"","tags":["indices"]}},"/index/apache-superset":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-superset index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Superset CVEs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-superset?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-superset?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheSuperset-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-superset\"","tags":["indices"]}},"/index/apache-tomcat":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-tomcat index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Tomcat Security Vunlnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-tomcat?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-tomcat?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheTomcat-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-tomcat\"","tags":["indices"]}},"/index/apache-zookeeper":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-zookeeper index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache ZooKeeper Vulnerability Reports\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-zookeeper?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-zookeeper?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheZooKeeper-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apache-zookeeper\"","tags":["indices"]}},"/index/appcheck":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the appcheck index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AppCheck Security Alerts\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/appcheck?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/appcheck?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AppCheck-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"appcheck\"","tags":["indices"]}},"/index/appgate":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the appgate index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Appgate SDP Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/appgate?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/appgate?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Appgate-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"appgate\"","tags":["indices"]}},"/index/apple":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apple index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apple Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apple?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apple?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AppleAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"apple\"","tags":["indices"]}},"/index/arch":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the arch index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Arch Linux\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/arch?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/arch?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ArchIssue-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"arch\"","tags":["indices"]}},"/index/arista":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the arista index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Arista Networks Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/arista?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/arista?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Arista-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"arista\"","tags":["indices"]}},"/index/aruba":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the aruba index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Aruba Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/aruba?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/aruba?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Aruba-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"aruba\"","tags":["indices"]}},"/index/asrg":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the asrg index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** ASRG Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/asrg?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/asrg?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ASRG-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"asrg\"","tags":["indices"]}},"/index/assetnote":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the assetnote index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AssetNote Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/assetnote?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/assetnote?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AssetNote-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"assetnote\"","tags":["indices"]}},"/index/asterisk":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the asterisk index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Asterisk Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/asterisk?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/asterisk?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Asterisk-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"asterisk\"","tags":["indices"]}},"/index/astra":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the astra index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Astra Linux Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/astra?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/astra?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Astra-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"astra\"","tags":["indices"]}},"/index/asus":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the asus index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** ASUSTek Computer Inc.\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/asus?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/asus?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Asus-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"asus\"","tags":["indices"]}},"/index/atlassian":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the atlassian index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Atlassian Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/atlassian?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/atlassian?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AtlassianAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"atlassian\"","tags":["indices"]}},"/index/atlassian-vulns":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the atlassian-vulns index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Atlassian Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/atlassian-vulns?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/atlassian-vulns?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AtlassianVuln-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"atlassian-vulns\"","tags":["indices"]}},"/index/atredis":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the atredis index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Atredis Partners Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/atredis?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/atredis?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Atredis-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"atredis\"","tags":["indices"]}},"/index/audiocodes":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the audiocodes index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AudioCodes Product Notices\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/audiocodes?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/audiocodes?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Audiocodes-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"audiocodes\"","tags":["indices"]}},"/index/auscert":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the auscert index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AusCERT Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/auscert?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/auscert?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AusCert-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"auscert\"","tags":["indices"]}},"/index/autodesk":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the autodesk index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Autodesk Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/autodesk?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/autodesk?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Autodesk-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"autodesk\"","tags":["indices"]}},"/index/avaya":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the avaya index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Avaya Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/avaya?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/avaya?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Avaya-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"avaya\"","tags":["indices"]}},"/index/aveva":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the aveva index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AVEVA Group Limited\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/aveva?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/aveva?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AVEVAAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"aveva\"","tags":["indices"]}},"/index/avidml-advs":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the avidml-advs index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AI Vulnerability Database\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/avidml-advs?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/avidml-advs?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AVIDMLAdvs-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"avidml-advs\"","tags":["indices"]}},"/index/avigilon":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the avigilon index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Avigilon Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/avigilon?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/avigilon?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Avigilon-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"avigilon\"","tags":["indices"]}},"/index/aws":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the aws index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AWS Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/aws?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/aws?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AWS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"aws\"","tags":["indices"]}},"/index/axis":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the axis index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Axis OS Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/axis?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/axis?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Axis-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"axis\"","tags":["indices"]}},"/index/azul":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the azul index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Azul Common Vulnerabilities and Exposures\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/azul?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/azul?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Azul-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"azul\"","tags":["indices"]}},"/index/bandr":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the bandr index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** B\u0026R Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/bandr?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/bandr?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Bandr-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"bandr\"","tags":["indices"]}},"/index/baxter":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the baxter index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Baxter Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/baxter?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/baxter?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BaxterAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"baxter\"","tags":["indices"]}},"/index/bbraun":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the bbraun index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** B. Braun Medical Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/bbraun?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/bbraun?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BBraunAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"bbraun\"","tags":["indices"]}},"/index/bd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the bd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Becton Dickinson Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/bd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/bd?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BectonDickinsonAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"bd\"","tags":["indices"]}},"/index/bdu":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the bdu index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** BDU Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/bdu?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/bdu?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BDUAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"bdu\"","tags":["indices"]}},"/index/beckhoff":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the beckhoff index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Beckhoff Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/beckhoff?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/beckhoff?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BeckhoffAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"beckhoff\"","tags":["indices"]}},"/index/beckman-coulter":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the beckman-coulter index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Beckman Coulter Product Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/beckman-coulter?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/beckman-coulter?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BeckmanCoulter-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"beckman-coulter\"","tags":["indices"]}},"/index/belden":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the belden index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Belden Security Bulletins Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/belden?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/belden?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BeldenAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"belden\"","tags":["indices"]}},"/index/beyond-trust":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the beyond-trust index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Beyond Trust Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/beyond-trust?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/beyond-trust?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BeyondTrust-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"beyond-trust\"","tags":["indices"]}},"/index/binarly":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the binarly index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Binarly Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/binarly?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/binarly?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Binarly-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"binarly\"","tags":["indices"]}},"/index/bitdefender":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the bitdefender index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Bitdefender Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/bitdefender?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/bitdefender?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BitDefender-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"bitdefender\"","tags":["indices"]}},"/index/blackberry":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the blackberry index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** BlackBerry Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/blackberry?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/blackberry?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BlackBerry-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"blackberry\"","tags":["indices"]}},"/index/bls":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the bls index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Black Lantern Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/bls?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/bls?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BLS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"bls\"","tags":["indices"]}},"/index/bosch":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the bosch index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Bosch Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/bosch?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/bosch?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BoschAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"bosch\"","tags":["indices"]}},"/index/boston-scientific":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the boston-scientific index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Boston Scientific Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/boston-scientific?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/boston-scientific?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BostonScientificAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"boston-scientific\"","tags":["indices"]}},"/index/botnets":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the botnets index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Botnets\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/botnets?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/botnets?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Botnet-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"botnets\"","tags":["indices"]}},"/index/ca-cyber-centre":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ca-cyber-centre index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Canadian Centre for Cyber Security Alerts and Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ca-cyber-centre?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ca-cyber-centre?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CACyberCentreAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ca-cyber-centre\"","tags":["indices"]}},"/index/canvas":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the canvas index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CANVAS Exploit Packs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/canvas?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/canvas?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CanvasExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"canvas\"","tags":["indices"]}},"/index/carestream":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the carestream index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Carestream Product Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/carestream?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/carestream?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CarestreamAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"carestream\"","tags":["indices"]}},"/index/cargo":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cargo index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cargo (Rust) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cargo?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cargo?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cargo\"","tags":["indices"]}},"/index/carrier":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the carrier index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Carrier Product Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/carrier?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/carrier?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Carrier-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"carrier\"","tags":["indices"]}},"/index/cbl-mariner":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cbl-mariner index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CBL-Mariner Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cbl-mariner?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cbl-mariner?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CBLMariner-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cbl-mariner\"","tags":["indices"]}},"/index/centos":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the centos index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CentOS Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/centos?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/centos?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CESA-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"centos\"","tags":["indices"]}},"/index/cert-be":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cert-be index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cert BE Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cert-be?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cert-be?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CertBE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cert-be\"","tags":["indices"]}},"/index/cert-in":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cert-in index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CERT IN Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cert-in?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cert-in?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CertIN-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cert-in\"","tags":["indices"]}},"/index/cert-ir-security-alerts":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cert-ir-security-alerts index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cert IR Security Warnings\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cert-ir-security-alerts?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cert-ir-security-alerts?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CertIRSecurityAlert-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cert-ir-security-alerts\"","tags":["indices"]}},"/index/cert-se":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cert-se index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cert SE Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cert-se?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cert-se?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CertSE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cert-se\"","tags":["indices"]}},"/index/cert-ua":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cert-ua index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cert UA Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cert-ua?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cert-ua?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CertUA-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cert-ua\"","tags":["indices"]}},"/index/certeu":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the certeu index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CERT-EU The Computer Emergency Response Team for the EU Institutions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/certeu?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/certeu?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CERTEUAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"certeu\"","tags":["indices"]}},"/index/certfr":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the certfr index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cert FR Security Alerts\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/certfr?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/certfr?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CertFRAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"certfr\"","tags":["indices"]}},"/index/chainguard":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the chainguard index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** ChainGuard Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/chainguard?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/chainguard?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ChainGuard-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"chainguard\"","tags":["indices"]}},"/index/checkpoint":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the checkpoint index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CheckPoint Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/checkpoint?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/checkpoint?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CheckPoint-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"checkpoint\"","tags":["indices"]}},"/index/chrome":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the chrome index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Google Chrome Release Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/chrome?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/chrome?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Chrome-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"chrome\"","tags":["indices"]}},"/index/ciena":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ciena index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Ciena\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ciena?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ciena?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Ciena-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ciena\"","tags":["indices"]}},"/index/cisa-alerts":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cisa-alerts index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CISA Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-alerts?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cisa-alerts?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CISAAlert-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cisa-alerts\"","tags":["indices"]}},"/index/cisa-csaf":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cisa-csaf index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CISA Security Advisories - CSAF\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-csaf?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cisa-csaf?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CisaCsafAdv-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cisa-csaf\"","tags":["indices"]}},"/index/cisa-kev":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cisa-kev index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CISA KEV (Known Exploited Vulnerabilities)\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-kev?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cisa-kev?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_KEVCatalogVulnerability-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cisa-kev\"","tags":["indices"]}},"/index/cisco":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cisco index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cisco Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cisco?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cisco?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CiscoAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cisco\"","tags":["indices"]}},"/index/cisco-csaf":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cisco-csaf index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cisco CSAF\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-csaf?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cisco-csaf?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CiscoCSAF-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cisco-csaf\"","tags":["indices"]}},"/index/cisco-known-good-values":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cisco-known-good-values index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cisco Known Good Values\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-known-good-values?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cisco-known-good-values?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CiscoKnownGoodValue-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cisco-known-good-values\"","tags":["indices"]}},"/index/cisco-talos":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cisco-talos index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cisco Talos Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-talos?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cisco-talos?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_TalosAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cisco-talos\"","tags":["indices"]}},"/index/citrix":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the citrix index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Citrix Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/citrix?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/citrix?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CitrixAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"citrix\"","tags":["indices"]}},"/index/claroty":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the claroty index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Team 82: The Claroty Research Team\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/claroty?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/claroty?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ClarotyVulnerability-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"claroty\"","tags":["indices"]}},"/index/cloudbees":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cloudbees index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CloudBees Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cloudbees?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cloudbees?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CloudBees-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cloudbees\"","tags":["indices"]}},"/index/cloudvulndb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cloudvulndb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CloudVulnDB\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cloudvulndb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cloudvulndb?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CloudVulnDBAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cloudvulndb\"","tags":["indices"]}},"/index/cnnvd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cnnvd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** The Chinese National Vulnerability Database\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cnnvd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cnnvd?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CNNVDEntryJSON-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cnnvd\"","tags":["indices"]}},"/index/cnvd-bulletins":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cnvd-bulletins index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CNVD Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cnvd-bulletins?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cnvd-bulletins?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CNVDBulletin-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cnvd-bulletins\"","tags":["indices"]}},"/index/cnvd-flaws":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cnvd-flaws index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CNVD Flaws\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cnvd-flaws?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cnvd-flaws?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CNVDFlaw-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cnvd-flaws\"","tags":["indices"]}},"/index/cocoapods":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cocoapods index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CocoaPods packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cocoapods?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cocoapods?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cocoapods\"","tags":["indices"]}},"/index/codesys":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the codesys index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Codesys Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/codesys?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/codesys?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CodesysAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"codesys\"","tags":["indices"]}},"/index/commvault":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the commvault index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Commvault Cloud Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/commvault?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/commvault?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CommVault-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"commvault\"","tags":["indices"]}},"/index/compass-security":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the compass-security index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Compass Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/compass-security?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/compass-security?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CompassSecurity-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"compass-security\"","tags":["indices"]}},"/index/composer":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the composer index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** PHP Composer packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/composer?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/composer?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"composer\"","tags":["indices"]}},"/index/conan":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the conan index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** C/C++ packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/conan?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/conan?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"conan\"","tags":["indices"]}},"/index/coreimpact":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the coreimpact index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Core Impact\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/coreimpact?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/coreimpact?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CoreImpactExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"coreimpact\"","tags":["indices"]}},"/index/cpe-vulnerable":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cpe-vulnerable index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Unrolled VulnCheck CPEs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cpe-vulnerable?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cpe-vulnerable?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VCVulnerableCPEs-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cpe-vulnerable\"","tags":["indices"]}},"/index/crestron":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the crestron index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Crestron Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/crestron?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/crestron?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Crestron-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"crestron\"","tags":["indices"]}},"/index/crowdsec":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the crowdsec index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CrowdSec Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/crowdsec?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/crowdsec?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CrowdSec-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"crowdsec\"","tags":["indices"]}},"/index/curl":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the curl index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Curl CVEs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/curl?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/curl?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Curl-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"curl\"","tags":["indices"]}},"/index/cwe":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cwe index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Common Weakness Enumeration Database\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cwe?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cwe?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_CWE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"cwe\"","tags":["indices"]}},"/index/dahua":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the dahua index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Dahua Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/dahua?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/dahua?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Dahua-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"dahua\"","tags":["indices"]}},"/index/danfoss":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the danfoss index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Danfoss Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/danfoss?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/danfoss?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Danfoss-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"danfoss\"","tags":["indices"]}},"/index/dassault":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the dassault index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Dassault Systèmes Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/dassault?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/dassault?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Dassault-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"dassault\"","tags":["indices"]}},"/index/debian":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the debian index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Debian Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/debian?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/debian?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VulnerableDebianPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"debian\"","tags":["indices"]}},"/index/debian-dsa":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the debian-dsa index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Debian Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/debian-dsa?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/debian-dsa?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_DebianSecurityAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"debian-dsa\"","tags":["indices"]}},"/index/debian-packages":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the debian-packages index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Debian Packages\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/debian-packages?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/debian-packages?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_DistroPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"debian-packages\"","tags":["indices"]}},"/index/debian-purls":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the debian-purls index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Debian PURLs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/debian-purls?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/debian-purls?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_purls_PurlResponse-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"debian-purls\"","tags":["indices"]}},"/index/dell":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the dell index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Dell Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/dell?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/dell?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Dell-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"dell\"","tags":["indices"]}},"/index/delta":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the delta index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Delta Controls Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/delta?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/delta?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_DeltaAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"delta\"","tags":["indices"]}},"/index/dfn-cert":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the dfn-cert index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** DFN-CERT Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/dfn-cert?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/dfn-cert?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_DFNCert-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"dfn-cert\"","tags":["indices"]}},"/index/django":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the django index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Django Security Issues\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/django?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/django?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Django-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"django\"","tags":["indices"]}},"/index/dlink":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the dlink index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** DLink Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/dlink?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/dlink?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_DLink-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"dlink\"","tags":["indices"]}},"/index/dnn":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the dnn index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** DNN Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/dnn?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/dnn?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_DNN-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"dnn\"","tags":["indices"]}},"/index/dotcms":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the dotcms index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** DotCMS Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/dotcms?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/dotcms?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_DotCMS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"dotcms\"","tags":["indices"]}},"/index/dragos":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the dragos index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Dragos Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/dragos?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/dragos?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_DragosAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"dragos\"","tags":["indices"]}},"/index/draytek":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the draytek index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** DrayTek Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/draytek?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/draytek?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Draytek-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"draytek\"","tags":["indices"]}},"/index/drupal":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the drupal index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Drupal Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/drupal?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/drupal?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Drupal-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"drupal\"","tags":["indices"]}},"/index/eaton":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the eaton index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Eaton Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/eaton?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/eaton?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_EatonAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"eaton\"","tags":["indices"]}},"/index/elastic":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the elastic index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Elastic Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/elastic?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/elastic?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Elastic-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"elastic\"","tags":["indices"]}},"/index/elspec":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the elspec index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Elspec Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/elspec?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/elspec?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Elspec-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"elspec\"","tags":["indices"]}},"/index/emerging-threats-snort":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the emerging-threats-snort index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Emerging Threats Snort\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/emerging-threats-snort?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/emerging-threats-snort?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_EmergingThreatsSnort-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"emerging-threats-snort\"","tags":["indices"]}},"/index/emerson":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the emerson index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Emerson Cyber Security Notifications\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/emerson?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/emerson?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_EmersonAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"emerson\"","tags":["indices"]}},"/index/endoflife":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the endoflife index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** End Of Life\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/endoflife?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/endoflife?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_EndOfLife-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"endoflife\"","tags":["indices"]}},"/index/endress":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the endress index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Endress \u0026 Hauser Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/endress?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/endress?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Endress-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"endress\"","tags":["indices"]}},"/index/eol":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the eol index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck EOL Coverage\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/eol?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/eol?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_EOLReleaseData-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"eol\"","tags":["indices"]}},"/index/eol-alibaba":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the eol-alibaba index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Alibaba EOL\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/eol-alibaba?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/eol-alibaba?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_EOLAlibaba-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"eol-alibaba\"","tags":["indices"]}},"/index/eol-microsoft":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the eol-microsoft index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Microsoft EOL\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/eol-microsoft?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/eol-microsoft?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_EOLMicrosoft-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"eol-microsoft\"","tags":["indices"]}},"/index/epss":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the epss index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** EPSS Data\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/epss?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/epss?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_EPSSData-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"epss\"","tags":["indices"]}},"/index/euvd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the euvd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** European Union Vulnerability Database\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/euvd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/euvd?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_EUVD-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"euvd\"","tags":["indices"]}},"/index/exodus-intel":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the exodus-intel index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Exodus Intelligence Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/exodus-intel?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/exodus-intel?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ExodusIntel-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"exodus-intel\"","tags":["indices"]}},"/index/exploit-chains":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the exploit-chains index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Exploit Chains\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/exploit-chains?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/exploit-chains?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_ExploitChain-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"exploit-chains\"","tags":["indices"]}},"/index/exploitdb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the exploitdb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** The Exploit Database\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/exploitdb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/exploitdb?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ExploitDBExploitv2-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"exploitdb\"","tags":["indices"]}},"/index/exploits":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the exploits index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Exploit Intelligence Data\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/exploits?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/exploits?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_ExploitV3Result-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"exploits\"","tags":["indices"]}},"/index/exploits-changelog":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the exploits-changelog index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Changelog for VC Exploits Data\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/exploits-changelog?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/exploits-changelog?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_ExploitsChangelog-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"exploits-changelog\"","tags":["indices"]}},"/index/f-secure":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the f-secure index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** F-Secure Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/f-secure?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/f-secure?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_FSecure-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"f-secure\"","tags":["indices"]}},"/index/f5":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the f5 index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** F5 Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/f5?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/f5?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_F5-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"f5\"","tags":["indices"]}},"/index/fanuc":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the fanuc index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Fanuc Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/fanuc?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/fanuc?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Fanuc-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"fanuc\"","tags":["indices"]}},"/index/fastly":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the fastly index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Fastly Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/fastly?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/fastly?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Fastly-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"fastly\"","tags":["indices"]}},"/index/fedora":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the fedora index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Fedora Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/fedora?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/fedora?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Update-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"fedora\"","tags":["indices"]}},"/index/festo":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the festo index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Festo Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/festo?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/festo?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Festo-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"festo\"","tags":["indices"]}},"/index/filecloud":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the filecloud index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** FileCloud Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/filecloud?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/filecloud?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_FileCloud-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"filecloud\"","tags":["indices"]}},"/index/filezilla":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the filezilla index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** FileZilla Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/filezilla?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/filezilla?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_FileZilla-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"filezilla\"","tags":["indices"]}},"/index/flatt-security":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the flatt-security index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Flatt Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/flatt-security?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/flatt-security?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_FlattSecurity-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"flatt-security\"","tags":["indices"]}},"/index/forgerock":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the forgerock index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** ForgeRock Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/forgerock?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/forgerock?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ForgeRock-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"forgerock\"","tags":["indices"]}},"/index/fortinet":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the fortinet index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** FortiGuard Fortinet\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/fortinet?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/fortinet?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_FortinetAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"fortinet\"","tags":["indices"]}},"/index/fortinet-ips":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the fortinet-ips index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Fortinet Labs Threat Encyclopedia\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/fortinet-ips?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/fortinet-ips?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_FortinetIPS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"fortinet-ips\"","tags":["indices"]}},"/index/foxit":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the foxit index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Foxit Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/foxit?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/foxit?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Foxit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"foxit\"","tags":["indices"]}},"/index/freebsd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the freebsd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** FreeBSD Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/freebsd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/freebsd?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Advisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"freebsd\"","tags":["indices"]}},"/index/fresenius":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the fresenius index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Fresenius Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/fresenius?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/fresenius?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Fresenius-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"fresenius\"","tags":["indices"]}},"/index/gallagher":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gallagher index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Gallagher Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gallagher?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gallagher?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Gallagher-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"gallagher\"","tags":["indices"]}},"/index/gcp":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gcp index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GCP Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gcp?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gcp?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GCP-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"gcp\"","tags":["indices"]}},"/index/ge-gas":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ge-gas index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GE Gas Product Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ge-gas?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ge-gas?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GEGas-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ge-gas\"","tags":["indices"]}},"/index/ge-healthcare":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ge-healthcare index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GE Healthcare Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ge-healthcare?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ge-healthcare?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GEHealthcareAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ge-healthcare\"","tags":["indices"]}},"/index/gem":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gem index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Ruby (gem) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gem?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gem?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"gem\"","tags":["indices"]}},"/index/gen":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gen index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Gen Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gen?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gen?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Gen-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"gen\"","tags":["indices"]}},"/index/genetec":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the genetec index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Genetec Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/genetec?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/genetec?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Genetec-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"genetec\"","tags":["indices"]}},"/index/ghsa":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ghsa index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GHSA\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ghsa?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ghsa?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GHSA-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ghsa\"","tags":["indices"]}},"/index/gigabyte":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gigabyte index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GIGABYTE Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gigabyte?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gigabyte?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Gigabyte-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"gigabyte\"","tags":["indices"]}},"/index/gitee-exploits":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gitee-exploits index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Gitee Exploits\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gitee-exploits?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gitee-exploits?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GiteeExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"gitee-exploits\"","tags":["indices"]}},"/index/github-exploits":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the github-exploits index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GitHub Exploits\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/github-exploits?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/github-exploits?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GitHubExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"github-exploits\"","tags":["indices"]}},"/index/github-security-advisories":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the github-security-advisories index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Github Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/github-security-advisories?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/github-security-advisories?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GHAdvisoryJSONLean-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"github-security-advisories\"","tags":["indices"]}},"/index/gitlab-advisories-community":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gitlab-advisories-community index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GitLab Advisory Database\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gitlab-advisories-community?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gitlab-advisories-community?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GitlabAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"gitlab-advisories-community\"","tags":["indices"]}},"/index/gitlab-exploits":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gitlab-exploits index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GitLab Exploits\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gitlab-exploits?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gitlab-exploits?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GitLabExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"gitlab-exploits\"","tags":["indices"]}},"/index/glibc":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the glibc index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Glibc Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/glibc?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/glibc?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Glibc-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"glibc\"","tags":["indices"]}},"/index/gmo-cybersecurity":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gmo-cybersecurity index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GMO Cybersecurity Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gmo-cybersecurity?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gmo-cybersecurity?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GMOCyberSecurity-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"gmo-cybersecurity\"","tags":["indices"]}},"/index/gnutls":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gnutls index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GnuTLS Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gnutls?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gnutls?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GnuTLS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"gnutls\"","tags":["indices"]}},"/index/go-vulndb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the go-vulndb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Go Vulnerability Database\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/go-vulndb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/go-vulndb?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GoVulnJSON-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"go-vulndb\"","tags":["indices"]}},"/index/golang":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the golang index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Golang packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/golang?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/golang?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"golang\"","tags":["indices"]}},"/index/google-0day-itw":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the google-0day-itw index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Project Zero In the Wild Exploits\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/google-0day-itw?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/google-0day-itw?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ITWExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"google-0day-itw\"","tags":["indices"]}},"/index/google-container-optimized-os":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the google-container-optimized-os index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Container OS Release Notes\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/google-container-optimized-os?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/google-container-optimized-os?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ContainerOS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"google-container-optimized-os\"","tags":["indices"]}},"/index/grafana":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the grafana index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Grafana Labs Security Fixes\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/grafana?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/grafana?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Grafana-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"grafana\"","tags":["indices"]}},"/index/greynoise-metadata":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the greynoise-metadata index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GreyNoise Metadata\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/greynoise-metadata?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/greynoise-metadata?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GreyNoiseDetection-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"greynoise-metadata\"","tags":["indices"]}},"/index/hackage":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hackage index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Hackage (Haskell) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hackage?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hackage?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"hackage\"","tags":["indices"]}},"/index/hacktivity":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hacktivity index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Hackerone Hacktivity\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hacktivity?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hacktivity?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Hacktivity-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"hacktivity\"","tags":["indices"]}},"/index/harmonyos":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the harmonyos index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** HarmonyOS Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/harmonyos?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/harmonyos?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HarmonyOS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"harmonyos\"","tags":["indices"]}},"/index/hashicorp":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hashicorp index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** HashiCorp Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hashicorp?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hashicorp?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HashiCorp-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"hashicorp\"","tags":["indices"]}},"/index/haskell-sadb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the haskell-sadb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Haskell Security Advisory DB\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/haskell-sadb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/haskell-sadb?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HaskellSADBAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"haskell-sadb\"","tags":["indices"]}},"/index/hcl":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hcl index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** HCLSoftware Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hcl?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hcl?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HCL-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"hcl\"","tags":["indices"]}},"/index/hex":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hex index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Hex (Erlang) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hex?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hex?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"hex\"","tags":["indices"]}},"/index/hikvision":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hikvision index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Hikvision Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hikvision?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hikvision?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HIKVision-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"hikvision\"","tags":["indices"]}},"/index/hillrom":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hillrom index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Hillrom Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hillrom?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hillrom?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HillromAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"hillrom\"","tags":["indices"]}},"/index/hitachi":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hitachi index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Hitachi Software Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hitachi?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hitachi?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Hitachi-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"hitachi\"","tags":["indices"]}},"/index/hitachi-energy":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hitachi-energy index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Hitachi Energy Cybersecurity Advisories and Notifications\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hitachi-energy?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hitachi-energy?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HitachiEnergy-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"hitachi-energy\"","tags":["indices"]}},"/index/hkcert":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hkcert index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Hong Kong CERT Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hkcert?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hkcert?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HKCert-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"hkcert\"","tags":["indices"]}},"/index/hms":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hms index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** HMS (Hardware Meets Software) Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hms?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hms?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HMS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"hms\"","tags":["indices"]}},"/index/honeywell":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the honeywell index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Honeywell Cyber Security Notifications\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/honeywell?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/honeywell?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Honeywell-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"honeywell\"","tags":["indices"]}},"/index/hp":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hp index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** HP Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hp?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hp?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HP-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"hp\"","tags":["indices"]}},"/index/hpe":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hpe index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** HPE Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hpe?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hpe?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HPE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"hpe\"","tags":["indices"]}},"/index/huawei-euleros":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the huawei-euleros index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OpenEuler Operating System Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-euleros?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/huawei-euleros?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HuaweiEulerOS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"huawei-euleros\"","tags":["indices"]}},"/index/huawei-ips":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the huawei-ips index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Huawei IPS Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-ips?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/huawei-ips?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HuaweiIPS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"huawei-ips\"","tags":["indices"]}},"/index/huawei-psirt":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the huawei-psirt index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Huawei Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-psirt?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/huawei-psirt?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Huawei-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"huawei-psirt\"","tags":["indices"]}},"/index/iava":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the iava index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Information Assurance Vulnerability Alerts (IAVA)\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/iava?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/iava?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IAVA-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"iava\"","tags":["indices"]}},"/index/ibm":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ibm index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** IBM Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ibm?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ibm?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IBM-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ibm\"","tags":["indices"]}},"/index/idemia":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the idemia index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Idemia Product Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/idemia?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/idemia?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Idemia-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"idemia\"","tags":["indices"]}},"/index/igel":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the igel index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** IGEL Security Notices\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/igel?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/igel?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Igel-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"igel\"","tags":["indices"]}},"/index/il-alerts":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the il-alerts index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Gov.il Security Alerts\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/il-alerts?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/il-alerts?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IsraeliAlert-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"il-alerts\"","tags":["indices"]}},"/index/il-vulnerabilities":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the il-vulnerabilities index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Gov.il CVE Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/il-vulnerabilities?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/il-vulnerabilities?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IsraeliVulnerability-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"il-vulnerabilities\"","tags":["indices"]}},"/index/incibe":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the incibe index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Incibe CERT Early Warnings\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/incibe?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/incibe?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IncibeAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"incibe\"","tags":["indices"]}},"/index/initial-access":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the initial-access index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Initial Access Intelligence\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/initial-access?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/initial-access?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_InitialAccess-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"initial-access\"","tags":["indices"]}},"/index/initial-access-git":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the initial-access-git index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Initial Access Intelligence Git Backup for Subscribers\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/initial-access-git?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/initial-access-git?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_InitialAccess-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"initial-access-git\"","tags":["indices"]}},"/index/intel":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the intel index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Intel® Product Security Center Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/intel?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/intel?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Intel-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"intel\"","tags":["indices"]}},"/index/ipintel-10d":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ipintel-10d index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** 10-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-10d?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ipintel-10d?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify an IPv4 or IPv6 CIDR","in":"query","name":"cidr","schema":{"type":"string"}},{"description":"Autonomous system number","in":"query","name":"asn","schema":{"type":"string"}},{"description":"Country name ISO-3166?? format","in":"query","name":"country","schema":{"type":"string"}},{"description":"Country code in ISO-3166?? format","in":"query","name":"country_code","schema":{"type":"string"}},{"description":"Record type","in":"query","name":"id","schema":{"type":"string"}},{"description":"Kind of IpIntel Finding","in":"query","name":"kind","schema":{"type":"string"}},{"description":"Match a string in the list of hostnames","in":"query","name":"hostname","schema":{"type":"string"}},{"description":"Search for a string in the field describing the finding","in":"query","name":"matches","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IpIntelRecord-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ipintel-10d\"","tags":["indices"]}},"/index/ipintel-30d":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ipintel-30d index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** 30-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-30d?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ipintel-30d?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify an IPv4 or IPv6 CIDR","in":"query","name":"cidr","schema":{"type":"string"}},{"description":"Autonomous system number","in":"query","name":"asn","schema":{"type":"string"}},{"description":"Country name ISO-3166?? format","in":"query","name":"country","schema":{"type":"string"}},{"description":"Country code in ISO-3166?? format","in":"query","name":"country_code","schema":{"type":"string"}},{"description":"Record type","in":"query","name":"id","schema":{"type":"string"}},{"description":"Kind of IpIntel Finding","in":"query","name":"kind","schema":{"type":"string"}},{"description":"Match a string in the list of hostnames","in":"query","name":"hostname","schema":{"type":"string"}},{"description":"Search for a string in the field describing the finding","in":"query","name":"matches","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IpIntelRecord-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ipintel-30d\"","tags":["indices"]}},"/index/ipintel-3d":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ipintel-3d index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** 3-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-3d?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ipintel-3d?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify an IPv4 or IPv6 CIDR","in":"query","name":"cidr","schema":{"type":"string"}},{"description":"Autonomous system number","in":"query","name":"asn","schema":{"type":"string"}},{"description":"Country name ISO-3166?? format","in":"query","name":"country","schema":{"type":"string"}},{"description":"Country code in ISO-3166?? format","in":"query","name":"country_code","schema":{"type":"string"}},{"description":"Record type","in":"query","name":"id","schema":{"type":"string"}},{"description":"Kind of IpIntel Finding","in":"query","name":"kind","schema":{"type":"string"}},{"description":"Match a string in the list of hostnames","in":"query","name":"hostname","schema":{"type":"string"}},{"description":"Search for a string in the field describing the finding","in":"query","name":"matches","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IpIntelRecord-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ipintel-3d\"","tags":["indices"]}},"/index/ipintel-90d":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ipintel-90d index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** 90-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-90d?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ipintel-90d?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify an IPv4 or IPv6 CIDR","in":"query","name":"cidr","schema":{"type":"string"}},{"description":"Autonomous system number","in":"query","name":"asn","schema":{"type":"string"}},{"description":"Country name ISO-3166?? format","in":"query","name":"country","schema":{"type":"string"}},{"description":"Country code in ISO-3166?? format","in":"query","name":"country_code","schema":{"type":"string"}},{"description":"Record type","in":"query","name":"id","schema":{"type":"string"}},{"description":"Kind of IpIntel Finding","in":"query","name":"kind","schema":{"type":"string"}},{"description":"Match a string in the list of hostnames","in":"query","name":"hostname","schema":{"type":"string"}},{"description":"Search for a string in the field describing the finding","in":"query","name":"matches","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IpIntelRecord-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ipintel-90d\"","tags":["indices"]}},"/index/istio":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the istio index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Istio Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/istio?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/istio?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Istio-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"istio\"","tags":["indices"]}},"/index/ivanti":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ivanti index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Ivanti Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ivanti?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ivanti?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Ivanti-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ivanti\"","tags":["indices"]}},"/index/ivanti-rss":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ivanti-rss index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Ivanti Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ivanti-rss?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ivanti-rss?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IvantiRSS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ivanti-rss\"","tags":["indices"]}},"/index/jenkins":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the jenkins index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Jenkins Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/jenkins?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/jenkins?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Jenkins-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"jenkins\"","tags":["indices"]}},"/index/jetbrains":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the jetbrains index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** JetBrains Security Issues\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/jetbrains?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/jetbrains?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_JetBrains-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"jetbrains\"","tags":["indices"]}},"/index/jfrog":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the jfrog index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** JFrog Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/jfrog?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/jfrog?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_JFrog-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"jfrog\"","tags":["indices"]}},"/index/jnj":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the jnj index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Johnson \u0026 Johnson Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/jnj?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/jnj?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_JNJAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"jnj\"","tags":["indices"]}},"/index/johnson-controls":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the johnson-controls index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Security Advisories - Johnson Controls\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/johnson-controls?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/johnson-controls?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_JohnsonControls-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"johnson-controls\"","tags":["indices"]}},"/index/juniper":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the juniper index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Juniper Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/juniper?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/juniper?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Juniper-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"juniper\"","tags":["indices"]}},"/index/jvn":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the jvn index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Japan Vulnerability Notes\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/jvn?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/jvn?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_JVN-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"jvn\"","tags":["indices"]}},"/index/jvndb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the jvndb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Japan Vulnerability Notes\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/jvndb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/jvndb?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_JVNAdvisoryItem-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"jvndb\"","tags":["indices"]}},"/index/kaspersky-ics-cert":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the kaspersky-ics-cert index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Kaspersky ICS CERT\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/kaspersky-ics-cert?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/kaspersky-ics-cert?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_KasperskyICSCERTAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"kaspersky-ics-cert\"","tags":["indices"]}},"/index/korelogic":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the korelogic index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** KoreLogic Vulnerability Research and Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/korelogic?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/korelogic?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_KoreLogic-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"korelogic\"","tags":["indices"]}},"/index/krcert-security-notices":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the krcert-security-notices index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** KR-CERT Notices\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/krcert-security-notices?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/krcert-security-notices?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_KRCertAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"krcert-security-notices\"","tags":["indices"]}},"/index/krcert-vulnerabilities":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the krcert-vulnerabilities index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** KR-CERT Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/krcert-vulnerabilities?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/krcert-vulnerabilities?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_KRCertAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"krcert-vulnerabilities\"","tags":["indices"]}},"/index/kubernetes":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the kubernetes index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Kubernetes Security Issues\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/kubernetes?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/kubernetes?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_K8S-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"kubernetes\"","tags":["indices"]}},"/index/kunbus":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the kunbus index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** KunBus Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/kunbus?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/kunbus?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Kunbus-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"kunbus\"","tags":["indices"]}},"/index/lantronix":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the lantronix index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Lantronix Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/lantronix?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/lantronix?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Lantronix-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"lantronix\"","tags":["indices"]}},"/index/lenovo":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the lenovo index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Lenovo Product Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/lenovo?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/lenovo?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Lenovo-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"lenovo\"","tags":["indices"]}},"/index/lexmark":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the lexmark index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Lexmark Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/lexmark?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/lexmark?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_LexmarkAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"lexmark\"","tags":["indices"]}},"/index/lg":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the lg index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** LG Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/lg?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/lg?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_LG-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"lg\"","tags":["indices"]}},"/index/libre-office":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the libre-office index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Libre Office Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/libre-office?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/libre-office?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_LibreOffice-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"libre-office\"","tags":["indices"]}},"/index/linux":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the linux index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Linux Kernel Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/linux?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/linux?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Linux-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"linux\"","tags":["indices"]}},"/index/lol-advs":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the lol-advs index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Living Off the Land Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/lol-advs?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/lol-advs?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_LolAdvs-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"lol-advs\"","tags":["indices"]}},"/index/m-files":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the m-files index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** M-Files Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/m-files?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/m-files?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MFiles-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"m-files\"","tags":["indices"]}},"/index/macert":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the macert index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Moroccan CERT Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/macert?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/macert?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MACert-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"macert\"","tags":["indices"]}},"/index/malicious-packages":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the malicious-packages index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Malicious Packages\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-packages?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/malicious-packages?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MaliciousPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"malicious-packages\"","tags":["indices"]}},"/index/malicious-vscode-exts":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the malicious-vscode-exts index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Malicious Visual Studio Code Extensions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-vscode-exts?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/malicious-vscode-exts?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MaliciousVSCodeExts-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"malicious-vscode-exts\"","tags":["indices"]}},"/index/manageengine":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the manageengine index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** ManageEngine Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/manageengine?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/manageengine?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ManageEngineAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"manageengine\"","tags":["indices"]}},"/index/maven":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the maven index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Maven (Java) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/maven?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/maven?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"maven\"","tags":["indices"]}},"/index/mbed-tls":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mbed-tls index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Mbed TLS Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mbed-tls?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mbed-tls?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MbedTLS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"mbed-tls\"","tags":["indices"]}},"/index/mcafee":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mcafee index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** McAfee Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mcafee?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mcafee?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_McAfee-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"mcafee\"","tags":["indices"]}},"/index/mediatek":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mediatek index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** MediaTek Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mediatek?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mediatek?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Mediatek-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"mediatek\"","tags":["indices"]}},"/index/medtronic":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the medtronic index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Medtronic Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/medtronic?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/medtronic?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MedtronicAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"medtronic\"","tags":["indices"]}},"/index/mendix":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mendix index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Mendix Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mendix?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mendix?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Mendix-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"mendix\"","tags":["indices"]}},"/index/meta-advisories":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the meta-advisories index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Meta Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/meta-advisories?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/meta-advisories?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MetaAdvisories-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"meta-advisories\"","tags":["indices"]}},"/index/metasploit":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the metasploit index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Metasploit Modules\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/metasploit?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/metasploit?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MetasploitExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"metasploit\"","tags":["indices"]}},"/index/microsoft-csaf":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the microsoft-csaf index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Microsoft CSAF\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-csaf?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/microsoft-csaf?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MicrosoftCSAF-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"microsoft-csaf\"","tags":["indices"]}},"/index/microsoft-cvrf":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the microsoft-cvrf index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Microsoft Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-cvrf?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/microsoft-cvrf?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MicrosoftCVRF-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"microsoft-cvrf\"","tags":["indices"]}},"/index/microsoft-driver-block-list":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the microsoft-driver-block-list index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Microsoft's Vulnerable Drivers Blocklist\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-driver-block-list?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/microsoft-driver-block-list?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MicrosoftDriverBlockList-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"microsoft-driver-block-list\"","tags":["indices"]}},"/index/microsoft-kb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the microsoft-kb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Microsoft KB list by CVE\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-kb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/microsoft-kb?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MicrosoftKb-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"microsoft-kb\"","tags":["indices"]}},"/index/mikrotik":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mikrotik index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** MikroTik Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mikrotik?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mikrotik?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Mikrotik-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"mikrotik\"","tags":["indices"]}},"/index/mindray":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mindray index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Mindray Cybersecurity Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mindray?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mindray?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Mindray-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"mindray\"","tags":["indices"]}},"/index/misp-threat-actors":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the misp-threat-actors index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** MISP Threat Actors\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/misp-threat-actors?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/misp-threat-actors?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MispValue-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"misp-threat-actors\"","tags":["indices"]}},"/index/mitel":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mitel index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Mitel Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mitel?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mitel?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Mitel-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"mitel\"","tags":["indices"]}},"/index/mitre-attack-cve":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mitre-attack-cve index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** MITRE ATT\u0026CK Technique ID to CVE List\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mitre-attack-cve?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mitre-attack-cve?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_MitreAttackToCVE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"mitre-attack-cve\"","tags":["indices"]}},"/index/mitre-cvelist-v5":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mitre-cvelist-v5 index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** MITRE CVEList V5\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mitre-cvelist-v5?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mitre-cvelist-v5?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MitreCVEListV5-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"mitre-cvelist-v5\"","tags":["indices"]}},"/index/mitsubishi-electric":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mitsubishi-electric index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Mitsubishi Electric Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mitsubishi-electric?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mitsubishi-electric?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MitsubishiElectricAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"mitsubishi-electric\"","tags":["indices"]}},"/index/mongodb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mongodb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** MongoDB Security Alerts\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mongodb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mongodb?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MongoDB-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"mongodb\"","tags":["indices"]}},"/index/moxa":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the moxa index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Moxa Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/moxa?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/moxa?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MoxaAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"moxa\"","tags":["indices"]}},"/index/mozilla":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mozilla index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Mozilla Foundation Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mozilla?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mozilla?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MozillaAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"mozilla\"","tags":["indices"]}},"/index/naver":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the naver index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Naver Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/naver?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/naver?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Naver-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"naver\"","tags":["indices"]}},"/index/ncsc":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ncsc index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NCSC Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ncsc?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ncsc?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NCSC-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ncsc\"","tags":["indices"]}},"/index/ncsc-cves":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ncsc-cves index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NCSC CVEs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ncsc-cves?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ncsc-cves?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NCSCCVE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ncsc-cves\"","tags":["indices"]}},"/index/nec":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nec index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NEC Security Information Notices\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nec?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nec?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NEC-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"nec\"","tags":["indices"]}},"/index/nessus":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nessus index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Nessus Plugins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nessus?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nessus?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Nessus-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"nessus\"","tags":["indices"]}},"/index/netapp":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the netapp index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NetApp Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/netapp?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/netapp?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NetApp-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"netapp\"","tags":["indices"]}},"/index/netatalk":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the netatalk index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Netatalk Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/netatalk?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/netatalk?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Netatalk-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"netatalk\"","tags":["indices"]}},"/index/netgate":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the netgate index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Netgate Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/netgate?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/netgate?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Netgate-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"netgate\"","tags":["indices"]}},"/index/netgear":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the netgear index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NETGEAR Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/netgear?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/netgear?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Netgear-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"netgear\"","tags":["indices"]}},"/index/netskope":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the netskope index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Netskope Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/netskope?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/netskope?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Netskope-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"netskope\"","tags":["indices"]}},"/index/nexpose":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nexpose index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Nexpose Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nexpose?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nexpose?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Nexpose-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"nexpose\"","tags":["indices"]}},"/index/nginx":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nginx index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Nginx Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nginx?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nginx?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NginxAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"nginx\"","tags":["indices"]}},"/index/nhs":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nhs index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NHS Cyber Alerts\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nhs?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nhs?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NHS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"nhs\"","tags":["indices"]}},"/index/ni":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ni index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** National Instruments Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ni?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ni?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NI-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ni\"","tags":["indices"]}},"/index/nist-nvd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nist-nvd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NIST NVD 1.0 CVE data built from NIST NVD 2.0 CVE Data\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nist-nvd?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_CveItems-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"nist-nvd\"","tags":["indices"]}},"/index/nist-nvd2":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2 index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NIST NVD 2.0\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nist-nvd2?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_NVD20CVE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"nist-nvd2\"","tags":["indices"]}},"/index/nist-nvd2-cpematch":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2-cpematch index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NIST NVD 2.0 CPE Match\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2-cpematch?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nist-nvd2-cpematch?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_NVD20CPEMatch-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"nist-nvd2-cpematch\"","tags":["indices"]}},"/index/nist-nvd2-sources":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2-sources index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NIST NVD 2.0 Source Data\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2-sources?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nist-nvd2-sources?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NVD20Source-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"nist-nvd2-sources\"","tags":["indices"]}},"/index/node-security":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the node-security index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Node.js Security Working Group Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/node-security?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/node-security?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NodeSecurity-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"node-security\"","tags":["indices"]}},"/index/nodejs":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nodejs index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NodeJS Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nodejs?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nodejs?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NodeJS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"nodejs\"","tags":["indices"]}},"/index/nokia":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nokia index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Nokia Product Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nokia?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nokia?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Nokia-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"nokia\"","tags":["indices"]}},"/index/notepadplusplus":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the notepadplusplus index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Notepad++ Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/notepadplusplus?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/notepadplusplus?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NotePadPlusPlus-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"notepadplusplus\"","tags":["indices"]}},"/index/nozomi":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nozomi index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Nozomi Networks Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nozomi?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nozomi?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Nozomi-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"nozomi\"","tags":["indices"]}},"/index/npm":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the npm index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NPM (JS/TS) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/npm?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/npm?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"npm\"","tags":["indices"]}},"/index/ntp":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ntp index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NTP Security Issues\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ntp?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ntp?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NTP-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ntp\"","tags":["indices"]}},"/index/nuclei":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nuclei index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Nuclei Templates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nuclei?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nuclei?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Nuclei-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"nuclei\"","tags":["indices"]}},"/index/nuget":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nuget index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Nuget (C#/F#) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nuget?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nuget?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"nuget\"","tags":["indices"]}},"/index/nvd-cpe-dictionary":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nvd-cpe-dictionary index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NVD's CPE Dictionary\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nvd-cpe-dictionary?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nvd-cpe-dictionary?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NVDCPEDictionary-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"nvd-cpe-dictionary\"","tags":["indices"]}},"/index/nvidia":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nvidia index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NVIDIA Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nvidia?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nvidia?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SecurityBulletin-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"nvidia\"","tags":["indices"]}},"/index/nz-advisories":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nz-advisories index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CERT NZ Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nz-advisories?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nz-advisories?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NZAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"nz-advisories\"","tags":["indices"]}},"/index/octopus-deploy":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the octopus-deploy index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Octopus Deploy Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/octopus-deploy?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/octopus-deploy?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OctopusDeploy-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"octopus-deploy\"","tags":["indices"]}},"/index/okta":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the okta index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Okta Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/okta?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/okta?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Okta-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"okta\"","tags":["indices"]}},"/index/omron":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the omron index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Omron Vulnerability Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/omron?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/omron?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Omron-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"omron\"","tags":["indices"]}},"/index/one-e":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the one-e index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** 1E Published Product Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/one-e?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/one-e?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OneE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"one-e\"","tags":["indices"]}},"/index/opam":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the opam index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** opam (OCaml) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/opam?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/opam?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"opam\"","tags":["indices"]}},"/index/open-cvdb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the open-cvdb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** The Open Cloud Vulnerability \u0026 Security Issue Database\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/open-cvdb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/open-cvdb?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OpenCVDB-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"open-cvdb\"","tags":["indices"]}},"/index/openbsd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the openbsd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OpenBSD Security Fixes\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/openbsd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/openbsd?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OpenBSD-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"openbsd\"","tags":["indices"]}},"/index/opengear":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the opengear index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Opengear Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/opengear?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/opengear?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Opengear-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"opengear\"","tags":["indices"]}},"/index/openjdk":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the openjdk index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OpenJDK Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/openjdk?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/openjdk?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OpenJDK-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"openjdk\"","tags":["indices"]}},"/index/openssh":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the openssh index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OpenSSH Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/openssh?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/openssh?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OpenSSH-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"openssh\"","tags":["indices"]}},"/index/openssl-secadv":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the openssl-secadv index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OpenSSL Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/openssl-secadv?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/openssl-secadv?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OpenSSLSecAdv-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"openssl-secadv\"","tags":["indices"]}},"/index/openstack":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the openstack index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OpenStack Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/openstack?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/openstack?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OpenStack-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"openstack\"","tags":["indices"]}},"/index/openwrt":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the openwrt index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OpenWrt Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/openwrt?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/openwrt?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_WRT-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"openwrt\"","tags":["indices"]}},"/index/oracle":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the oracle index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Oracle Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/oracle?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/oracle?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MetaData-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"oracle\"","tags":["indices"]}},"/index/oracle-cpu":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the oracle-cpu index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Oracle Critical Patch Update Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/oracle-cpu?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/oracle-cpu?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OracleCPU-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"oracle-cpu\"","tags":["indices"]}},"/index/oracle-cpu-csaf":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the oracle-cpu-csaf index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Oracle Critical Patch Updates CSAF\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/oracle-cpu-csaf?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/oracle-cpu-csaf?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OracleCPUCSAF-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"oracle-cpu-csaf\"","tags":["indices"]}},"/index/osv":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the osv index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Open Source Vulnerabilities Database\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/osv?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/osv?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OSV-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"osv\"","tags":["indices"]}},"/index/otrs":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the otrs index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OTRS Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/otrs?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/otrs?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OTRS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"otrs\"","tags":["indices"]}},"/index/owncloud":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the owncloud index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OwnCloud Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/owncloud?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/owncloud?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OwnCloud-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"owncloud\"","tags":["indices"]}},"/index/packetstorm":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the packetstorm index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** PacketStorm\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/packetstorm?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/packetstorm?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PacketstormExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"packetstorm\"","tags":["indices"]}},"/index/palantir":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the palantir index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Palantir Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/palantir?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/palantir?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Palantir-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"palantir\"","tags":["indices"]}},"/index/palo-alto":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the palo-alto index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Palo Alto Networks Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/palo-alto?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/palo-alto?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PaloAltoAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"palo-alto\"","tags":["indices"]}},"/index/panasonic":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the panasonic index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Panasonic Vulnerability Advisory List\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/panasonic?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/panasonic?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Panasonic-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"panasonic\"","tags":["indices"]}},"/index/papercut":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the papercut index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** PaperCut Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/papercut?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/papercut?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PaperCut-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"papercut\"","tags":["indices"]}},"/index/pega":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the pega index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Pega Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/pega?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/pega?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Pega-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"pega\"","tags":["indices"]}},"/index/philips":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the philips index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Philips Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/philips?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/philips?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PhilipsAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"philips\"","tags":["indices"]}},"/index/phoenix-contact":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the phoenix-contact index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Phoenix Contact Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/phoenix-contact?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/phoenix-contact?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PhoenixContactAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"phoenix-contact\"","tags":["indices"]}},"/index/php-my-admin":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the php-my-admin index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** phpMyAdmin Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/php-my-admin?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/php-my-admin?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PHPMyAdmin-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"php-my-admin\"","tags":["indices"]}},"/index/pkcert":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the pkcert index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** PK CERT Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/pkcert?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/pkcert?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PKCert-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"pkcert\"","tags":["indices"]}},"/index/postgressql":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the postgressql index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** PostgresSQL Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/postgressql?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/postgressql?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PostgresSQL-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"postgressql\"","tags":["indices"]}},"/index/powerdns":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the powerdns index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** PowerDNS Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/powerdns?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/powerdns?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PowerDNS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"powerdns\"","tags":["indices"]}},"/index/progress":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the progress index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Progress Product Alert Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/progress?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/progress?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Progress-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"progress\"","tags":["indices"]}},"/index/proofpoint":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the proofpoint index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Proofpoint Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/proofpoint?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/proofpoint?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Proofpoint-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"proofpoint\"","tags":["indices"]}},"/index/ptc":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ptc index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** PTC Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ptc?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ptc?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PTC-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ptc\"","tags":["indices"]}},"/index/pub":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the pub index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Pub (Dart/Flutter) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/pub?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/pub?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"pub\"","tags":["indices"]}},"/index/pure-storage":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the pure-storage index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Pure Storage Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/pure-storage?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/pure-storage?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PureStorage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"pure-storage\"","tags":["indices"]}},"/index/pypa-advisories":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the pypa-advisories index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** PyPA Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/pypa-advisories?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/pypa-advisories?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PyPAAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"pypa-advisories\"","tags":["indices"]}},"/index/pypi":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the pypi index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** PyPi (Python) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/pypi?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/pypi?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"pypi\"","tags":["indices"]}},"/index/qnap":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the qnap index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** QNAP Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/qnap?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/qnap?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_QNAPAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"qnap\"","tags":["indices"]}},"/index/qqids":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the qqids index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Qualys QIDs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/qqids?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/qqids?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_QQID-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"qqids\"","tags":["indices"]}},"/index/qualcomm":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the qualcomm index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Qualcomm Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/qualcomm?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/qualcomm?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Qualcomm-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"qualcomm\"","tags":["indices"]}},"/index/qualys":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the qualys index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Qualys Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/qualys?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/qualys?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Qualys-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"qualys\"","tags":["indices"]}},"/index/qualys-qids":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the qualys-qids index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Qualys QID\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/qualys-qids?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/qualys-qids?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_QualysQID-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"qualys-qids\"","tags":["indices"]}},"/index/qubes-qsb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the qubes-qsb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Qubes Security Bulletin\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/qubes-qsb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/qubes-qsb?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_QSB-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"qubes-qsb\"","tags":["indices"]}},"/index/ransomware":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ransomware index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Ransomware\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ransomware?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ransomware?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_RansomwareExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ransomware\"","tags":["indices"]}},"/index/red-lion":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the red-lion index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Red-Lion Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/red-lion?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/red-lion?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_RedLion-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"red-lion\"","tags":["indices"]}},"/index/redhat":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the redhat index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Red Hat Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/redhat?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/redhat?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_RedhatCVE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"redhat\"","tags":["indices"]}},"/index/redhat-cves":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the redhat-cves index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CSAF data for redhat\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/redhat-cves?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/redhat-cves?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_RhelCVE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"redhat-cves\"","tags":["indices"]}},"/index/renesas":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the renesas index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Renesas Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/renesas?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/renesas?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Renesas-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"renesas\"","tags":["indices"]}},"/index/revive":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the revive index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Revive Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/revive?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/revive?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Revive-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"revive\"","tags":["indices"]}},"/index/roche":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the roche index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Roche Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/roche?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/roche?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Roche-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"roche\"","tags":["indices"]}},"/index/rockwell":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the rockwell index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Rockwell Automation Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/rockwell?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/rockwell?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Rockwell-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"rockwell\"","tags":["indices"]}},"/index/rocky":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the rocky index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Rocky Linux Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/rocky?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/rocky?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_Update-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"rocky\"","tags":["indices"]}},"/index/rocky-errata":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the rocky-errata index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Rocky Errata\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/rocky-errata?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/rocky-errata?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_RockyErrata-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"rocky-errata\"","tags":["indices"]}},"/index/rocky-purls":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the rocky-purls index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Rocky Purls\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/rocky-purls?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/rocky-purls?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_purls_PurlResponse-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"rocky-purls\"","tags":["indices"]}},"/index/rsync":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the rsync index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Rsync Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/rsync?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/rsync?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Rsync-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"rsync\"","tags":["indices"]}},"/index/ruckus":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ruckus index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Ruckus Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ruckus?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ruckus?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Ruckus-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ruckus\"","tags":["indices"]}},"/index/rustsec-advisories":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the rustsec-advisories index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** RustSec Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/rustsec-advisories?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/rustsec-advisories?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_RustsecAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"rustsec-advisories\"","tags":["indices"]}},"/index/sacert":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sacert index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Saudi CERT\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sacert?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sacert?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SAAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"sacert\"","tags":["indices"]}},"/index/safran":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the safran index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Safran Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/safran?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/safran?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Safran-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"safran\"","tags":["indices"]}},"/index/saint":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the saint index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SAINT Exploits\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/saint?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/saint?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SaintExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"saint\"","tags":["indices"]}},"/index/salesforce":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the salesforce index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SalesForce Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/salesforce?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/salesforce?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SalesForce-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"salesforce\"","tags":["indices"]}},"/index/samba":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the samba index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Samba Security Releases\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/samba?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/samba?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Samba-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"samba\"","tags":["indices"]}},"/index/sandisk":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sandisk index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Sandisk Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sandisk?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sandisk?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Sandisk-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"sandisk\"","tags":["indices"]}},"/index/sans-dshield":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sans-dshield index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SANS DShield Honeypot Data\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sans-dshield?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sans-dshield?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SansDshield-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"sans-dshield\"","tags":["indices"]}},"/index/sap":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sap index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SAP Security Patch Days\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sap?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sap?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SAP-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"sap\"","tags":["indices"]}},"/index/schneider-electric":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the schneider-electric index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Schneider Electric Security Notifications\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/schneider-electric?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/schneider-electric?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SchneiderElectricAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"schneider-electric\"","tags":["indices"]}},"/index/schutzwerk":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the schutzwerk index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Schutzwerk Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/schutzwerk?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/schutzwerk?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Schutzwerk-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"schutzwerk\"","tags":["indices"]}},"/index/sec-consult":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sec-consult index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SEC Consult Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sec-consult?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sec-consult?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SECConsult-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"sec-consult\"","tags":["indices"]}},"/index/securitylab":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the securitylab index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Security Lab Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/securitylab?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/securitylab?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SecurityLab-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"securitylab\"","tags":["indices"]}},"/index/seebug":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the seebug index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Seebug Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/seebug?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/seebug?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SeebugExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"seebug\"","tags":["indices"]}},"/index/sel":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sel index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Schweitzer Engineering Laboratories Security Notifications\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sel?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sel?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Sel-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"sel\"","tags":["indices"]}},"/index/sentinelone":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sentinelone index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SentinelOne Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sentinelone?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sentinelone?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SentinelOne-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"sentinelone\"","tags":["indices"]}},"/index/servicenow":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the servicenow index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** ServiceNow CVE Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/servicenow?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/servicenow?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ServiceNow-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"servicenow\"","tags":["indices"]}},"/index/shadowserver-exploited":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the shadowserver-exploited index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Shadowserver Foundation Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/shadowserver-exploited?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/shadowserver-exploited?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ShadowServerExploitedVulnerability-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"shadowserver-exploited\"","tags":["indices"]}},"/index/shielder":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the shielder index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Shielder Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/shielder?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/shielder?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Shielder-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"shielder\"","tags":["indices"]}},"/index/sick":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sick index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SICK Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sick?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sick?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Sick-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"sick\"","tags":["indices"]}},"/index/siemens":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the siemens index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Siemens Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/siemens?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/siemens?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SiemensAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"siemens\"","tags":["indices"]}},"/index/sierra-wireless":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sierra-wireless index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Sierra Wireless Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sierra-wireless?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sierra-wireless?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SierraWireless-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"sierra-wireless\"","tags":["indices"]}},"/index/sigmahq-sigma-rules":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sigmahq-sigma-rules index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Sigma Rules\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sigmahq-sigma-rules?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sigmahq-sigma-rules?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SigmaRule-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"sigmahq-sigma-rules\"","tags":["indices"]}},"/index/singcert":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the singcert index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CSA Alerts and Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/singcert?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/singcert?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SingCert-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"singcert\"","tags":["indices"]}},"/index/sitecore":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sitecore index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Sitecore Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sitecore?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sitecore?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Sitecore-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"sitecore\"","tags":["indices"]}},"/index/slackware":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the slackware index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Slackware Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/slackware?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/slackware?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Slackware-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"slackware\"","tags":["indices"]}},"/index/solarwinds":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the solarwinds index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SolarWinds Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/solarwinds?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/solarwinds?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SolarWindsAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"solarwinds\"","tags":["indices"]}},"/index/solr":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the solr index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Solr CVE Reports\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/solr?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/solr?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Solr-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"solr\"","tags":["indices"]}},"/index/sonatype":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sonatype index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Sonatype Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sonatype?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sonatype?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Sonatype-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"sonatype\"","tags":["indices"]}},"/index/sonicwall":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sonicwall index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SonicWall Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sonicwall?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sonicwall?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SonicWallAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"sonicwall\"","tags":["indices"]}},"/index/spacelabs-healthcare":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the spacelabs-healthcare index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Spacelabs Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/spacelabs-healthcare?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/spacelabs-healthcare?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SpacelabsHealthcareAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"spacelabs-healthcare\"","tags":["indices"]}},"/index/splunk":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the splunk index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Splunk Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/splunk?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/splunk?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Splunk-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"splunk\"","tags":["indices"]}},"/index/spring":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the spring index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Spring Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/spring?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/spring?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Spring-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"spring\"","tags":["indices"]}},"/index/ssd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ssd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SSD Secure Disclosure Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ssd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ssd?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SSDAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ssd\"","tags":["indices"]}},"/index/stormshield":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the stormshield index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Stormshield Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/stormshield?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/stormshield?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Stormshield-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"stormshield\"","tags":["indices"]}},"/index/stryker":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the stryker index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Stryker Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/stryker?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/stryker?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_StrykerAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"stryker\"","tags":["indices"]}},"/index/sudo":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sudo index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Sudo Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sudo?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sudo?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Sudo-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"sudo\"","tags":["indices"]}},"/index/suse":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the suse index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SUSE Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/suse?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/suse?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Cvrf-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"suse\"","tags":["indices"]}},"/index/suse-security":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the suse-security index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Suse Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/suse-security?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/suse-security?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SuseSecurity-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"suse-security\"","tags":["indices"]}},"/index/swift":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the swift index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Swift packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/swift?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/swift?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"swift\"","tags":["indices"]}},"/index/swisslog-healthcare":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the swisslog-healthcare index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Swisslog Healthcare CVE Disclosures\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/swisslog-healthcare?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/swisslog-healthcare?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SwisslogHealthcareAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"swisslog-healthcare\"","tags":["indices"]}},"/index/symfony":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the symfony index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Symfony Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/symfony?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/symfony?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Symfony-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"symfony\"","tags":["indices"]}},"/index/synacktiv":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the synacktiv index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Synacktiv Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/synacktiv?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/synacktiv?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Synacktiv-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"synacktiv\"","tags":["indices"]}},"/index/syncrosoft":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the syncrosoft index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SyncroSoft Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/syncrosoft?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/syncrosoft?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SyncroSoft-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"syncrosoft\"","tags":["indices"]}},"/index/synology":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the synology index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Synology Product Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/synology?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/synology?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Synology-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"synology\"","tags":["indices"]}},"/index/syss":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the syss index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Syss Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/syss?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/syss?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Syss-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"syss\"","tags":["indices"]}},"/index/tailscale":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the tailscale index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Tailscale Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/tailscale?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/tailscale?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Tailscale-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"tailscale\"","tags":["indices"]}},"/index/teamviewer":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the teamviewer index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** TeamViewer Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/teamviewer?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/teamviewer?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_TeamViewer-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"teamviewer\"","tags":["indices"]}},"/index/tenable-research-advisories":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the tenable-research-advisories index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Tenable Research Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/tenable-research-advisories?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/tenable-research-advisories?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_TenableResearchAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"tenable-research-advisories\"","tags":["indices"]}},"/index/tencent":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the tencent index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Tencent Vulnerability Risk Notices\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/tencent?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/tencent?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Tencent-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"tencent\"","tags":["indices"]}},"/index/thales":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the thales index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Thales Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/thales?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/thales?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Thales-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"thales\"","tags":["indices"]}},"/index/themissinglink":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the themissinglink index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** the missing link Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/themissinglink?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/themissinglink?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_TheMissingLink-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"themissinglink\"","tags":["indices"]}},"/index/thermo-fisher":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the thermo-fisher index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Thermo Fisher Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/thermo-fisher?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/thermo-fisher?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ThermoFisher-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"thermo-fisher\"","tags":["indices"]}},"/index/threat-actors":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the threat-actors index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Threat Actors Data\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/threat-actors?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/threat-actors?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ThreatActorWithExternalObjects-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"threat-actors\"","tags":["indices"]}},"/index/ti":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ti index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Texas Instruments Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ti?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ti?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_TI-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ti\"","tags":["indices"]}},"/index/tibco":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the tibco index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** TIBCO Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/tibco?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/tibco?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Tibco-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"tibco\"","tags":["indices"]}},"/index/tp-link":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the tp-link index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** TP-Link Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/tp-link?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/tp-link?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_TPLink-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"tp-link\"","tags":["indices"]}},"/index/trane-technology":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the trane-technology index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Trane Technology Product Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/trane-technology?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/trane-technology?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_TraneTechnology-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"trane-technology\"","tags":["indices"]}},"/index/trendmicro":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the trendmicro index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Trend Micro Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/trendmicro?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/trendmicro?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_TrendMicro-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"trendmicro\"","tags":["indices"]}},"/index/trustwave":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the trustwave index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Trustwave Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/trustwave?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/trustwave?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Trustwave-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"trustwave\"","tags":["indices"]}},"/index/twcert":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the twcert index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Taiwan CERT Vulnerability Notes\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/twcert?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/twcert?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_TWCertAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"twcert\"","tags":["indices"]}},"/index/ubiquiti":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ubiquiti index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Ubiquiti Security Advisory Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ubiquiti?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ubiquiti?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Ubiquiti-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ubiquiti\"","tags":["indices"]}},"/index/ubuntu":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ubuntu index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Ubuntu Security Notices\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ubuntu?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ubuntu?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_UbuntuCVE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ubuntu\"","tags":["indices"]}},"/index/ubuntu-purls":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ubuntu-purls index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Ubuntu Purls\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ubuntu-purls?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ubuntu-purls?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_purls_PurlResponse-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"ubuntu-purls\"","tags":["indices"]}},"/index/unify":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the unify index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Unify Product Security Advisories and Security Notes\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/unify?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/unify?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Unify-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"unify\"","tags":["indices"]}},"/index/unisoc":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the unisoc index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** UNISOC Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/unisoc?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/unisoc?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Unisoc-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"unisoc\"","tags":["indices"]}},"/index/usd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the usd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** usd Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/usd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/usd?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_USD-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"usd\"","tags":["indices"]}},"/index/usom":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the usom index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** USOM Security Notices\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/usom?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/usom?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_USOMAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"usom\"","tags":["indices"]}},"/index/vandyke":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vandyke index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VanDyke Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vandyke?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vandyke?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VanDyke-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vandyke\"","tags":["indices"]}},"/index/vapidlabs":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vapidlabs index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VapidLabs Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vapidlabs?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vapidlabs?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VapidLabsAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vapidlabs\"","tags":["indices"]}},"/index/vc-cpe-dictionary":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vc-cpe-dictionary index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck CPE Dictionary\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vc-cpe-dictionary?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vc-cpe-dictionary?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VCCPEDictionary-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vc-cpe-dictionary\"","tags":["indices"]}},"/index/vde":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vde index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VDE CERT Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vde?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vde?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VDEAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vde\"","tags":["indices"]}},"/index/veeam":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the veeam index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Veeam Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/veeam?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/veeam?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Veeam-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"veeam\"","tags":["indices"]}},"/index/veritas":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the veritas index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Veritas Security Alerts\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/veritas?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/veritas?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Veritas-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"veritas\"","tags":["indices"]}},"/index/virtuozzo":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the virtuozzo index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Virtuozzo Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/virtuozzo?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/virtuozzo?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Virtuozzo-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"virtuozzo\"","tags":["indices"]}},"/index/vlc":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vlc index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VLC Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vlc?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vlc?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VLC-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vlc\"","tags":["indices"]}},"/index/vmware":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vmware index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VMWare Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vmware?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vmware?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VMWareAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vmware\"","tags":["indices"]}},"/index/voidsec":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the voidsec index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VoidSec Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/voidsec?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/voidsec?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VoidSec-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"voidsec\"","tags":["indices"]}},"/index/vulncheck":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VulnCheck-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vulncheck\"","tags":["indices"]}},"/index/vulncheck-canaries":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-canaries index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Canary Intel\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-canaries?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-canaries?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"src_country","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"dst_country","schema":{"type":"string"}},{"description":"Source IP address","in":"query","name":"src_ip","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_VulnCheckCanary-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vulncheck-canaries\"","tags":["indices"]}},"/index/vulncheck-canaries-10d":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-canaries-10d index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Canary Intel (10 day)\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-canaries-10d?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-canaries-10d?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"src_country","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"dst_country","schema":{"type":"string"}},{"description":"Source IP address","in":"query","name":"src_ip","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_VulnCheckCanary-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vulncheck-canaries-10d\"","tags":["indices"]}},"/index/vulncheck-canaries-30d":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-canaries-30d index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Canary Intel (30 day)\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-canaries-30d?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-canaries-30d?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"src_country","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"dst_country","schema":{"type":"string"}},{"description":"Source IP address","in":"query","name":"src_ip","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_VulnCheckCanary-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vulncheck-canaries-30d\"","tags":["indices"]}},"/index/vulncheck-canaries-3d":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-canaries-3d index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Canary Intel (3 day)\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-canaries-3d?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-canaries-3d?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"src_country","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"dst_country","schema":{"type":"string"}},{"description":"Source IP address","in":"query","name":"src_ip","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_VulnCheckCanary-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vulncheck-canaries-3d\"","tags":["indices"]}},"/index/vulncheck-canaries-90d":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-canaries-90d index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Canary Intel (90 day)\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-canaries-90d?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-canaries-90d?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"src_country","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"dst_country","schema":{"type":"string"}},{"description":"Source IP address","in":"query","name":"src_ip","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_VulnCheckCanary-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vulncheck-canaries-90d\"","tags":["indices"]}},"/index/vulncheck-config":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-config index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Configurations\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-config?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-config?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VulnCheckConfig-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vulncheck-config\"","tags":["indices"]}},"/index/vulncheck-cvelist-v5":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-cvelist-v5 index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck CVEList V5\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-cvelist-v5?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-cvelist-v5?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VulnCheckCVEListV5-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vulncheck-cvelist-v5\"","tags":["indices"]}},"/index/vulncheck-kev":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-kev index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck KEV\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-kev?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-kev?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VulnCheckKEV-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vulncheck-kev\"","tags":["indices"]}},"/index/vulncheck-nvd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-nvd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck NVD\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-nvd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-nvd?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_CveItemsExtended-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vulncheck-nvd\"","tags":["indices"]}},"/index/vulncheck-nvd2":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-nvd2 index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck NVD V2\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-nvd2?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-nvd2?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_NVD20CVEExtended-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vulncheck-nvd2\"","tags":["indices"]}},"/index/vulnerability-aliases":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulnerability-aliases index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Vulnerability Aliases\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulnerability-aliases?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulnerability-aliases?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_VulnerabilityAlias-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vulnerability-aliases\"","tags":["indices"]}},"/index/vulnrichment":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulnrichment index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CISA Vulnrichment\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulnrichment?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulnrichment?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Vulnrichment-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vulnrichment\"","tags":["indices"]}},"/index/vyaire":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vyaire index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Vyaire Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vyaire?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vyaire?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VYAIREAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"vyaire\"","tags":["indices"]}},"/index/watchguard":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the watchguard index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Watchguard Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/watchguard?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/watchguard?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_WatchGuard-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"watchguard\"","tags":["indices"]}},"/index/whatsapp":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the whatsapp index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** WhatsApp Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/whatsapp?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/whatsapp?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_WhatsApp-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"whatsapp\"","tags":["indices"]}},"/index/wibu":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the wibu index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Wibu Systems Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/wibu?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/wibu?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Wibu-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"wibu\"","tags":["indices"]}},"/index/wireshark":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the wireshark index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Wireshark Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/wireshark?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/wireshark?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Wireshark-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"wireshark\"","tags":["indices"]}},"/index/with-secure":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the with-secure index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** With Secure Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/with-secure?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/with-secure?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_WithSecure-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"with-secure\"","tags":["indices"]}},"/index/wolfi":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the wolfi index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Wolfi Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/wolfi?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/wolfi?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Wolfi-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"wolfi\"","tags":["indices"]}},"/index/wolfssl":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the wolfssl index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** WolfSSL Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/wolfssl?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/wolfssl?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_WolfSSL-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"wolfssl\"","tags":["indices"]}},"/index/wordfence":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the wordfence index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Wordfence Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/wordfence?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/wordfence?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Wordfence-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"wordfence\"","tags":["indices"]}},"/index/xen":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the xen index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Xen Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/xen?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/xen?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Xen-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"xen\"","tags":["indices"]}},"/index/xerox":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the xerox index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Xerox Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/xerox?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/xerox?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Xerox-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"xerox\"","tags":["indices"]}},"/index/xiaomi":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the xiaomi index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Xiaomi Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/xiaomi?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/xiaomi?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Xiaomi-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"xiaomi\"","tags":["indices"]}},"/index/xylem":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the xylem index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Xylem Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/xylem?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/xylem?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Xylem-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"xylem\"","tags":["indices"]}},"/index/yamaha":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the yamaha index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Yamaha Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/yamaha?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/yamaha?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Yamaha-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"yamaha\"","tags":["indices"]}},"/index/yokogawa":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the yokogawa index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Yokogawa Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/yokogawa?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/yokogawa?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_YokogawaAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"yokogawa\"","tags":["indices"]}},"/index/yubico":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the yubico index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Yubico Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/yubico?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/yubico?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Yubico-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"yubico\"","tags":["indices"]}},"/index/zdi":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the zdi index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Zero Day Initiative Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/zdi?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/zdi?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ZeroDayAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"zdi\"","tags":["indices"]}},"/index/zebra":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the zebra index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Zebra Security Alerts\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/zebra?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/zebra?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Zebra-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"zebra\"","tags":["indices"]}},"/index/zeroscience":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the zeroscience index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** ZeroScience Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/zeroscience?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/zeroscience?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ZeroScienceAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"zeroscience\"","tags":["indices"]}},"/index/zimbra":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the zimbra index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Zimbra Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/zimbra?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/zimbra?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Zimbra-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"zimbra\"","tags":["indices"]}},"/index/zoom":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the zoom index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Zoom Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/zoom?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/zoom?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Zoom-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"zoom\"","tags":["indices"]}},"/index/zscaler":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the zscaler index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Zscaler Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/zscaler?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/zscaler?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Zscaler-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"zscaler\"","tags":["indices"]}},"/index/zuso":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the zuso index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** ZUSO Vulnerability Notifications\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/zuso?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/zuso?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Zuso-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"zuso\"","tags":["indices"]}},"/index/zyxel":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the zyxel index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Zyxel Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/zyxel?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/zyxel?cursor=\u003cnext_cursor_id\u003e`\n","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Zyxel-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return vulnerability data stored in index \"zyxel\"","tags":["indices"]}},"/openapi":{"get":{"description":"Return the VulnCheck API (v3) OpenAPI specification","responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":{},"type":"object"}}},"description":"OK"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Return OpenAPI specification","tags":["endpoints"]}},"/pdns/vulncheck-c2":{"get":{"description":"Retrieve a list of hostnames, identified as running Command \u0026 Control infrastructure.","parameters":[{"description":"Format of the Hostnames in the response (Defaults To: text)","in":"query","name":"format","schema":{"enum":["txt","json","text"],"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Retrieve a list of C2 Hostnames","tags":["endpoints"]}},"/purl":{"get":{"description":"Based on the specified PURL, this endpoint will return a list of vulnerabilities that are related to the package. We currently support hex, golang, hackage, npm, and pypi","parameters":[{"description":"URL string used to identify and locate a software package","in":"query","name":"purl","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-v3controllers_PurlResponseData-v3controllers_PurlResponseMetadata"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Request vulnerabilities related to a PURL","tags":["endpoints"]}},"/purls":{"post":{"description":"Accepts a JSON array of PURLs in the request body and returns a list of vulnerabilities","requestBody":{"content":{"application/json":{"schema":{"items":{"type":"string"},"title":"purls","type":"array"}}},"description":"PURL strings used to identify and locate software packages","required":true},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-v3controllers_PurlsResponseData-v3controllers_PurlsResponseMetadata"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Request vulnerabilities related to a list of PURLs","tags":["endpoints"]}},"/rules/initial-access/{type}":{"get":{"description":"Retrieve set of initial-access detection rules by type","parameters":[{"description":"Type of ruleset to retrieve","in":"path","name":"type","required":true,"schema":{"enum":["snort","suricata"],"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Retrieve set of initial-access detection rules","tags":["endpoints"]}},"/tags/vulncheck-c2":{"get":{"description":"Retrieve a list of IP addresses, identified as running Command \u0026 Control infrastructure","parameters":[{"description":"Format of the IP Addresses in the response (Defaults To: text)","in":"query","name":"format","schema":{"enum":["txt","json","text"],"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com/v3"}],"summary":"Retrieve a list of C2 IP addresses","tags":["endpoints"]}}},"servers":[{"url":"https://api.vulncheck.com/v3"},{"url":"https://api.vulncheck.com/v4"}]} \ No newline at end of file diff --git a/poetry.lock b/poetry.lock index b1e10efc..3beed7db 100644 --- a/poetry.lock +++ b/poetry.lock @@ -213,14 +213,14 @@ files = [ [[package]] name = "attrs" -version = "25.4.0" +version = "26.1.0" description = "Classes Without Boilerplate" optional = false python-versions = ">=3.9" groups = ["main"] files = [ - {file = "attrs-25.4.0-py3-none-any.whl", hash = "sha256:adcf7e2a1fb3b36ac48d97835bb6d8ade15b8dcce26aba8bf1d14847b57a3373"}, - {file = "attrs-25.4.0.tar.gz", hash = "sha256:16d5969b87f0859ef33a48b35d55ac1be6e42ae49d5e853b597db70c35c57e11"}, + {file = "attrs-26.1.0-py3-none-any.whl", hash = "sha256:c647aa4a12dfbad9333ca4e71fe62ddc36f4e63b2d260a37a8b83d2f043ac309"}, + {file = "attrs-26.1.0.tar.gz", hash = "sha256:d03ceb89cb322a8fd706d4fb91940737b6642aa36998fe130a9bc96c985eff32"}, ] [[package]] @@ -1304,14 +1304,14 @@ dev = ["argcomplete", "attrs (>=19.2)", "hypothesis (>=3.56)", "mock", "requests [[package]] name = "pytest-cov" -version = "7.0.0" +version = "7.1.0" description = "Pytest plugin for measuring coverage." optional = false python-versions = ">=3.9" groups = ["dev"] files = [ - {file = "pytest_cov-7.0.0-py3-none-any.whl", hash = "sha256:3b8e9558b16cc1479da72058bdecf8073661c7f57f7d3c5f22a1c23507f2d861"}, - {file = "pytest_cov-7.0.0.tar.gz", hash = "sha256:33c97eda2e049a0c5298e91f519302a1334c26ac65c1a483d6206fd458361af1"}, + {file = "pytest_cov-7.1.0-py3-none-any.whl", hash = "sha256:a0461110b7865f9a271aa1b51e516c9a95de9d696734a2f71e3e78f46e1d4678"}, + {file = "pytest_cov-7.1.0.tar.gz", hash = "sha256:30674f2b5f6351aa09702a9c8c364f6a01c27aae0c1366ae8016160d1efc56b2"}, ] [package.dependencies] @@ -1351,60 +1351,60 @@ files = [ [[package]] name = "tomli" -version = "2.4.0" +version = "2.4.1" description = "A lil' TOML parser" optional = false python-versions = ">=3.8" groups = ["dev"] markers = "python_full_version <= \"3.11.0a6\"" files = [ - {file = "tomli-2.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b5ef256a3fd497d4973c11bf142e9ed78b150d36f5773f1ca6088c230ffc5867"}, - {file = "tomli-2.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5572e41282d5268eb09a697c89a7bee84fae66511f87533a6f88bd2f7b652da9"}, - {file = "tomli-2.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:551e321c6ba03b55676970b47cb1b73f14a0a4dce6a3e1a9458fd6d921d72e95"}, - {file = "tomli-2.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5e3f639a7a8f10069d0e15408c0b96a2a828cfdec6fca05296ebcdcc28ca7c76"}, - {file = "tomli-2.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1b168f2731796b045128c45982d3a4874057626da0e2ef1fdd722848b741361d"}, - {file = "tomli-2.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:133e93646ec4300d651839d382d63edff11d8978be23da4cc106f5a18b7d0576"}, - {file = "tomli-2.4.0-cp311-cp311-win32.whl", hash = "sha256:b6c78bdf37764092d369722d9946cb65b8767bfa4110f902a1b2542d8d173c8a"}, - {file = "tomli-2.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:d3d1654e11d724760cdb37a3d7691f0be9db5fbdaef59c9f532aabf87006dbaa"}, - {file = "tomli-2.4.0-cp311-cp311-win_arm64.whl", hash = "sha256:cae9c19ed12d4e8f3ebf46d1a75090e4c0dc16271c5bce1c833ac168f08fb614"}, - {file = "tomli-2.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:920b1de295e72887bafa3ad9f7a792f811847d57ea6b1215154030cf131f16b1"}, - {file = "tomli-2.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7d6d9a4aee98fac3eab4952ad1d73aee87359452d1c086b5ceb43ed02ddb16b8"}, - {file = "tomli-2.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:36b9d05b51e65b254ea6c2585b59d2c4cb91c8a3d91d0ed0f17591a29aaea54a"}, - {file = "tomli-2.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1c8a885b370751837c029ef9bc014f27d80840e48bac415f3412e6593bbc18c1"}, - {file = "tomli-2.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8768715ffc41f0008abe25d808c20c3d990f42b6e2e58305d5da280ae7d1fa3b"}, - {file = "tomli-2.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:7b438885858efd5be02a9a133caf5812b8776ee0c969fea02c45e8e3f296ba51"}, - {file = "tomli-2.4.0-cp312-cp312-win32.whl", hash = "sha256:0408e3de5ec77cc7f81960c362543cbbd91ef883e3138e81b729fc3eea5b9729"}, - {file = "tomli-2.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:685306e2cc7da35be4ee914fd34ab801a6acacb061b6a7abca922aaf9ad368da"}, - {file = "tomli-2.4.0-cp312-cp312-win_arm64.whl", hash = "sha256:5aa48d7c2356055feef06a43611fc401a07337d5b006be13a30f6c58f869e3c3"}, - {file = "tomli-2.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:84d081fbc252d1b6a982e1870660e7330fb8f90f676f6e78b052ad4e64714bf0"}, - {file = "tomli-2.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:9a08144fa4cba33db5255f9b74f0b89888622109bd2776148f2597447f92a94e"}, - {file = "tomli-2.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c73add4bb52a206fd0c0723432db123c0c75c280cbd67174dd9d2db228ebb1b4"}, - {file = "tomli-2.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1fb2945cbe303b1419e2706e711b7113da57b7db31ee378d08712d678a34e51e"}, - {file = "tomli-2.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:bbb1b10aa643d973366dc2cb1ad94f99c1726a02343d43cbc011edbfac579e7c"}, - {file = "tomli-2.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4cbcb367d44a1f0c2be408758b43e1ffb5308abe0ea222897d6bfc8e8281ef2f"}, - {file = "tomli-2.4.0-cp313-cp313-win32.whl", hash = "sha256:7d49c66a7d5e56ac959cb6fc583aff0651094ec071ba9ad43df785abc2320d86"}, - {file = "tomli-2.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:3cf226acb51d8f1c394c1b310e0e0e61fecdd7adcb78d01e294ac297dd2e7f87"}, - {file = "tomli-2.4.0-cp313-cp313-win_arm64.whl", hash = "sha256:d20b797a5c1ad80c516e41bc1fb0443ddb5006e9aaa7bda2d71978346aeb9132"}, - {file = "tomli-2.4.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:26ab906a1eb794cd4e103691daa23d95c6919cc2fa9160000ac02370cc9dd3f6"}, - {file = "tomli-2.4.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:20cedb4ee43278bc4f2fee6cb50daec836959aadaf948db5172e776dd3d993fc"}, - {file = "tomli-2.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:39b0b5d1b6dd03684b3fb276407ebed7090bbec989fa55838c98560c01113b66"}, - {file = "tomli-2.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a26d7ff68dfdb9f87a016ecfd1e1c2bacbe3108f4e0f8bcd2228ef9a766c787d"}, - {file = "tomli-2.4.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:20ffd184fb1df76a66e34bd1b36b4a4641bd2b82954befa32fe8163e79f1a702"}, - {file = "tomli-2.4.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:75c2f8bbddf170e8effc98f5e9084a8751f8174ea6ccf4fca5398436e0320bc8"}, - {file = "tomli-2.4.0-cp314-cp314-win32.whl", hash = "sha256:31d556d079d72db7c584c0627ff3a24c5d3fb4f730221d3444f3efb1b2514776"}, - {file = "tomli-2.4.0-cp314-cp314-win_amd64.whl", hash = "sha256:43e685b9b2341681907759cf3a04e14d7104b3580f808cfde1dfdb60ada85475"}, - {file = "tomli-2.4.0-cp314-cp314-win_arm64.whl", hash = "sha256:3d895d56bd3f82ddd6faaff993c275efc2ff38e52322ea264122d72729dca2b2"}, - {file = "tomli-2.4.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:5b5807f3999fb66776dbce568cc9a828544244a8eb84b84b9bafc080c99597b9"}, - {file = "tomli-2.4.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:c084ad935abe686bd9c898e62a02a19abfc9760b5a79bc29644463eaf2840cb0"}, - {file = "tomli-2.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0f2e3955efea4d1cfbcb87bc321e00dc08d2bcb737fd1d5e398af111d86db5df"}, - {file = "tomli-2.4.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0e0fe8a0b8312acf3a88077a0802565cb09ee34107813bba1c7cd591fa6cfc8d"}, - {file = "tomli-2.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:413540dce94673591859c4c6f794dfeaa845e98bf35d72ed59636f869ef9f86f"}, - {file = "tomli-2.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:0dc56fef0e2c1c470aeac5b6ca8cc7b640bb93e92d9803ddaf9ea03e198f5b0b"}, - {file = "tomli-2.4.0-cp314-cp314t-win32.whl", hash = "sha256:d878f2a6707cc9d53a1be1414bbb419e629c3d6e67f69230217bb663e76b5087"}, - {file = "tomli-2.4.0-cp314-cp314t-win_amd64.whl", hash = "sha256:2add28aacc7425117ff6364fe9e06a183bb0251b03f986df0e78e974047571fd"}, - {file = "tomli-2.4.0-cp314-cp314t-win_arm64.whl", hash = "sha256:2b1e3b80e1d5e52e40e9b924ec43d81570f0e7d09d11081b797bc4692765a3d4"}, - {file = "tomli-2.4.0-py3-none-any.whl", hash = "sha256:1f776e7d669ebceb01dee46484485f43a4048746235e683bcdffacdf1fb4785a"}, - {file = "tomli-2.4.0.tar.gz", hash = "sha256:aa89c3f6c277dd275d8e243ad24f3b5e701491a860d5121f2cdd399fbb31fc9c"}, + {file = "tomli-2.4.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f8f0fc26ec2cc2b965b7a3b87cd19c5c6b8c5e5f436b984e85f486d652285c30"}, + {file = "tomli-2.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4ab97e64ccda8756376892c53a72bd1f964e519c77236368527f758fbc36a53a"}, + {file = "tomli-2.4.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:96481a5786729fd470164b47cdb3e0e58062a496f455ee41b4403be77cb5a076"}, + {file = "tomli-2.4.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5a881ab208c0baf688221f8cecc5401bd291d67e38a1ac884d6736cbcd8247e9"}, + {file = "tomli-2.4.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:47149d5bd38761ac8be13a84864bf0b7b70bc051806bc3669ab1cbc56216b23c"}, + {file = "tomli-2.4.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:ec9bfaf3ad2df51ace80688143a6a4ebc09a248f6ff781a9945e51937008fcbc"}, + {file = "tomli-2.4.1-cp311-cp311-win32.whl", hash = "sha256:ff2983983d34813c1aeb0fa89091e76c3a22889ee83ab27c5eeb45100560c049"}, + {file = "tomli-2.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:5ee18d9ebdb417e384b58fe414e8d6af9f4e7a0ae761519fb50f721de398dd4e"}, + {file = "tomli-2.4.1-cp311-cp311-win_arm64.whl", hash = "sha256:c2541745709bad0264b7d4705ad453b76ccd191e64aa6f0fc66b69a293a45ece"}, + {file = "tomli-2.4.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:c742f741d58a28940ce01d58f0ab2ea3ced8b12402f162f4d534dfe18ba1cd6a"}, + {file = "tomli-2.4.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7f86fd587c4ed9dd76f318225e7d9b29cfc5a9d43de44e5754db8d1128487085"}, + {file = "tomli-2.4.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ff18e6a727ee0ab0388507b89d1bc6a22b138d1e2fa56d1ad494586d61d2eae9"}, + {file = "tomli-2.4.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:136443dbd7e1dee43c68ac2694fde36b2849865fa258d39bf822c10e8068eac5"}, + {file = "tomli-2.4.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:5e262d41726bc187e69af7825504c933b6794dc3fbd5945e41a79bb14c31f585"}, + {file = "tomli-2.4.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:5cb41aa38891e073ee49d55fbc7839cfdb2bc0e600add13874d048c94aadddd1"}, + {file = "tomli-2.4.1-cp312-cp312-win32.whl", hash = "sha256:da25dc3563bff5965356133435b757a795a17b17d01dbc0f42fb32447ddfd917"}, + {file = "tomli-2.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:52c8ef851d9a240f11a88c003eacb03c31fc1c9c4ec64a99a0f922b93874fda9"}, + {file = "tomli-2.4.1-cp312-cp312-win_arm64.whl", hash = "sha256:f758f1b9299d059cc3f6546ae2af89670cb1c4d48ea29c3cacc4fe7de3058257"}, + {file = "tomli-2.4.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:36d2bd2ad5fb9eaddba5226aa02c8ec3fa4f192631e347b3ed28186d43be6b54"}, + {file = "tomli-2.4.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:eb0dc4e38e6a1fd579e5d50369aa2e10acfc9cace504579b2faabb478e76941a"}, + {file = "tomli-2.4.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c7f2c7f2b9ca6bdeef8f0fa897f8e05085923eb091721675170254cbc5b02897"}, + {file = "tomli-2.4.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f3c6818a1a86dd6dca7ddcaaf76947d5ba31aecc28cb1b67009a5877c9a64f3f"}, + {file = "tomli-2.4.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:d312ef37c91508b0ab2cee7da26ec0b3ed2f03ce12bd87a588d771ae15dcf82d"}, + {file = "tomli-2.4.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:51529d40e3ca50046d7606fa99ce3956a617f9b36380da3b7f0dd3dd28e68cb5"}, + {file = "tomli-2.4.1-cp313-cp313-win32.whl", hash = "sha256:2190f2e9dd7508d2a90ded5ed369255980a1bcdd58e52f7fe24b8162bf9fedbd"}, + {file = "tomli-2.4.1-cp313-cp313-win_amd64.whl", hash = "sha256:8d65a2fbf9d2f8352685bc1364177ee3923d6baf5e7f43ea4959d7d8bc326a36"}, + {file = "tomli-2.4.1-cp313-cp313-win_arm64.whl", hash = "sha256:4b605484e43cdc43f0954ddae319fb75f04cc10dd80d830540060ee7cd0243cd"}, + {file = "tomli-2.4.1-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:fd0409a3653af6c147209d267a0e4243f0ae46b011aa978b1080359fddc9b6cf"}, + {file = "tomli-2.4.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:a120733b01c45e9a0c34aeef92bf0cf1d56cfe81ed9d47d562f9ed591a9828ac"}, + {file = "tomli-2.4.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:559db847dc486944896521f68d8190be1c9e719fced785720d2216fe7022b662"}, + {file = "tomli-2.4.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:01f520d4f53ef97964a240a035ec2a869fe1a37dde002b57ebc4417a27ccd853"}, + {file = "tomli-2.4.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:7f94b27a62cfad8496c8d2513e1a222dd446f095fca8987fceef261225538a15"}, + {file = "tomli-2.4.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:ede3e6487c5ef5d28634ba3f31f989030ad6af71edfb0055cbbd14189ff240ba"}, + {file = "tomli-2.4.1-cp314-cp314-win32.whl", hash = "sha256:3d48a93ee1c9b79c04bb38772ee1b64dcf18ff43085896ea460ca8dec96f35f6"}, + {file = "tomli-2.4.1-cp314-cp314-win_amd64.whl", hash = "sha256:88dceee75c2c63af144e456745e10101eb67361050196b0b6af5d717254dddf7"}, + {file = "tomli-2.4.1-cp314-cp314-win_arm64.whl", hash = "sha256:b8c198f8c1805dc42708689ed6864951fd2494f924149d3e4bce7710f8eb5232"}, + {file = "tomli-2.4.1-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:d4d8fe59808a54658fcc0160ecfb1b30f9089906c50b23bcb4c69eddc19ec2b4"}, + {file = "tomli-2.4.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:7008df2e7655c495dd12d2a4ad038ff878d4ca4b81fccaf82b714e07eae4402c"}, + {file = "tomli-2.4.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1d8591993e228b0c930c4bb0db464bdad97b3289fb981255d6c9a41aedc84b2d"}, + {file = "tomli-2.4.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:734e20b57ba95624ecf1841e72b53f6e186355e216e5412de414e3c51e5e3c41"}, + {file = "tomli-2.4.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:8a650c2dbafa08d42e51ba0b62740dae4ecb9338eefa093aa5c78ceb546fcd5c"}, + {file = "tomli-2.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:504aa796fe0569bb43171066009ead363de03675276d2d121ac1a4572397870f"}, + {file = "tomli-2.4.1-cp314-cp314t-win32.whl", hash = "sha256:b1d22e6e9387bf4739fbe23bfa80e93f6b0373a7f1b96c6227c32bef95a4d7a8"}, + {file = "tomli-2.4.1-cp314-cp314t-win_amd64.whl", hash = "sha256:2c1c351919aca02858f740c6d33adea0c5deea37f9ecca1cc1ef9e884a619d26"}, + {file = "tomli-2.4.1-cp314-cp314t-win_arm64.whl", hash = "sha256:eab21f45c7f66c13f2a9e0e1535309cee140182a9cdae1e041d02e47291e8396"}, + {file = "tomli-2.4.1-py3-none-any.whl", hash = "sha256:0d85819802132122da43cb86656f8d1f8c6587d54ae7dcaf30e90533028b49fe"}, + {file = "tomli-2.4.1.tar.gz", hash = "sha256:7c7e1a961a0b2f2472c1ac5b69affa0ae1132c39adcb67aba98568702b9cc23f"}, ] [[package]] diff --git a/pyproject.toml b/pyproject.toml index 6f4778eb..cfcbae2d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "vulncheck_sdk" -version = "0.0.42" +version = "0.0.43" description = "VulnCheck API" authors = [ {name = "VulnCheck API Support",email = "support@vulncheck.com"}, diff --git a/python-generator-config.yaml b/python-generator-config.yaml index 595c5b23..d7f95cbc 100644 --- a/python-generator-config.yaml +++ b/python-generator-config.yaml @@ -2,4 +2,4 @@ additionalProperties: projectName: "vulncheck-sdk" packageName: "vulncheck_sdk" packageUrl: "https://github.com/vulncheck-oss/sdk-python/tree/main" - packageVersion: "0.0.42" + packageVersion: "0.0.43" diff --git a/setup.py b/setup.py index b4122eac..ac38a3b7 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ # prerequisite: setuptools # http://pypi.python.org/pypi/setuptools NAME = "vulncheck-sdk" -VERSION = "0.0.42" +VERSION = "0.0.43" PYTHON_REQUIRES = ">= 3.9" REQUIRES = [ "aiohttp_retry >= 2.8.3", diff --git a/test/aio/test_advisory_apache_arrow.py b/test/aio/test_advisory_apache_arrow.py index 8f35dc8a..d8b1f6dd 100644 --- a/test/aio/test_advisory_apache_arrow.py +++ b/test/aio/test_advisory_apache_arrow.py @@ -42,6 +42,7 @@ def make_instance(self, include_optional) -> AdvisoryApacheArrow: date_added = '', summary = '', title = '', + updated_at = '', url = '' ) else: diff --git a/test/aio/test_advisory_apache_superset.py b/test/aio/test_advisory_apache_superset.py index 6005c607..d67ea31b 100644 --- a/test/aio/test_advisory_apache_superset.py +++ b/test/aio/test_advisory_apache_superset.py @@ -42,6 +42,7 @@ def make_instance(self, include_optional) -> AdvisoryApacheSuperset: ], date_added = '', title = '', + updated_at = '', url = '' ) else: diff --git a/test/aio/test_advisory_asrg.py b/test/aio/test_advisory_asrg.py index 58a4513b..d39e68f6 100644 --- a/test/aio/test_advisory_asrg.py +++ b/test/aio/test_advisory_asrg.py @@ -49,6 +49,7 @@ def make_instance(self, include_optional) -> AdvisoryASRG: '' ], title = '', + updated_at = '', url = '' ) else: diff --git a/test/aio/test_advisory_cisa_alert.py b/test/aio/test_advisory_cisa_alert.py index da043ed1..0a4a4497 100644 --- a/test/aio/test_advisory_cisa_alert.py +++ b/test/aio/test_advisory_cisa_alert.py @@ -39,20 +39,19 @@ def make_instance(self, include_optional) -> AdvisoryCISAAlert: affected_products = '', alert_id = '', archived = True, - cve = [ - '' - ], - cveexploited_itw = True, + cve_exploited_itw = True, cvss = '', - date_added = '', - icsa = True, icsma = True, mitigations = '', release_date = '', title = '', - updated_at = '', url = '', - vendor = '' + vendor = '', + cve = [ + '' + ], + date_added = '', + updated_at = '' ) else: return AdvisoryCISAAlert( diff --git a/test/aio/test_advisory_custom_cpe.py b/test/aio/test_advisory_custom_cpe.py new file mode 100644 index 00000000..843145c0 --- /dev/null +++ b/test/aio/test_advisory_custom_cpe.py @@ -0,0 +1,70 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest + +from vulncheck_sdk.aio.models.advisory_custom_cpe import AdvisoryCustomCPE + +class TestAdvisoryCustomCPE(unittest.TestCase): + """AdvisoryCustomCPE unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> AdvisoryCustomCPE: + """Test AdvisoryCustomCPE + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included """ + # uncomment below to create an instance of `AdvisoryCustomCPE` + """ + model = AdvisoryCustomCPE() + if include_optional: + return AdvisoryCustomCPE( + mcpeapplicability = vulncheck_sdk.aio.models.advisory/mcpe_applicability.advisory.MCPEApplicability( + negate = True, + nodes = [ + vulncheck_sdk.aio.models.advisory/m_nodes.advisory.MNodes( + cpe_match = [ + vulncheck_sdk.aio.models.advisory/mcpe_match.advisory.MCPEMatch( + criteria = '', + match_criteria_id = '', + version_end_excluding = '', + version_end_including = '', + version_start_excluding = '', + version_start_including = '', + vulnerable = True, ) + ], + negate = True, + operator = '', ) + ], + operator = '', ), + string_value = '' + ) + else: + return AdvisoryCustomCPE( + ) + """ + + def testAdvisoryCustomCPE(self): + """Test AdvisoryCustomCPE""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + +if __name__ == '__main__': + unittest.main() diff --git a/test/aio/test_advisory_fastly.py b/test/aio/test_advisory_fastly.py index 82cdcc63..9f549feb 100644 --- a/test/aio/test_advisory_fastly.py +++ b/test/aio/test_advisory_fastly.py @@ -42,6 +42,7 @@ def make_instance(self, include_optional) -> AdvisoryFastly: date_added = '', summary = '', title = '', + updated_at = '', url = '' ) else: diff --git a/test/aio/test_advisory_haskell_sadb_advisory.py b/test/aio/test_advisory_haskell_sadb_advisory.py index c47e769d..058c8786 100644 --- a/test/aio/test_advisory_haskell_sadb_advisory.py +++ b/test/aio/test_advisory_haskell_sadb_advisory.py @@ -74,7 +74,8 @@ def make_instance(self, include_optional) -> AdvisoryHaskellSADBAdvisory: }, related_vulns = [ '' - ] + ], + updated_at = '' ) else: return AdvisoryHaskellSADBAdvisory( diff --git a/test/aio/test_advisory_m_cna.py b/test/aio/test_advisory_m_cna.py index 0034470b..a3c418a8 100644 --- a/test/aio/test_advisory_m_cna.py +++ b/test/aio/test_advisory_m_cna.py @@ -61,24 +61,26 @@ def make_instance(self, include_optional) -> AdvisoryMCna: ], ) ], cpe_applicability = [ - vulncheck_sdk.aio.models.advisory/mcpe_applicability.advisory.MCPEApplicability( - negate = True, - nodes = [ - vulncheck_sdk.aio.models.advisory/m_nodes.advisory.MNodes( - cpe_match = [ - vulncheck_sdk.aio.models.advisory/mcpe_match.advisory.MCPEMatch( - criteria = '', - match_criteria_id = '', - version_end_excluding = '', - version_end_including = '', - version_start_excluding = '', - version_start_including = '', - vulnerable = True, ) - ], - negate = True, - operator = '', ) - ], - operator = '', ) + vulncheck_sdk.aio.models.advisory/custom_cpe.advisory.CustomCPE( + mcpeapplicability = vulncheck_sdk.aio.models.advisory/mcpe_applicability.advisory.MCPEApplicability( + negate = True, + nodes = [ + vulncheck_sdk.aio.models.advisory/m_nodes.advisory.MNodes( + cpe_match = [ + vulncheck_sdk.aio.models.advisory/mcpe_match.advisory.MCPEMatch( + criteria = '', + match_criteria_id = '', + version_end_excluding = '', + version_end_including = '', + version_start_excluding = '', + version_start_including = '', + vulnerable = True, ) + ], + negate = True, + operator = '', ) + ], + operator = '', ), + string_value = '', ) ], credits = [ vulncheck_sdk.aio.models.advisory/credit.advisory.Credit( diff --git a/test/aio/test_advisory_m_containers.py b/test/aio/test_advisory_m_containers.py index e359fdea..b7fe2ba0 100644 --- a/test/aio/test_advisory_m_containers.py +++ b/test/aio/test_advisory_m_containers.py @@ -188,24 +188,26 @@ def make_instance(self, include_optional) -> AdvisoryMContainers: ], ) ], cpe_applicability = [ - vulncheck_sdk.aio.models.advisory/mcpe_applicability.advisory.MCPEApplicability( - negate = True, - nodes = [ - vulncheck_sdk.aio.models.advisory/m_nodes.advisory.MNodes( - cpe_match = [ - vulncheck_sdk.aio.models.advisory/mcpe_match.advisory.MCPEMatch( - criteria = '', - match_criteria_id = '', - version_end_excluding = '', - version_end_including = '', - version_start_excluding = '', - version_start_including = '', - vulnerable = True, ) - ], - negate = True, - operator = '', ) - ], - operator = '', ) + vulncheck_sdk.aio.models.advisory/custom_cpe.advisory.CustomCPE( + mcpeapplicability = vulncheck_sdk.aio.models.advisory/mcpe_applicability.advisory.MCPEApplicability( + negate = True, + nodes = [ + vulncheck_sdk.aio.models.advisory/m_nodes.advisory.MNodes( + cpe_match = [ + vulncheck_sdk.aio.models.advisory/mcpe_match.advisory.MCPEMatch( + criteria = '', + match_criteria_id = '', + version_end_excluding = '', + version_end_including = '', + version_start_excluding = '', + version_start_including = '', + vulnerable = True, ) + ], + negate = True, + operator = '', ) + ], + operator = '', ), + string_value = '', ) ], credits = [ vulncheck_sdk.aio.models.advisory/credit.advisory.Credit( diff --git a/test/aio/test_advisory_ma_cert.py b/test/aio/test_advisory_ma_cert.py index 2c02e569..fcedbc93 100644 --- a/test/aio/test_advisory_ma_cert.py +++ b/test/aio/test_advisory_ma_cert.py @@ -51,6 +51,7 @@ def make_instance(self, include_optional) -> AdvisoryMACert: risks_fr = '', solution_fr = '', title_fr = '', + updated_at = '', url = '' ) else: diff --git a/test/aio/test_advisory_malicious_vs_code_exts.py b/test/aio/test_advisory_malicious_vs_code_exts.py new file mode 100644 index 00000000..346f62ec --- /dev/null +++ b/test/aio/test_advisory_malicious_vs_code_exts.py @@ -0,0 +1,58 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest + +from vulncheck_sdk.aio.models.advisory_malicious_vs_code_exts import AdvisoryMaliciousVSCodeExts + +class TestAdvisoryMaliciousVSCodeExts(unittest.TestCase): + """AdvisoryMaliciousVSCodeExts unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> AdvisoryMaliciousVSCodeExts: + """Test AdvisoryMaliciousVSCodeExts + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included """ + # uncomment below to create an instance of `AdvisoryMaliciousVSCodeExts` + """ + model = AdvisoryMaliciousVSCodeExts() + if include_optional: + return AdvisoryMaliciousVSCodeExts( + date_added = '', + name = '', + publisher = '', + type = '', + updated_at = '', + url = '', + version = '' + ) + else: + return AdvisoryMaliciousVSCodeExts( + ) + """ + + def testAdvisoryMaliciousVSCodeExts(self): + """Test AdvisoryMaliciousVSCodeExts""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + +if __name__ == '__main__': + unittest.main() diff --git a/test/aio/test_advisory_mitre_cve_list_v5.py b/test/aio/test_advisory_mitre_cve_list_v5.py index 02c6eadd..ae17708b 100644 --- a/test/aio/test_advisory_mitre_cve_list_v5.py +++ b/test/aio/test_advisory_mitre_cve_list_v5.py @@ -170,24 +170,26 @@ def make_instance(self, include_optional) -> AdvisoryMitreCVEListV5: ], cna = vulncheck_sdk.aio.models.advisory/m_cna.advisory.MCna( cpe_applicability = [ - vulncheck_sdk.aio.models.advisory/mcpe_applicability.advisory.MCPEApplicability( - negate = True, - nodes = [ - vulncheck_sdk.aio.models.advisory/m_nodes.advisory.MNodes( - cpe_match = [ - vulncheck_sdk.aio.models.advisory/mcpe_match.advisory.MCPEMatch( - criteria = '', - match_criteria_id = '', - version_end_excluding = '', - version_end_including = '', - version_start_excluding = '', - version_start_including = '', - vulnerable = True, ) - ], - negate = True, - operator = '', ) - ], - operator = '', ) + vulncheck_sdk.aio.models.advisory/custom_cpe.advisory.CustomCPE( + mcpeapplicability = vulncheck_sdk.aio.models.advisory/mcpe_applicability.advisory.MCPEApplicability( + negate = True, + nodes = [ + vulncheck_sdk.aio.models.advisory/m_nodes.advisory.MNodes( + cpe_match = [ + vulncheck_sdk.aio.models.advisory/mcpe_match.advisory.MCPEMatch( + criteria = '', + match_criteria_id = '', + version_end_excluding = '', + version_end_including = '', + version_start_excluding = '', + version_start_including = '', + vulnerable = True, ) + ], + negate = True, + operator = '', ) + ], + operator = '', ), + string_value = '', ) ], credits = [ vulncheck_sdk.aio.models.advisory/credit.advisory.Credit( diff --git a/test/aio/test_advisory_mitre_cve_list_v5_ref.py b/test/aio/test_advisory_mitre_cve_list_v5_ref.py index 153bbf3c..0e04ac9e 100644 --- a/test/aio/test_advisory_mitre_cve_list_v5_ref.py +++ b/test/aio/test_advisory_mitre_cve_list_v5_ref.py @@ -165,24 +165,26 @@ def make_instance(self, include_optional) -> AdvisoryMitreCVEListV5Ref: ], cna = vulncheck_sdk.aio.models.advisory/m_cna.advisory.MCna( cpe_applicability = [ - vulncheck_sdk.aio.models.advisory/mcpe_applicability.advisory.MCPEApplicability( - negate = True, - nodes = [ - vulncheck_sdk.aio.models.advisory/m_nodes.advisory.MNodes( - cpe_match = [ - vulncheck_sdk.aio.models.advisory/mcpe_match.advisory.MCPEMatch( - criteria = '', - match_criteria_id = '', - version_end_excluding = '', - version_end_including = '', - version_start_excluding = '', - version_start_including = '', - vulnerable = True, ) - ], - negate = True, - operator = '', ) - ], - operator = '', ) + vulncheck_sdk.aio.models.advisory/custom_cpe.advisory.CustomCPE( + mcpeapplicability = vulncheck_sdk.aio.models.advisory/mcpe_applicability.advisory.MCPEApplicability( + negate = True, + nodes = [ + vulncheck_sdk.aio.models.advisory/m_nodes.advisory.MNodes( + cpe_match = [ + vulncheck_sdk.aio.models.advisory/mcpe_match.advisory.MCPEMatch( + criteria = '', + match_criteria_id = '', + version_end_excluding = '', + version_end_including = '', + version_start_excluding = '', + version_start_including = '', + vulnerable = True, ) + ], + negate = True, + operator = '', ) + ], + operator = '', ), + string_value = '', ) ], credits = [ vulncheck_sdk.aio.models.advisory/credit.advisory.Credit( diff --git a/test/aio/test_advisory_ni.py b/test/aio/test_advisory_ni.py index a4059339..bd899c69 100644 --- a/test/aio/test_advisory_ni.py +++ b/test/aio/test_advisory_ni.py @@ -45,6 +45,7 @@ def make_instance(self, include_optional) -> AdvisoryNI: '' ], title = '', + updated_at = '', url = '' ) else: diff --git a/test/aio/test_advisory_panasonic.py b/test/aio/test_advisory_panasonic.py index 90ea3bea..08a13f11 100644 --- a/test/aio/test_advisory_panasonic.py +++ b/test/aio/test_advisory_panasonic.py @@ -42,6 +42,7 @@ def make_instance(self, include_optional) -> AdvisoryPanasonic: date_added = '', summary = '', title = '', + updated_at = '', url = '' ) else: diff --git a/test/aio/test_advisory_qualys.py b/test/aio/test_advisory_qualys.py index a1163e9e..dbc3f5e0 100644 --- a/test/aio/test_advisory_qualys.py +++ b/test/aio/test_advisory_qualys.py @@ -44,6 +44,7 @@ def make_instance(self, include_optional) -> AdvisoryQualys: '' ], title = '', + updated_at = '', url = '' ) else: diff --git a/test/aio/test_advisory_samba.py b/test/aio/test_advisory_samba.py index 93193c44..7b0fcd4f 100644 --- a/test/aio/test_advisory_samba.py +++ b/test/aio/test_advisory_samba.py @@ -47,7 +47,9 @@ def make_instance(self, include_optional) -> AdvisorySamba: ], references = [ '' - ] + ], + updated_at = '', + url = '' ) else: return AdvisorySamba( diff --git a/test/aio/test_advisory_ssd_advisory.py b/test/aio/test_advisory_ssd_advisory.py index fae5b14f..da5a9d42 100644 --- a/test/aio/test_advisory_ssd_advisory.py +++ b/test/aio/test_advisory_ssd_advisory.py @@ -47,7 +47,8 @@ def make_instance(self, include_optional) -> AdvisorySSDAdvisory: published = '', response_ref = '', summary = '', - title = '' + title = '', + updated_at = '' ) else: return AdvisorySSDAdvisory( diff --git a/test/aio/test_advisory_ti.py b/test/aio/test_advisory_ti.py index 604c6db0..78225aaa 100644 --- a/test/aio/test_advisory_ti.py +++ b/test/aio/test_advisory_ti.py @@ -43,6 +43,7 @@ def make_instance(self, include_optional) -> AdvisoryTI: incident_id = '', summary = '', title = '', + updated_at = '', url = '' ) else: diff --git a/test/aio/test_advisory_trane_technology.py b/test/aio/test_advisory_trane_technology.py index f7e0594b..20d373ae 100644 --- a/test/aio/test_advisory_trane_technology.py +++ b/test/aio/test_advisory_trane_technology.py @@ -44,6 +44,7 @@ def make_instance(self, include_optional) -> AdvisoryTraneTechnology: id = '', product = '', summary = '', + updated_at = '', url = '' ) else: diff --git a/test/aio/test_advisory_vuln_check_cve_list_v5.py b/test/aio/test_advisory_vuln_check_cve_list_v5.py index 425e1ae3..787bd8ae 100644 --- a/test/aio/test_advisory_vuln_check_cve_list_v5.py +++ b/test/aio/test_advisory_vuln_check_cve_list_v5.py @@ -170,24 +170,26 @@ def make_instance(self, include_optional) -> AdvisoryVulnCheckCVEListV5: ], cna = vulncheck_sdk.aio.models.advisory/m_cna.advisory.MCna( cpe_applicability = [ - vulncheck_sdk.aio.models.advisory/mcpe_applicability.advisory.MCPEApplicability( - negate = True, - nodes = [ - vulncheck_sdk.aio.models.advisory/m_nodes.advisory.MNodes( - cpe_match = [ - vulncheck_sdk.aio.models.advisory/mcpe_match.advisory.MCPEMatch( - criteria = '', - match_criteria_id = '', - version_end_excluding = '', - version_end_including = '', - version_start_excluding = '', - version_start_including = '', - vulnerable = True, ) - ], - negate = True, - operator = '', ) - ], - operator = '', ) + vulncheck_sdk.aio.models.advisory/custom_cpe.advisory.CustomCPE( + mcpeapplicability = vulncheck_sdk.aio.models.advisory/mcpe_applicability.advisory.MCPEApplicability( + negate = True, + nodes = [ + vulncheck_sdk.aio.models.advisory/m_nodes.advisory.MNodes( + cpe_match = [ + vulncheck_sdk.aio.models.advisory/mcpe_match.advisory.MCPEMatch( + criteria = '', + match_criteria_id = '', + version_end_excluding = '', + version_end_including = '', + version_start_excluding = '', + version_start_including = '', + vulnerable = True, ) + ], + negate = True, + operator = '', ) + ], + operator = '', ), + string_value = '', ) ], credits = [ vulncheck_sdk.aio.models.advisory/credit.advisory.Credit( diff --git a/test/aio/test_advisory_vulnrichment.py b/test/aio/test_advisory_vulnrichment.py index d4a4166f..916654df 100644 --- a/test/aio/test_advisory_vulnrichment.py +++ b/test/aio/test_advisory_vulnrichment.py @@ -91,24 +91,26 @@ def make_instance(self, include_optional) -> AdvisoryVulnrichment: ], cna = vulncheck_sdk.aio.models.advisory/m_cna.advisory.MCna( cpe_applicability = [ - vulncheck_sdk.aio.models.advisory/mcpe_applicability.advisory.MCPEApplicability( - negate = True, - nodes = [ - vulncheck_sdk.aio.models.advisory/m_nodes.advisory.MNodes( - cpe_match = [ - vulncheck_sdk.aio.models.advisory/mcpe_match.advisory.MCPEMatch( - criteria = '', - match_criteria_id = '', - version_end_excluding = '', - version_end_including = '', - version_start_excluding = '', - version_start_including = '', - vulnerable = True, ) - ], - negate = True, - operator = '', ) - ], - operator = '', ) + vulncheck_sdk.aio.models.advisory/custom_cpe.advisory.CustomCPE( + mcpeapplicability = vulncheck_sdk.aio.models.advisory/mcpe_applicability.advisory.MCPEApplicability( + negate = True, + nodes = [ + vulncheck_sdk.aio.models.advisory/m_nodes.advisory.MNodes( + cpe_match = [ + vulncheck_sdk.aio.models.advisory/mcpe_match.advisory.MCPEMatch( + criteria = '', + match_criteria_id = '', + version_end_excluding = '', + version_end_including = '', + version_start_excluding = '', + version_start_including = '', + vulnerable = True, ) + ], + negate = True, + operator = '', ) + ], + operator = '', ), + string_value = '', ) ], credits = [ vulncheck_sdk.aio.models.advisory/credit.advisory.Credit( diff --git a/test/aio/test_advisory_vulnrichment_containers.py b/test/aio/test_advisory_vulnrichment_containers.py index 74b7baa5..ab4601dd 100644 --- a/test/aio/test_advisory_vulnrichment_containers.py +++ b/test/aio/test_advisory_vulnrichment_containers.py @@ -109,24 +109,26 @@ def make_instance(self, include_optional) -> AdvisoryVulnrichmentContainers: ], ) ], cpe_applicability = [ - vulncheck_sdk.aio.models.advisory/mcpe_applicability.advisory.MCPEApplicability( - negate = True, - nodes = [ - vulncheck_sdk.aio.models.advisory/m_nodes.advisory.MNodes( - cpe_match = [ - vulncheck_sdk.aio.models.advisory/mcpe_match.advisory.MCPEMatch( - criteria = '', - match_criteria_id = '', - version_end_excluding = '', - version_end_including = '', - version_start_excluding = '', - version_start_including = '', - vulnerable = True, ) - ], - negate = True, - operator = '', ) - ], - operator = '', ) + vulncheck_sdk.aio.models.advisory/custom_cpe.advisory.CustomCPE( + mcpeapplicability = vulncheck_sdk.aio.models.advisory/mcpe_applicability.advisory.MCPEApplicability( + negate = True, + nodes = [ + vulncheck_sdk.aio.models.advisory/m_nodes.advisory.MNodes( + cpe_match = [ + vulncheck_sdk.aio.models.advisory/mcpe_match.advisory.MCPEMatch( + criteria = '', + match_criteria_id = '', + version_end_excluding = '', + version_end_including = '', + version_start_excluding = '', + version_start_including = '', + vulnerable = True, ) + ], + negate = True, + operator = '', ) + ], + operator = '', ), + string_value = '', ) ], credits = [ vulncheck_sdk.aio.models.advisory/credit.advisory.Credit( diff --git a/test/aio/test_advisory_vulnrichment_cve_ref.py b/test/aio/test_advisory_vulnrichment_cve_ref.py index 1a07b01b..75d18ee8 100644 --- a/test/aio/test_advisory_vulnrichment_cve_ref.py +++ b/test/aio/test_advisory_vulnrichment_cve_ref.py @@ -86,24 +86,26 @@ def make_instance(self, include_optional) -> AdvisoryVulnrichmentCVERef: ], cna = vulncheck_sdk.aio.models.advisory/m_cna.advisory.MCna( cpe_applicability = [ - vulncheck_sdk.aio.models.advisory/mcpe_applicability.advisory.MCPEApplicability( - negate = True, - nodes = [ - vulncheck_sdk.aio.models.advisory/m_nodes.advisory.MNodes( - cpe_match = [ - vulncheck_sdk.aio.models.advisory/mcpe_match.advisory.MCPEMatch( - criteria = '', - match_criteria_id = '', - version_end_excluding = '', - version_end_including = '', - version_start_excluding = '', - version_start_including = '', - vulnerable = True, ) - ], - negate = True, - operator = '', ) - ], - operator = '', ) + vulncheck_sdk.aio.models.advisory/custom_cpe.advisory.CustomCPE( + mcpeapplicability = vulncheck_sdk.aio.models.advisory/mcpe_applicability.advisory.MCPEApplicability( + negate = True, + nodes = [ + vulncheck_sdk.aio.models.advisory/m_nodes.advisory.MNodes( + cpe_match = [ + vulncheck_sdk.aio.models.advisory/mcpe_match.advisory.MCPEMatch( + criteria = '', + match_criteria_id = '', + version_end_excluding = '', + version_end_including = '', + version_start_excluding = '', + version_start_including = '', + vulnerable = True, ) + ], + negate = True, + operator = '', ) + ], + operator = '', ), + string_value = '', ) ], credits = [ vulncheck_sdk.aio.models.advisory/credit.advisory.Credit( diff --git a/test/aio/test_advisory_with_secure.py b/test/aio/test_advisory_with_secure.py index dacc4a30..e5457c4d 100644 --- a/test/aio/test_advisory_with_secure.py +++ b/test/aio/test_advisory_with_secure.py @@ -42,6 +42,7 @@ def make_instance(self, include_optional) -> AdvisoryWithSecure: date_added = '', summary = '', title = '', + updated_at = '', url = '' ) else: diff --git a/test/aio/test_api_initial_access.py b/test/aio/test_api_initial_access.py index 2dd8b050..311f6d52 100644 --- a/test/aio/test_api_initial_access.py +++ b/test/aio/test_api_initial_access.py @@ -60,6 +60,9 @@ def make_instance(self, include_optional) -> ApiInitialAccess: censys_raw_queries = [ '' ], + chain = [ + '' + ], clone_sshurl = '', date_added = '', driftnet_queries = [ @@ -92,6 +95,9 @@ def make_instance(self, include_optional) -> ApiInitialAccess: product = [ '' ], + related = [ + '' + ], shodan_queries = [ '' ], diff --git a/test/aio/test_api_initial_access_artifact.py b/test/aio/test_api_initial_access_artifact.py index 69e8c5c1..2831fdca 100644 --- a/test/aio/test_api_initial_access_artifact.py +++ b/test/aio/test_api_initial_access_artifact.py @@ -58,6 +58,9 @@ def make_instance(self, include_optional) -> ApiInitialAccessArtifact: censys_raw_queries = [ '' ], + chain = [ + '' + ], clone_sshurl = '', date_added = '', driftnet_queries = [ @@ -90,6 +93,9 @@ def make_instance(self, include_optional) -> ApiInitialAccessArtifact: product = [ '' ], + related = [ + '' + ], shodan_queries = [ '' ], diff --git a/test/aio/test_backup_api.py b/test/aio/test_backup_api.py new file mode 100644 index 00000000..e64051ff --- /dev/null +++ b/test/aio/test_backup_api.py @@ -0,0 +1,46 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest + +from vulncheck_sdk.aio.api.backup_api import BackupApi + + +class TestBackupApi(unittest.IsolatedAsyncioTestCase): + """BackupApi unit test stubs""" + + async def asyncSetUp(self) -> None: + self.api = BackupApi() + + async def asyncTearDown(self) -> None: + await self.api.api_client.close() + + async def test_backup_get(self) -> None: + """Test case for backup_get + + List available backups + """ + pass + + async def test_backup_index_get(self) -> None: + """Test case for backup_index_get + + Get backup by feed name + """ + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/test/aio/test_backup_backup_response.py b/test/aio/test_backup_backup_response.py new file mode 100644 index 00000000..c22f8489 --- /dev/null +++ b/test/aio/test_backup_backup_response.py @@ -0,0 +1,56 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest + +from vulncheck_sdk.aio.models.backup_backup_response import BackupBackupResponse + +class TestBackupBackupResponse(unittest.TestCase): + """BackupBackupResponse unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> BackupBackupResponse: + """Test BackupBackupResponse + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included """ + # uncomment below to create an instance of `BackupBackupResponse` + """ + model = BackupBackupResponse() + if include_optional: + return BackupBackupResponse( + available = True, + feed = '', + url = '', + url_direct = '', + url_expires = '' + ) + else: + return BackupBackupResponse( + ) + """ + + def testBackupBackupResponse(self): + """Test BackupBackupResponse""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + +if __name__ == '__main__': + unittest.main() diff --git a/test/aio/test_backup_feed_item.py b/test/aio/test_backup_feed_item.py new file mode 100644 index 00000000..e8e263d6 --- /dev/null +++ b/test/aio/test_backup_feed_item.py @@ -0,0 +1,55 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest + +from vulncheck_sdk.aio.models.backup_feed_item import BackupFeedItem + +class TestBackupFeedItem(unittest.TestCase): + """BackupFeedItem unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> BackupFeedItem: + """Test BackupFeedItem + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included """ + # uncomment below to create an instance of `BackupFeedItem` + """ + model = BackupFeedItem() + if include_optional: + return BackupFeedItem( + available = True, + backup_written_at = '', + href = '', + name = '' + ) + else: + return BackupFeedItem( + ) + """ + + def testBackupFeedItem(self): + """Test BackupFeedItem""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + +if __name__ == '__main__': + unittest.main() diff --git a/test/aio/test_backup_list_backups_response.py b/test/aio/test_backup_list_backups_response.py new file mode 100644 index 00000000..601b2e38 --- /dev/null +++ b/test/aio/test_backup_list_backups_response.py @@ -0,0 +1,58 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest + +from vulncheck_sdk.aio.models.backup_list_backups_response import BackupListBackupsResponse + +class TestBackupListBackupsResponse(unittest.TestCase): + """BackupListBackupsResponse unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> BackupListBackupsResponse: + """Test BackupListBackupsResponse + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included """ + # uncomment below to create an instance of `BackupListBackupsResponse` + """ + model = BackupListBackupsResponse() + if include_optional: + return BackupListBackupsResponse( + data = [ + vulncheck_sdk.aio.models.backup/feed_item.backup.FeedItem( + available = True, + backup_written_at = '', + href = '', + name = '', ) + ] + ) + else: + return BackupListBackupsResponse( + ) + """ + + def testBackupListBackupsResponse(self): + """Test BackupListBackupsResponse""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + +if __name__ == '__main__': + unittest.main() diff --git a/test/aio/test_endpoints_api.py b/test/aio/test_endpoints_api.py index a3726197..c35d4df5 100644 --- a/test/aio/test_endpoints_api.py +++ b/test/aio/test_endpoints_api.py @@ -27,20 +27,6 @@ async def asyncSetUp(self) -> None: async def asyncTearDown(self) -> None: await self.api.api_client.close() - async def test_backup_get(self) -> None: - """Test case for backup_get - - Return a list of indexes with backup and endpoint links - """ - pass - - async def test_backup_index_get(self) -> None: - """Test case for backup_index_get - - Retrieve a list of backups by index - """ - pass - async def test_cpe_get(self) -> None: """Test case for cpe_get diff --git a/test/aio/test_indices_api.py b/test/aio/test_indices_api.py index 731d3350..bde1663e 100644 --- a/test/aio/test_indices_api.py +++ b/test/aio/test_indices_api.py @@ -1861,6 +1861,13 @@ async def test_index_malicious_packages_get(self) -> None: """ pass + async def test_index_malicious_vscode_exts_get(self) -> None: + """Test case for index_malicious_vscode_exts_get + + Return vulnerability data stored in index \"malicious-vscode-exts\" + """ + pass + async def test_index_manageengine_get(self) -> None: """Test case for index_manageengine_get diff --git a/test/aio/test_render_response_with_metadata_array_advisory_apache_arrow_paginate_pagination.py b/test/aio/test_render_response_with_metadata_array_advisory_apache_arrow_paginate_pagination.py index ba005030..7c085915 100644 --- a/test/aio/test_render_response_with_metadata_array_advisory_apache_arrow_paginate_pagination.py +++ b/test/aio/test_render_response_with_metadata_array_advisory_apache_arrow_paginate_pagination.py @@ -79,6 +79,7 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi date_added = '', summary = '', title = '', + updated_at = '', url = '', ) ] ) diff --git a/test/aio/test_render_response_with_metadata_array_advisory_apache_superset_paginate_pagination.py b/test/aio/test_render_response_with_metadata_array_advisory_apache_superset_paginate_pagination.py index 4deccb75..2f33bdd8 100644 --- a/test/aio/test_render_response_with_metadata_array_advisory_apache_superset_paginate_pagination.py +++ b/test/aio/test_render_response_with_metadata_array_advisory_apache_superset_paginate_pagination.py @@ -79,6 +79,7 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi ], date_added = '', title = '', + updated_at = '', url = '', ) ] ) diff --git a/test/aio/test_render_response_with_metadata_array_advisory_asrg_paginate_pagination.py b/test/aio/test_render_response_with_metadata_array_advisory_asrg_paginate_pagination.py index a17e8f17..29d30e20 100644 --- a/test/aio/test_render_response_with_metadata_array_advisory_asrg_paginate_pagination.py +++ b/test/aio/test_render_response_with_metadata_array_advisory_asrg_paginate_pagination.py @@ -86,6 +86,7 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi '' ], title = '', + updated_at = '', url = '', ) ] ) diff --git a/test/aio/test_render_response_with_metadata_array_advisory_cisa_alert_paginate_pagination.py b/test/aio/test_render_response_with_metadata_array_advisory_cisa_alert_paginate_pagination.py index 8dd3fe57..e67e15e7 100644 --- a/test/aio/test_render_response_with_metadata_array_advisory_cisa_alert_paginate_pagination.py +++ b/test/aio/test_render_response_with_metadata_array_advisory_cisa_alert_paginate_pagination.py @@ -76,20 +76,19 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi affected_products = '', alert_id = '', archived = True, - cve = [ - '' - ], - cveexploited_itw = True, + cve_exploited_itw = True, cvss = '', - date_added = '', - icsa = True, icsma = True, mitigations = '', release_date = '', title = '', - updated_at = '', url = '', - vendor = '', ) + vendor = '', + cve = [ + '' + ], + date_added = '', + updated_at = '', ) ] ) else: diff --git a/test/aio/test_render_response_with_metadata_array_advisory_fastly_paginate_pagination.py b/test/aio/test_render_response_with_metadata_array_advisory_fastly_paginate_pagination.py index 0cfd2d09..2710c112 100644 --- a/test/aio/test_render_response_with_metadata_array_advisory_fastly_paginate_pagination.py +++ b/test/aio/test_render_response_with_metadata_array_advisory_fastly_paginate_pagination.py @@ -79,6 +79,7 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi date_added = '', summary = '', title = '', + updated_at = '', url = '', ) ] ) diff --git a/test/aio/test_render_response_with_metadata_array_advisory_haskell_sadb_advisory_paginate_pagination.py b/test/aio/test_render_response_with_metadata_array_advisory_haskell_sadb_advisory_paginate_pagination.py index eec441e9..4d7078c3 100644 --- a/test/aio/test_render_response_with_metadata_array_advisory_haskell_sadb_advisory_paginate_pagination.py +++ b/test/aio/test_render_response_with_metadata_array_advisory_haskell_sadb_advisory_paginate_pagination.py @@ -111,7 +111,8 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi }, related_vulns = [ '' - ], ) + ], + updated_at = '', ) ] ) else: diff --git a/test/aio/test_render_response_with_metadata_array_advisory_ma_cert_paginate_pagination.py b/test/aio/test_render_response_with_metadata_array_advisory_ma_cert_paginate_pagination.py index a9a44173..8b3970f2 100644 --- a/test/aio/test_render_response_with_metadata_array_advisory_ma_cert_paginate_pagination.py +++ b/test/aio/test_render_response_with_metadata_array_advisory_ma_cert_paginate_pagination.py @@ -88,6 +88,7 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi risks_fr = '', solution_fr = '', title_fr = '', + updated_at = '', url = '', ) ] ) diff --git a/test/aio/test_render_response_with_metadata_array_advisory_malicious_vs_code_exts_paginate_pagination.py b/test/aio/test_render_response_with_metadata_array_advisory_malicious_vs_code_exts_paginate_pagination.py new file mode 100644 index 00000000..95f84727 --- /dev/null +++ b/test/aio/test_render_response_with_metadata_array_advisory_malicious_vs_code_exts_paginate_pagination.py @@ -0,0 +1,96 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest + +from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_malicious_vs_code_exts_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination + +class TestRenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination(unittest.TestCase): + """RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination: + """Test RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included """ + # uncomment below to create an instance of `RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination` + """ + model = RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination() + if include_optional: + return RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination( + benchmark = 1.337, + meta = vulncheck_sdk.aio.models.paginate/pagination.paginate.Pagination( + cursor = '', + first_item = 56, + index = '', + last_item = 56, + limit = 56, + matches = [ + vulncheck_sdk.aio.models.paginate/match.paginate.Match( + field = '', + value = '', ) + ], + max_pages = 56, + next_cursor = '', + opensearch_query = vulncheck_sdk.aio.models.opensearch_query.opensearch_query(), + order = '', + page = 56, + pages = [ + '' + ], + parameters = [ + vulncheck_sdk.aio.models.paginate/param.paginate.Param( + filtering = '', + format = '', + name = '', ) + ], + show_pages = True, + show_query = True, + sort = '', + timestamp = '', + total_documents = 56, + total_pages = 56, + warnings = [ + '' + ], ), + data = [ + vulncheck_sdk.aio.models.advisory/malicious_vs_code_exts.advisory.MaliciousVSCodeExts( + date_added = '', + name = '', + publisher = '', + type = '', + updated_at = '', + url = '', + version = '', ) + ] + ) + else: + return RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination( + ) + """ + + def testRenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination(self): + """Test RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + +if __name__ == '__main__': + unittest.main() diff --git a/test/aio/test_render_response_with_metadata_array_advisory_mitre_cve_list_v5_paginate_pagination.py b/test/aio/test_render_response_with_metadata_array_advisory_mitre_cve_list_v5_paginate_pagination.py index 606c8624..1e08bec4 100644 --- a/test/aio/test_render_response_with_metadata_array_advisory_mitre_cve_list_v5_paginate_pagination.py +++ b/test/aio/test_render_response_with_metadata_array_advisory_mitre_cve_list_v5_paginate_pagination.py @@ -207,24 +207,26 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi ], cna = vulncheck_sdk.aio.models.advisory/m_cna.advisory.MCna( cpe_applicability = [ - vulncheck_sdk.aio.models.advisory/mcpe_applicability.advisory.MCPEApplicability( - negate = True, - nodes = [ - vulncheck_sdk.aio.models.advisory/m_nodes.advisory.MNodes( - cpe_match = [ - vulncheck_sdk.aio.models.advisory/mcpe_match.advisory.MCPEMatch( - criteria = '', - match_criteria_id = '', - version_end_excluding = '', - version_end_including = '', - version_start_excluding = '', - version_start_including = '', - vulnerable = True, ) - ], - negate = True, - operator = '', ) - ], - operator = '', ) + vulncheck_sdk.aio.models.advisory/custom_cpe.advisory.CustomCPE( + mcpeapplicability = vulncheck_sdk.aio.models.advisory/mcpe_applicability.advisory.MCPEApplicability( + negate = True, + nodes = [ + vulncheck_sdk.aio.models.advisory/m_nodes.advisory.MNodes( + cpe_match = [ + vulncheck_sdk.aio.models.advisory/mcpe_match.advisory.MCPEMatch( + criteria = '', + match_criteria_id = '', + version_end_excluding = '', + version_end_including = '', + version_start_excluding = '', + version_start_including = '', + vulnerable = True, ) + ], + negate = True, + operator = '', ) + ], + operator = '', ), + string_value = '', ) ], credits = [ vulncheck_sdk.aio.models.advisory/credit.advisory.Credit( diff --git a/test/aio/test_render_response_with_metadata_array_advisory_ni_paginate_pagination.py b/test/aio/test_render_response_with_metadata_array_advisory_ni_paginate_pagination.py index c955c7e7..cb24512e 100644 --- a/test/aio/test_render_response_with_metadata_array_advisory_ni_paginate_pagination.py +++ b/test/aio/test_render_response_with_metadata_array_advisory_ni_paginate_pagination.py @@ -82,6 +82,7 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi '' ], title = '', + updated_at = '', url = '', ) ] ) diff --git a/test/aio/test_render_response_with_metadata_array_advisory_panasonic_paginate_pagination.py b/test/aio/test_render_response_with_metadata_array_advisory_panasonic_paginate_pagination.py index 337edc87..eec6e5a0 100644 --- a/test/aio/test_render_response_with_metadata_array_advisory_panasonic_paginate_pagination.py +++ b/test/aio/test_render_response_with_metadata_array_advisory_panasonic_paginate_pagination.py @@ -79,6 +79,7 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi date_added = '', summary = '', title = '', + updated_at = '', url = '', ) ] ) diff --git a/test/aio/test_render_response_with_metadata_array_advisory_qualys_paginate_pagination.py b/test/aio/test_render_response_with_metadata_array_advisory_qualys_paginate_pagination.py index bc52e341..cee468bf 100644 --- a/test/aio/test_render_response_with_metadata_array_advisory_qualys_paginate_pagination.py +++ b/test/aio/test_render_response_with_metadata_array_advisory_qualys_paginate_pagination.py @@ -81,6 +81,7 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi '' ], title = '', + updated_at = '', url = '', ) ] ) diff --git a/test/aio/test_render_response_with_metadata_array_advisory_samba_paginate_pagination.py b/test/aio/test_render_response_with_metadata_array_advisory_samba_paginate_pagination.py index f48c2481..049b054f 100644 --- a/test/aio/test_render_response_with_metadata_array_advisory_samba_paginate_pagination.py +++ b/test/aio/test_render_response_with_metadata_array_advisory_samba_paginate_pagination.py @@ -84,7 +84,9 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi ], references = [ '' - ], ) + ], + updated_at = '', + url = '', ) ] ) else: diff --git a/test/aio/test_render_response_with_metadata_array_advisory_ssd_advisory_paginate_pagination.py b/test/aio/test_render_response_with_metadata_array_advisory_ssd_advisory_paginate_pagination.py index 2d6a59f1..3540bea6 100644 --- a/test/aio/test_render_response_with_metadata_array_advisory_ssd_advisory_paginate_pagination.py +++ b/test/aio/test_render_response_with_metadata_array_advisory_ssd_advisory_paginate_pagination.py @@ -84,7 +84,8 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi published = '', response_ref = '', summary = '', - title = '', ) + title = '', + updated_at = '', ) ] ) else: diff --git a/test/aio/test_render_response_with_metadata_array_advisory_ti_paginate_pagination.py b/test/aio/test_render_response_with_metadata_array_advisory_ti_paginate_pagination.py index a8f55462..03f08e15 100644 --- a/test/aio/test_render_response_with_metadata_array_advisory_ti_paginate_pagination.py +++ b/test/aio/test_render_response_with_metadata_array_advisory_ti_paginate_pagination.py @@ -80,6 +80,7 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi incident_id = '', summary = '', title = '', + updated_at = '', url = '', ) ] ) diff --git a/test/aio/test_render_response_with_metadata_array_advisory_trane_technology_paginate_pagination.py b/test/aio/test_render_response_with_metadata_array_advisory_trane_technology_paginate_pagination.py index 1760272e..df412768 100644 --- a/test/aio/test_render_response_with_metadata_array_advisory_trane_technology_paginate_pagination.py +++ b/test/aio/test_render_response_with_metadata_array_advisory_trane_technology_paginate_pagination.py @@ -81,6 +81,7 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi id = '', product = '', summary = '', + updated_at = '', url = '', ) ] ) diff --git a/test/aio/test_render_response_with_metadata_array_advisory_vuln_check_cve_list_v5_paginate_pagination.py b/test/aio/test_render_response_with_metadata_array_advisory_vuln_check_cve_list_v5_paginate_pagination.py index 46809da1..f2f28fc6 100644 --- a/test/aio/test_render_response_with_metadata_array_advisory_vuln_check_cve_list_v5_paginate_pagination.py +++ b/test/aio/test_render_response_with_metadata_array_advisory_vuln_check_cve_list_v5_paginate_pagination.py @@ -207,24 +207,26 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi ], cna = vulncheck_sdk.aio.models.advisory/m_cna.advisory.MCna( cpe_applicability = [ - vulncheck_sdk.aio.models.advisory/mcpe_applicability.advisory.MCPEApplicability( - negate = True, - nodes = [ - vulncheck_sdk.aio.models.advisory/m_nodes.advisory.MNodes( - cpe_match = [ - vulncheck_sdk.aio.models.advisory/mcpe_match.advisory.MCPEMatch( - criteria = '', - match_criteria_id = '', - version_end_excluding = '', - version_end_including = '', - version_start_excluding = '', - version_start_including = '', - vulnerable = True, ) - ], - negate = True, - operator = '', ) - ], - operator = '', ) + vulncheck_sdk.aio.models.advisory/custom_cpe.advisory.CustomCPE( + mcpeapplicability = vulncheck_sdk.aio.models.advisory/mcpe_applicability.advisory.MCPEApplicability( + negate = True, + nodes = [ + vulncheck_sdk.aio.models.advisory/m_nodes.advisory.MNodes( + cpe_match = [ + vulncheck_sdk.aio.models.advisory/mcpe_match.advisory.MCPEMatch( + criteria = '', + match_criteria_id = '', + version_end_excluding = '', + version_end_including = '', + version_start_excluding = '', + version_start_including = '', + vulnerable = True, ) + ], + negate = True, + operator = '', ) + ], + operator = '', ), + string_value = '', ) ], credits = [ vulncheck_sdk.aio.models.advisory/credit.advisory.Credit( diff --git a/test/aio/test_render_response_with_metadata_array_advisory_vulnrichment_paginate_pagination.py b/test/aio/test_render_response_with_metadata_array_advisory_vulnrichment_paginate_pagination.py index 3b81bc0a..a43326d4 100644 --- a/test/aio/test_render_response_with_metadata_array_advisory_vulnrichment_paginate_pagination.py +++ b/test/aio/test_render_response_with_metadata_array_advisory_vulnrichment_paginate_pagination.py @@ -128,24 +128,26 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi ], cna = vulncheck_sdk.aio.models.advisory/m_cna.advisory.MCna( cpe_applicability = [ - vulncheck_sdk.aio.models.advisory/mcpe_applicability.advisory.MCPEApplicability( - negate = True, - nodes = [ - vulncheck_sdk.aio.models.advisory/m_nodes.advisory.MNodes( - cpe_match = [ - vulncheck_sdk.aio.models.advisory/mcpe_match.advisory.MCPEMatch( - criteria = '', - match_criteria_id = '', - version_end_excluding = '', - version_end_including = '', - version_start_excluding = '', - version_start_including = '', - vulnerable = True, ) - ], - negate = True, - operator = '', ) - ], - operator = '', ) + vulncheck_sdk.aio.models.advisory/custom_cpe.advisory.CustomCPE( + mcpeapplicability = vulncheck_sdk.aio.models.advisory/mcpe_applicability.advisory.MCPEApplicability( + negate = True, + nodes = [ + vulncheck_sdk.aio.models.advisory/m_nodes.advisory.MNodes( + cpe_match = [ + vulncheck_sdk.aio.models.advisory/mcpe_match.advisory.MCPEMatch( + criteria = '', + match_criteria_id = '', + version_end_excluding = '', + version_end_including = '', + version_start_excluding = '', + version_start_including = '', + vulnerable = True, ) + ], + negate = True, + operator = '', ) + ], + operator = '', ), + string_value = '', ) ], credits = [ vulncheck_sdk.aio.models.advisory/credit.advisory.Credit( diff --git a/test/aio/test_render_response_with_metadata_array_advisory_with_secure_paginate_pagination.py b/test/aio/test_render_response_with_metadata_array_advisory_with_secure_paginate_pagination.py index 6f8fcc54..0e5eaded 100644 --- a/test/aio/test_render_response_with_metadata_array_advisory_with_secure_paginate_pagination.py +++ b/test/aio/test_render_response_with_metadata_array_advisory_with_secure_paginate_pagination.py @@ -79,6 +79,7 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi date_added = '', summary = '', title = '', + updated_at = '', url = '', ) ] ) diff --git a/test/aio/test_render_response_with_metadata_array_api_initial_access_paginate_pagination.py b/test/aio/test_render_response_with_metadata_array_api_initial_access_paginate_pagination.py index 0f29507c..f98aa141 100644 --- a/test/aio/test_render_response_with_metadata_array_api_initial_access_paginate_pagination.py +++ b/test/aio/test_render_response_with_metadata_array_api_initial_access_paginate_pagination.py @@ -97,6 +97,9 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayApiI censys_raw_queries = [ '' ], + chain = [ + '' + ], clone_sshurl = '', date_added = '', driftnet_queries = [ @@ -129,6 +132,9 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayApiI product = [ '' ], + related = [ + '' + ], shodan_queries = [ '' ], diff --git a/test/aio/test_search_v4_advisory_return_value.py b/test/aio/test_search_v4_advisory_return_value.py index f93d4e18..9c778b89 100644 --- a/test/aio/test_search_v4_advisory_return_value.py +++ b/test/aio/test_search_v4_advisory_return_value.py @@ -175,24 +175,26 @@ def make_instance(self, include_optional) -> SearchV4AdvisoryReturnValue: ], cna = vulncheck_sdk.aio.models.advisory/m_cna.advisory.MCna( cpe_applicability = [ - vulncheck_sdk.aio.models.advisory/mcpe_applicability.advisory.MCPEApplicability( - negate = True, - nodes = [ - vulncheck_sdk.aio.models.advisory/m_nodes.advisory.MNodes( - cpe_match = [ - vulncheck_sdk.aio.models.advisory/mcpe_match.advisory.MCPEMatch( - criteria = '', - match_criteria_id = '', - version_end_excluding = '', - version_end_including = '', - version_start_excluding = '', - version_start_including = '', - vulnerable = True, ) - ], - negate = True, - operator = '', ) - ], - operator = '', ) + vulncheck_sdk.aio.models.advisory/custom_cpe.advisory.CustomCPE( + mcpeapplicability = vulncheck_sdk.aio.models.advisory/mcpe_applicability.advisory.MCPEApplicability( + negate = True, + nodes = [ + vulncheck_sdk.aio.models.advisory/m_nodes.advisory.MNodes( + cpe_match = [ + vulncheck_sdk.aio.models.advisory/mcpe_match.advisory.MCPEMatch( + criteria = '', + match_criteria_id = '', + version_end_excluding = '', + version_end_including = '', + version_start_excluding = '', + version_start_including = '', + vulnerable = True, ) + ], + negate = True, + operator = '', ) + ], + operator = '', ), + string_value = '', ) ], credits = [ vulncheck_sdk.aio.models.advisory/credit.advisory.Credit( diff --git a/test/blocking/test_advisory_apache_arrow.py b/test/blocking/test_advisory_apache_arrow.py index f27bca03..3197b517 100644 --- a/test/blocking/test_advisory_apache_arrow.py +++ b/test/blocking/test_advisory_apache_arrow.py @@ -42,6 +42,7 @@ def make_instance(self, include_optional) -> AdvisoryApacheArrow: date_added = '', summary = '', title = '', + updated_at = '', url = '' ) else: diff --git a/test/blocking/test_advisory_apache_superset.py b/test/blocking/test_advisory_apache_superset.py index ca7c27a4..4c2bb07e 100644 --- a/test/blocking/test_advisory_apache_superset.py +++ b/test/blocking/test_advisory_apache_superset.py @@ -42,6 +42,7 @@ def make_instance(self, include_optional) -> AdvisoryApacheSuperset: ], date_added = '', title = '', + updated_at = '', url = '' ) else: diff --git a/test/blocking/test_advisory_asrg.py b/test/blocking/test_advisory_asrg.py index a68883cc..fc0c66a8 100644 --- a/test/blocking/test_advisory_asrg.py +++ b/test/blocking/test_advisory_asrg.py @@ -49,6 +49,7 @@ def make_instance(self, include_optional) -> AdvisoryASRG: '' ], title = '', + updated_at = '', url = '' ) else: diff --git a/test/blocking/test_advisory_cisa_alert.py b/test/blocking/test_advisory_cisa_alert.py index b982e1b6..1d676e53 100644 --- a/test/blocking/test_advisory_cisa_alert.py +++ b/test/blocking/test_advisory_cisa_alert.py @@ -39,20 +39,19 @@ def make_instance(self, include_optional) -> AdvisoryCISAAlert: affected_products = '', alert_id = '', archived = True, - cve = [ - '' - ], - cveexploited_itw = True, + cve_exploited_itw = True, cvss = '', - date_added = '', - icsa = True, icsma = True, mitigations = '', release_date = '', title = '', - updated_at = '', url = '', - vendor = '' + vendor = '', + cve = [ + '' + ], + date_added = '', + updated_at = '' ) else: return AdvisoryCISAAlert( diff --git a/test/blocking/test_advisory_custom_cpe.py b/test/blocking/test_advisory_custom_cpe.py new file mode 100644 index 00000000..c900fab1 --- /dev/null +++ b/test/blocking/test_advisory_custom_cpe.py @@ -0,0 +1,70 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest + +from vulncheck_sdk.models.advisory_custom_cpe import AdvisoryCustomCPE + +class TestAdvisoryCustomCPE(unittest.TestCase): + """AdvisoryCustomCPE unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> AdvisoryCustomCPE: + """Test AdvisoryCustomCPE + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included """ + # uncomment below to create an instance of `AdvisoryCustomCPE` + """ + model = AdvisoryCustomCPE() + if include_optional: + return AdvisoryCustomCPE( + mcpeapplicability = vulncheck_sdk.models.advisory/mcpe_applicability.advisory.MCPEApplicability( + negate = True, + nodes = [ + vulncheck_sdk.models.advisory/m_nodes.advisory.MNodes( + cpe_match = [ + vulncheck_sdk.models.advisory/mcpe_match.advisory.MCPEMatch( + criteria = '', + match_criteria_id = '', + version_end_excluding = '', + version_end_including = '', + version_start_excluding = '', + version_start_including = '', + vulnerable = True, ) + ], + negate = True, + operator = '', ) + ], + operator = '', ), + string_value = '' + ) + else: + return AdvisoryCustomCPE( + ) + """ + + def testAdvisoryCustomCPE(self): + """Test AdvisoryCustomCPE""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + +if __name__ == '__main__': + unittest.main() diff --git a/test/blocking/test_advisory_fastly.py b/test/blocking/test_advisory_fastly.py index fe75454d..adfa083f 100644 --- a/test/blocking/test_advisory_fastly.py +++ b/test/blocking/test_advisory_fastly.py @@ -42,6 +42,7 @@ def make_instance(self, include_optional) -> AdvisoryFastly: date_added = '', summary = '', title = '', + updated_at = '', url = '' ) else: diff --git a/test/blocking/test_advisory_haskell_sadb_advisory.py b/test/blocking/test_advisory_haskell_sadb_advisory.py index 0de99ef0..0f97c140 100644 --- a/test/blocking/test_advisory_haskell_sadb_advisory.py +++ b/test/blocking/test_advisory_haskell_sadb_advisory.py @@ -74,7 +74,8 @@ def make_instance(self, include_optional) -> AdvisoryHaskellSADBAdvisory: }, related_vulns = [ '' - ] + ], + updated_at = '' ) else: return AdvisoryHaskellSADBAdvisory( diff --git a/test/blocking/test_advisory_m_cna.py b/test/blocking/test_advisory_m_cna.py index aa04dae8..65f4d032 100644 --- a/test/blocking/test_advisory_m_cna.py +++ b/test/blocking/test_advisory_m_cna.py @@ -61,24 +61,26 @@ def make_instance(self, include_optional) -> AdvisoryMCna: ], ) ], cpe_applicability = [ - vulncheck_sdk.models.advisory/mcpe_applicability.advisory.MCPEApplicability( - negate = True, - nodes = [ - vulncheck_sdk.models.advisory/m_nodes.advisory.MNodes( - cpe_match = [ - vulncheck_sdk.models.advisory/mcpe_match.advisory.MCPEMatch( - criteria = '', - match_criteria_id = '', - version_end_excluding = '', - version_end_including = '', - version_start_excluding = '', - version_start_including = '', - vulnerable = True, ) - ], - negate = True, - operator = '', ) - ], - operator = '', ) + vulncheck_sdk.models.advisory/custom_cpe.advisory.CustomCPE( + mcpeapplicability = vulncheck_sdk.models.advisory/mcpe_applicability.advisory.MCPEApplicability( + negate = True, + nodes = [ + vulncheck_sdk.models.advisory/m_nodes.advisory.MNodes( + cpe_match = [ + vulncheck_sdk.models.advisory/mcpe_match.advisory.MCPEMatch( + criteria = '', + match_criteria_id = '', + version_end_excluding = '', + version_end_including = '', + version_start_excluding = '', + version_start_including = '', + vulnerable = True, ) + ], + negate = True, + operator = '', ) + ], + operator = '', ), + string_value = '', ) ], credits = [ vulncheck_sdk.models.advisory/credit.advisory.Credit( diff --git a/test/blocking/test_advisory_m_containers.py b/test/blocking/test_advisory_m_containers.py index 573c3978..01cb5211 100644 --- a/test/blocking/test_advisory_m_containers.py +++ b/test/blocking/test_advisory_m_containers.py @@ -188,24 +188,26 @@ def make_instance(self, include_optional) -> AdvisoryMContainers: ], ) ], cpe_applicability = [ - vulncheck_sdk.models.advisory/mcpe_applicability.advisory.MCPEApplicability( - negate = True, - nodes = [ - vulncheck_sdk.models.advisory/m_nodes.advisory.MNodes( - cpe_match = [ - vulncheck_sdk.models.advisory/mcpe_match.advisory.MCPEMatch( - criteria = '', - match_criteria_id = '', - version_end_excluding = '', - version_end_including = '', - version_start_excluding = '', - version_start_including = '', - vulnerable = True, ) - ], - negate = True, - operator = '', ) - ], - operator = '', ) + vulncheck_sdk.models.advisory/custom_cpe.advisory.CustomCPE( + mcpeapplicability = vulncheck_sdk.models.advisory/mcpe_applicability.advisory.MCPEApplicability( + negate = True, + nodes = [ + vulncheck_sdk.models.advisory/m_nodes.advisory.MNodes( + cpe_match = [ + vulncheck_sdk.models.advisory/mcpe_match.advisory.MCPEMatch( + criteria = '', + match_criteria_id = '', + version_end_excluding = '', + version_end_including = '', + version_start_excluding = '', + version_start_including = '', + vulnerable = True, ) + ], + negate = True, + operator = '', ) + ], + operator = '', ), + string_value = '', ) ], credits = [ vulncheck_sdk.models.advisory/credit.advisory.Credit( diff --git a/test/blocking/test_advisory_ma_cert.py b/test/blocking/test_advisory_ma_cert.py index 176cf849..af04244a 100644 --- a/test/blocking/test_advisory_ma_cert.py +++ b/test/blocking/test_advisory_ma_cert.py @@ -51,6 +51,7 @@ def make_instance(self, include_optional) -> AdvisoryMACert: risks_fr = '', solution_fr = '', title_fr = '', + updated_at = '', url = '' ) else: diff --git a/test/blocking/test_advisory_malicious_vs_code_exts.py b/test/blocking/test_advisory_malicious_vs_code_exts.py new file mode 100644 index 00000000..43a419b2 --- /dev/null +++ b/test/blocking/test_advisory_malicious_vs_code_exts.py @@ -0,0 +1,58 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest + +from vulncheck_sdk.models.advisory_malicious_vs_code_exts import AdvisoryMaliciousVSCodeExts + +class TestAdvisoryMaliciousVSCodeExts(unittest.TestCase): + """AdvisoryMaliciousVSCodeExts unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> AdvisoryMaliciousVSCodeExts: + """Test AdvisoryMaliciousVSCodeExts + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included """ + # uncomment below to create an instance of `AdvisoryMaliciousVSCodeExts` + """ + model = AdvisoryMaliciousVSCodeExts() + if include_optional: + return AdvisoryMaliciousVSCodeExts( + date_added = '', + name = '', + publisher = '', + type = '', + updated_at = '', + url = '', + version = '' + ) + else: + return AdvisoryMaliciousVSCodeExts( + ) + """ + + def testAdvisoryMaliciousVSCodeExts(self): + """Test AdvisoryMaliciousVSCodeExts""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + +if __name__ == '__main__': + unittest.main() diff --git a/test/blocking/test_advisory_mitre_cve_list_v5.py b/test/blocking/test_advisory_mitre_cve_list_v5.py index 3c2c34cd..612980fd 100644 --- a/test/blocking/test_advisory_mitre_cve_list_v5.py +++ b/test/blocking/test_advisory_mitre_cve_list_v5.py @@ -170,24 +170,26 @@ def make_instance(self, include_optional) -> AdvisoryMitreCVEListV5: ], cna = vulncheck_sdk.models.advisory/m_cna.advisory.MCna( cpe_applicability = [ - vulncheck_sdk.models.advisory/mcpe_applicability.advisory.MCPEApplicability( - negate = True, - nodes = [ - vulncheck_sdk.models.advisory/m_nodes.advisory.MNodes( - cpe_match = [ - vulncheck_sdk.models.advisory/mcpe_match.advisory.MCPEMatch( - criteria = '', - match_criteria_id = '', - version_end_excluding = '', - version_end_including = '', - version_start_excluding = '', - version_start_including = '', - vulnerable = True, ) - ], - negate = True, - operator = '', ) - ], - operator = '', ) + vulncheck_sdk.models.advisory/custom_cpe.advisory.CustomCPE( + mcpeapplicability = vulncheck_sdk.models.advisory/mcpe_applicability.advisory.MCPEApplicability( + negate = True, + nodes = [ + vulncheck_sdk.models.advisory/m_nodes.advisory.MNodes( + cpe_match = [ + vulncheck_sdk.models.advisory/mcpe_match.advisory.MCPEMatch( + criteria = '', + match_criteria_id = '', + version_end_excluding = '', + version_end_including = '', + version_start_excluding = '', + version_start_including = '', + vulnerable = True, ) + ], + negate = True, + operator = '', ) + ], + operator = '', ), + string_value = '', ) ], credits = [ vulncheck_sdk.models.advisory/credit.advisory.Credit( diff --git a/test/blocking/test_advisory_mitre_cve_list_v5_ref.py b/test/blocking/test_advisory_mitre_cve_list_v5_ref.py index db5b0c99..7c817d11 100644 --- a/test/blocking/test_advisory_mitre_cve_list_v5_ref.py +++ b/test/blocking/test_advisory_mitre_cve_list_v5_ref.py @@ -165,24 +165,26 @@ def make_instance(self, include_optional) -> AdvisoryMitreCVEListV5Ref: ], cna = vulncheck_sdk.models.advisory/m_cna.advisory.MCna( cpe_applicability = [ - vulncheck_sdk.models.advisory/mcpe_applicability.advisory.MCPEApplicability( - negate = True, - nodes = [ - vulncheck_sdk.models.advisory/m_nodes.advisory.MNodes( - cpe_match = [ - vulncheck_sdk.models.advisory/mcpe_match.advisory.MCPEMatch( - criteria = '', - match_criteria_id = '', - version_end_excluding = '', - version_end_including = '', - version_start_excluding = '', - version_start_including = '', - vulnerable = True, ) - ], - negate = True, - operator = '', ) - ], - operator = '', ) + vulncheck_sdk.models.advisory/custom_cpe.advisory.CustomCPE( + mcpeapplicability = vulncheck_sdk.models.advisory/mcpe_applicability.advisory.MCPEApplicability( + negate = True, + nodes = [ + vulncheck_sdk.models.advisory/m_nodes.advisory.MNodes( + cpe_match = [ + vulncheck_sdk.models.advisory/mcpe_match.advisory.MCPEMatch( + criteria = '', + match_criteria_id = '', + version_end_excluding = '', + version_end_including = '', + version_start_excluding = '', + version_start_including = '', + vulnerable = True, ) + ], + negate = True, + operator = '', ) + ], + operator = '', ), + string_value = '', ) ], credits = [ vulncheck_sdk.models.advisory/credit.advisory.Credit( diff --git a/test/blocking/test_advisory_ni.py b/test/blocking/test_advisory_ni.py index 388cb018..4571e45a 100644 --- a/test/blocking/test_advisory_ni.py +++ b/test/blocking/test_advisory_ni.py @@ -45,6 +45,7 @@ def make_instance(self, include_optional) -> AdvisoryNI: '' ], title = '', + updated_at = '', url = '' ) else: diff --git a/test/blocking/test_advisory_panasonic.py b/test/blocking/test_advisory_panasonic.py index 11e2098b..3e5a7b3d 100644 --- a/test/blocking/test_advisory_panasonic.py +++ b/test/blocking/test_advisory_panasonic.py @@ -42,6 +42,7 @@ def make_instance(self, include_optional) -> AdvisoryPanasonic: date_added = '', summary = '', title = '', + updated_at = '', url = '' ) else: diff --git a/test/blocking/test_advisory_qualys.py b/test/blocking/test_advisory_qualys.py index 9e5ebeb8..a5132bd9 100644 --- a/test/blocking/test_advisory_qualys.py +++ b/test/blocking/test_advisory_qualys.py @@ -44,6 +44,7 @@ def make_instance(self, include_optional) -> AdvisoryQualys: '' ], title = '', + updated_at = '', url = '' ) else: diff --git a/test/blocking/test_advisory_samba.py b/test/blocking/test_advisory_samba.py index 318ed161..07780e1e 100644 --- a/test/blocking/test_advisory_samba.py +++ b/test/blocking/test_advisory_samba.py @@ -47,7 +47,9 @@ def make_instance(self, include_optional) -> AdvisorySamba: ], references = [ '' - ] + ], + updated_at = '', + url = '' ) else: return AdvisorySamba( diff --git a/test/blocking/test_advisory_ssd_advisory.py b/test/blocking/test_advisory_ssd_advisory.py index 9f5dc717..140139f5 100644 --- a/test/blocking/test_advisory_ssd_advisory.py +++ b/test/blocking/test_advisory_ssd_advisory.py @@ -47,7 +47,8 @@ def make_instance(self, include_optional) -> AdvisorySSDAdvisory: published = '', response_ref = '', summary = '', - title = '' + title = '', + updated_at = '' ) else: return AdvisorySSDAdvisory( diff --git a/test/blocking/test_advisory_ti.py b/test/blocking/test_advisory_ti.py index b560da4c..636818a8 100644 --- a/test/blocking/test_advisory_ti.py +++ b/test/blocking/test_advisory_ti.py @@ -43,6 +43,7 @@ def make_instance(self, include_optional) -> AdvisoryTI: incident_id = '', summary = '', title = '', + updated_at = '', url = '' ) else: diff --git a/test/blocking/test_advisory_trane_technology.py b/test/blocking/test_advisory_trane_technology.py index 521cfa58..e80669f0 100644 --- a/test/blocking/test_advisory_trane_technology.py +++ b/test/blocking/test_advisory_trane_technology.py @@ -44,6 +44,7 @@ def make_instance(self, include_optional) -> AdvisoryTraneTechnology: id = '', product = '', summary = '', + updated_at = '', url = '' ) else: diff --git a/test/blocking/test_advisory_vuln_check_cve_list_v5.py b/test/blocking/test_advisory_vuln_check_cve_list_v5.py index 50320ab3..226f1b9a 100644 --- a/test/blocking/test_advisory_vuln_check_cve_list_v5.py +++ b/test/blocking/test_advisory_vuln_check_cve_list_v5.py @@ -170,24 +170,26 @@ def make_instance(self, include_optional) -> AdvisoryVulnCheckCVEListV5: ], cna = vulncheck_sdk.models.advisory/m_cna.advisory.MCna( cpe_applicability = [ - vulncheck_sdk.models.advisory/mcpe_applicability.advisory.MCPEApplicability( - negate = True, - nodes = [ - vulncheck_sdk.models.advisory/m_nodes.advisory.MNodes( - cpe_match = [ - vulncheck_sdk.models.advisory/mcpe_match.advisory.MCPEMatch( - criteria = '', - match_criteria_id = '', - version_end_excluding = '', - version_end_including = '', - version_start_excluding = '', - version_start_including = '', - vulnerable = True, ) - ], - negate = True, - operator = '', ) - ], - operator = '', ) + vulncheck_sdk.models.advisory/custom_cpe.advisory.CustomCPE( + mcpeapplicability = vulncheck_sdk.models.advisory/mcpe_applicability.advisory.MCPEApplicability( + negate = True, + nodes = [ + vulncheck_sdk.models.advisory/m_nodes.advisory.MNodes( + cpe_match = [ + vulncheck_sdk.models.advisory/mcpe_match.advisory.MCPEMatch( + criteria = '', + match_criteria_id = '', + version_end_excluding = '', + version_end_including = '', + version_start_excluding = '', + version_start_including = '', + vulnerable = True, ) + ], + negate = True, + operator = '', ) + ], + operator = '', ), + string_value = '', ) ], credits = [ vulncheck_sdk.models.advisory/credit.advisory.Credit( diff --git a/test/blocking/test_advisory_vulnrichment.py b/test/blocking/test_advisory_vulnrichment.py index 06416d85..5600326d 100644 --- a/test/blocking/test_advisory_vulnrichment.py +++ b/test/blocking/test_advisory_vulnrichment.py @@ -91,24 +91,26 @@ def make_instance(self, include_optional) -> AdvisoryVulnrichment: ], cna = vulncheck_sdk.models.advisory/m_cna.advisory.MCna( cpe_applicability = [ - vulncheck_sdk.models.advisory/mcpe_applicability.advisory.MCPEApplicability( - negate = True, - nodes = [ - vulncheck_sdk.models.advisory/m_nodes.advisory.MNodes( - cpe_match = [ - vulncheck_sdk.models.advisory/mcpe_match.advisory.MCPEMatch( - criteria = '', - match_criteria_id = '', - version_end_excluding = '', - version_end_including = '', - version_start_excluding = '', - version_start_including = '', - vulnerable = True, ) - ], - negate = True, - operator = '', ) - ], - operator = '', ) + vulncheck_sdk.models.advisory/custom_cpe.advisory.CustomCPE( + mcpeapplicability = vulncheck_sdk.models.advisory/mcpe_applicability.advisory.MCPEApplicability( + negate = True, + nodes = [ + vulncheck_sdk.models.advisory/m_nodes.advisory.MNodes( + cpe_match = [ + vulncheck_sdk.models.advisory/mcpe_match.advisory.MCPEMatch( + criteria = '', + match_criteria_id = '', + version_end_excluding = '', + version_end_including = '', + version_start_excluding = '', + version_start_including = '', + vulnerable = True, ) + ], + negate = True, + operator = '', ) + ], + operator = '', ), + string_value = '', ) ], credits = [ vulncheck_sdk.models.advisory/credit.advisory.Credit( diff --git a/test/blocking/test_advisory_vulnrichment_containers.py b/test/blocking/test_advisory_vulnrichment_containers.py index 1b16397f..c895abc3 100644 --- a/test/blocking/test_advisory_vulnrichment_containers.py +++ b/test/blocking/test_advisory_vulnrichment_containers.py @@ -109,24 +109,26 @@ def make_instance(self, include_optional) -> AdvisoryVulnrichmentContainers: ], ) ], cpe_applicability = [ - vulncheck_sdk.models.advisory/mcpe_applicability.advisory.MCPEApplicability( - negate = True, - nodes = [ - vulncheck_sdk.models.advisory/m_nodes.advisory.MNodes( - cpe_match = [ - vulncheck_sdk.models.advisory/mcpe_match.advisory.MCPEMatch( - criteria = '', - match_criteria_id = '', - version_end_excluding = '', - version_end_including = '', - version_start_excluding = '', - version_start_including = '', - vulnerable = True, ) - ], - negate = True, - operator = '', ) - ], - operator = '', ) + vulncheck_sdk.models.advisory/custom_cpe.advisory.CustomCPE( + mcpeapplicability = vulncheck_sdk.models.advisory/mcpe_applicability.advisory.MCPEApplicability( + negate = True, + nodes = [ + vulncheck_sdk.models.advisory/m_nodes.advisory.MNodes( + cpe_match = [ + vulncheck_sdk.models.advisory/mcpe_match.advisory.MCPEMatch( + criteria = '', + match_criteria_id = '', + version_end_excluding = '', + version_end_including = '', + version_start_excluding = '', + version_start_including = '', + vulnerable = True, ) + ], + negate = True, + operator = '', ) + ], + operator = '', ), + string_value = '', ) ], credits = [ vulncheck_sdk.models.advisory/credit.advisory.Credit( diff --git a/test/blocking/test_advisory_vulnrichment_cve_ref.py b/test/blocking/test_advisory_vulnrichment_cve_ref.py index 72cf2e63..e33812d3 100644 --- a/test/blocking/test_advisory_vulnrichment_cve_ref.py +++ b/test/blocking/test_advisory_vulnrichment_cve_ref.py @@ -86,24 +86,26 @@ def make_instance(self, include_optional) -> AdvisoryVulnrichmentCVERef: ], cna = vulncheck_sdk.models.advisory/m_cna.advisory.MCna( cpe_applicability = [ - vulncheck_sdk.models.advisory/mcpe_applicability.advisory.MCPEApplicability( - negate = True, - nodes = [ - vulncheck_sdk.models.advisory/m_nodes.advisory.MNodes( - cpe_match = [ - vulncheck_sdk.models.advisory/mcpe_match.advisory.MCPEMatch( - criteria = '', - match_criteria_id = '', - version_end_excluding = '', - version_end_including = '', - version_start_excluding = '', - version_start_including = '', - vulnerable = True, ) - ], - negate = True, - operator = '', ) - ], - operator = '', ) + vulncheck_sdk.models.advisory/custom_cpe.advisory.CustomCPE( + mcpeapplicability = vulncheck_sdk.models.advisory/mcpe_applicability.advisory.MCPEApplicability( + negate = True, + nodes = [ + vulncheck_sdk.models.advisory/m_nodes.advisory.MNodes( + cpe_match = [ + vulncheck_sdk.models.advisory/mcpe_match.advisory.MCPEMatch( + criteria = '', + match_criteria_id = '', + version_end_excluding = '', + version_end_including = '', + version_start_excluding = '', + version_start_including = '', + vulnerable = True, ) + ], + negate = True, + operator = '', ) + ], + operator = '', ), + string_value = '', ) ], credits = [ vulncheck_sdk.models.advisory/credit.advisory.Credit( diff --git a/test/blocking/test_advisory_with_secure.py b/test/blocking/test_advisory_with_secure.py index 99ac6105..d11766da 100644 --- a/test/blocking/test_advisory_with_secure.py +++ b/test/blocking/test_advisory_with_secure.py @@ -42,6 +42,7 @@ def make_instance(self, include_optional) -> AdvisoryWithSecure: date_added = '', summary = '', title = '', + updated_at = '', url = '' ) else: diff --git a/test/blocking/test_api_initial_access.py b/test/blocking/test_api_initial_access.py index 8c6e80eb..a63619ab 100644 --- a/test/blocking/test_api_initial_access.py +++ b/test/blocking/test_api_initial_access.py @@ -60,6 +60,9 @@ def make_instance(self, include_optional) -> ApiInitialAccess: censys_raw_queries = [ '' ], + chain = [ + '' + ], clone_sshurl = '', date_added = '', driftnet_queries = [ @@ -92,6 +95,9 @@ def make_instance(self, include_optional) -> ApiInitialAccess: product = [ '' ], + related = [ + '' + ], shodan_queries = [ '' ], diff --git a/test/blocking/test_api_initial_access_artifact.py b/test/blocking/test_api_initial_access_artifact.py index 07ff76e6..8f1aa44c 100644 --- a/test/blocking/test_api_initial_access_artifact.py +++ b/test/blocking/test_api_initial_access_artifact.py @@ -58,6 +58,9 @@ def make_instance(self, include_optional) -> ApiInitialAccessArtifact: censys_raw_queries = [ '' ], + chain = [ + '' + ], clone_sshurl = '', date_added = '', driftnet_queries = [ @@ -90,6 +93,9 @@ def make_instance(self, include_optional) -> ApiInitialAccessArtifact: product = [ '' ], + related = [ + '' + ], shodan_queries = [ '' ], diff --git a/test/blocking/test_backup_api.py b/test/blocking/test_backup_api.py new file mode 100644 index 00000000..39f7659b --- /dev/null +++ b/test/blocking/test_backup_api.py @@ -0,0 +1,46 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest + +from vulncheck_sdk.api.backup_api import BackupApi + + +class TestBackupApi(unittest.TestCase): + """BackupApi unit test stubs""" + + def setUp(self) -> None: + self.api = BackupApi() + + def tearDown(self) -> None: + pass + + def test_backup_get(self) -> None: + """Test case for backup_get + + List available backups + """ + pass + + def test_backup_index_get(self) -> None: + """Test case for backup_index_get + + Get backup by feed name + """ + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/test/blocking/test_backup_backup_response.py b/test/blocking/test_backup_backup_response.py new file mode 100644 index 00000000..ec2d3636 --- /dev/null +++ b/test/blocking/test_backup_backup_response.py @@ -0,0 +1,56 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest + +from vulncheck_sdk.models.backup_backup_response import BackupBackupResponse + +class TestBackupBackupResponse(unittest.TestCase): + """BackupBackupResponse unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> BackupBackupResponse: + """Test BackupBackupResponse + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included """ + # uncomment below to create an instance of `BackupBackupResponse` + """ + model = BackupBackupResponse() + if include_optional: + return BackupBackupResponse( + available = True, + feed = '', + url = '', + url_direct = '', + url_expires = '' + ) + else: + return BackupBackupResponse( + ) + """ + + def testBackupBackupResponse(self): + """Test BackupBackupResponse""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + +if __name__ == '__main__': + unittest.main() diff --git a/test/blocking/test_backup_feed_item.py b/test/blocking/test_backup_feed_item.py new file mode 100644 index 00000000..b893cd31 --- /dev/null +++ b/test/blocking/test_backup_feed_item.py @@ -0,0 +1,55 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest + +from vulncheck_sdk.models.backup_feed_item import BackupFeedItem + +class TestBackupFeedItem(unittest.TestCase): + """BackupFeedItem unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> BackupFeedItem: + """Test BackupFeedItem + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included """ + # uncomment below to create an instance of `BackupFeedItem` + """ + model = BackupFeedItem() + if include_optional: + return BackupFeedItem( + available = True, + backup_written_at = '', + href = '', + name = '' + ) + else: + return BackupFeedItem( + ) + """ + + def testBackupFeedItem(self): + """Test BackupFeedItem""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + +if __name__ == '__main__': + unittest.main() diff --git a/test/blocking/test_backup_list_backups_response.py b/test/blocking/test_backup_list_backups_response.py new file mode 100644 index 00000000..9bb1ca7d --- /dev/null +++ b/test/blocking/test_backup_list_backups_response.py @@ -0,0 +1,58 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest + +from vulncheck_sdk.models.backup_list_backups_response import BackupListBackupsResponse + +class TestBackupListBackupsResponse(unittest.TestCase): + """BackupListBackupsResponse unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> BackupListBackupsResponse: + """Test BackupListBackupsResponse + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included """ + # uncomment below to create an instance of `BackupListBackupsResponse` + """ + model = BackupListBackupsResponse() + if include_optional: + return BackupListBackupsResponse( + data = [ + vulncheck_sdk.models.backup/feed_item.backup.FeedItem( + available = True, + backup_written_at = '', + href = '', + name = '', ) + ] + ) + else: + return BackupListBackupsResponse( + ) + """ + + def testBackupListBackupsResponse(self): + """Test BackupListBackupsResponse""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + +if __name__ == '__main__': + unittest.main() diff --git a/test/blocking/test_endpoints_api.py b/test/blocking/test_endpoints_api.py index 61f30788..fbf568a2 100644 --- a/test/blocking/test_endpoints_api.py +++ b/test/blocking/test_endpoints_api.py @@ -27,20 +27,6 @@ def setUp(self) -> None: def tearDown(self) -> None: pass - def test_backup_get(self) -> None: - """Test case for backup_get - - Return a list of indexes with backup and endpoint links - """ - pass - - def test_backup_index_get(self) -> None: - """Test case for backup_index_get - - Retrieve a list of backups by index - """ - pass - def test_cpe_get(self) -> None: """Test case for cpe_get diff --git a/test/blocking/test_indices_api.py b/test/blocking/test_indices_api.py index 8dad74d2..3aa5796d 100644 --- a/test/blocking/test_indices_api.py +++ b/test/blocking/test_indices_api.py @@ -1861,6 +1861,13 @@ def test_index_malicious_packages_get(self) -> None: """ pass + def test_index_malicious_vscode_exts_get(self) -> None: + """Test case for index_malicious_vscode_exts_get + + Return vulnerability data stored in index \"malicious-vscode-exts\" + """ + pass + def test_index_manageengine_get(self) -> None: """Test case for index_manageengine_get diff --git a/test/blocking/test_render_response_with_metadata_array_advisory_apache_arrow_paginate_pagination.py b/test/blocking/test_render_response_with_metadata_array_advisory_apache_arrow_paginate_pagination.py index 363bdcce..1ea5bf86 100644 --- a/test/blocking/test_render_response_with_metadata_array_advisory_apache_arrow_paginate_pagination.py +++ b/test/blocking/test_render_response_with_metadata_array_advisory_apache_arrow_paginate_pagination.py @@ -79,6 +79,7 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi date_added = '', summary = '', title = '', + updated_at = '', url = '', ) ] ) diff --git a/test/blocking/test_render_response_with_metadata_array_advisory_apache_superset_paginate_pagination.py b/test/blocking/test_render_response_with_metadata_array_advisory_apache_superset_paginate_pagination.py index 1c894ede..1cc3a430 100644 --- a/test/blocking/test_render_response_with_metadata_array_advisory_apache_superset_paginate_pagination.py +++ b/test/blocking/test_render_response_with_metadata_array_advisory_apache_superset_paginate_pagination.py @@ -79,6 +79,7 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi ], date_added = '', title = '', + updated_at = '', url = '', ) ] ) diff --git a/test/blocking/test_render_response_with_metadata_array_advisory_asrg_paginate_pagination.py b/test/blocking/test_render_response_with_metadata_array_advisory_asrg_paginate_pagination.py index 0ea70be1..b500cd5b 100644 --- a/test/blocking/test_render_response_with_metadata_array_advisory_asrg_paginate_pagination.py +++ b/test/blocking/test_render_response_with_metadata_array_advisory_asrg_paginate_pagination.py @@ -86,6 +86,7 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi '' ], title = '', + updated_at = '', url = '', ) ] ) diff --git a/test/blocking/test_render_response_with_metadata_array_advisory_cisa_alert_paginate_pagination.py b/test/blocking/test_render_response_with_metadata_array_advisory_cisa_alert_paginate_pagination.py index d8525786..04709017 100644 --- a/test/blocking/test_render_response_with_metadata_array_advisory_cisa_alert_paginate_pagination.py +++ b/test/blocking/test_render_response_with_metadata_array_advisory_cisa_alert_paginate_pagination.py @@ -76,20 +76,19 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi affected_products = '', alert_id = '', archived = True, - cve = [ - '' - ], - cveexploited_itw = True, + cve_exploited_itw = True, cvss = '', - date_added = '', - icsa = True, icsma = True, mitigations = '', release_date = '', title = '', - updated_at = '', url = '', - vendor = '', ) + vendor = '', + cve = [ + '' + ], + date_added = '', + updated_at = '', ) ] ) else: diff --git a/test/blocking/test_render_response_with_metadata_array_advisory_fastly_paginate_pagination.py b/test/blocking/test_render_response_with_metadata_array_advisory_fastly_paginate_pagination.py index b58da2ff..c1215202 100644 --- a/test/blocking/test_render_response_with_metadata_array_advisory_fastly_paginate_pagination.py +++ b/test/blocking/test_render_response_with_metadata_array_advisory_fastly_paginate_pagination.py @@ -79,6 +79,7 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi date_added = '', summary = '', title = '', + updated_at = '', url = '', ) ] ) diff --git a/test/blocking/test_render_response_with_metadata_array_advisory_haskell_sadb_advisory_paginate_pagination.py b/test/blocking/test_render_response_with_metadata_array_advisory_haskell_sadb_advisory_paginate_pagination.py index e99bc7ae..79a1fa84 100644 --- a/test/blocking/test_render_response_with_metadata_array_advisory_haskell_sadb_advisory_paginate_pagination.py +++ b/test/blocking/test_render_response_with_metadata_array_advisory_haskell_sadb_advisory_paginate_pagination.py @@ -111,7 +111,8 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi }, related_vulns = [ '' - ], ) + ], + updated_at = '', ) ] ) else: diff --git a/test/blocking/test_render_response_with_metadata_array_advisory_ma_cert_paginate_pagination.py b/test/blocking/test_render_response_with_metadata_array_advisory_ma_cert_paginate_pagination.py index 697e2413..bca4fdb5 100644 --- a/test/blocking/test_render_response_with_metadata_array_advisory_ma_cert_paginate_pagination.py +++ b/test/blocking/test_render_response_with_metadata_array_advisory_ma_cert_paginate_pagination.py @@ -88,6 +88,7 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi risks_fr = '', solution_fr = '', title_fr = '', + updated_at = '', url = '', ) ] ) diff --git a/test/blocking/test_render_response_with_metadata_array_advisory_malicious_vs_code_exts_paginate_pagination.py b/test/blocking/test_render_response_with_metadata_array_advisory_malicious_vs_code_exts_paginate_pagination.py new file mode 100644 index 00000000..b404d51d --- /dev/null +++ b/test/blocking/test_render_response_with_metadata_array_advisory_malicious_vs_code_exts_paginate_pagination.py @@ -0,0 +1,96 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest + +from vulncheck_sdk.models.render_response_with_metadata_array_advisory_malicious_vs_code_exts_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination + +class TestRenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination(unittest.TestCase): + """RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination: + """Test RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included """ + # uncomment below to create an instance of `RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination` + """ + model = RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination() + if include_optional: + return RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination( + benchmark = 1.337, + meta = vulncheck_sdk.models.paginate/pagination.paginate.Pagination( + cursor = '', + first_item = 56, + index = '', + last_item = 56, + limit = 56, + matches = [ + vulncheck_sdk.models.paginate/match.paginate.Match( + field = '', + value = '', ) + ], + max_pages = 56, + next_cursor = '', + opensearch_query = vulncheck_sdk.models.opensearch_query.opensearch_query(), + order = '', + page = 56, + pages = [ + '' + ], + parameters = [ + vulncheck_sdk.models.paginate/param.paginate.Param( + filtering = '', + format = '', + name = '', ) + ], + show_pages = True, + show_query = True, + sort = '', + timestamp = '', + total_documents = 56, + total_pages = 56, + warnings = [ + '' + ], ), + data = [ + vulncheck_sdk.models.advisory/malicious_vs_code_exts.advisory.MaliciousVSCodeExts( + date_added = '', + name = '', + publisher = '', + type = '', + updated_at = '', + url = '', + version = '', ) + ] + ) + else: + return RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination( + ) + """ + + def testRenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination(self): + """Test RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + +if __name__ == '__main__': + unittest.main() diff --git a/test/blocking/test_render_response_with_metadata_array_advisory_mitre_cve_list_v5_paginate_pagination.py b/test/blocking/test_render_response_with_metadata_array_advisory_mitre_cve_list_v5_paginate_pagination.py index 5fd73d19..46e73c4b 100644 --- a/test/blocking/test_render_response_with_metadata_array_advisory_mitre_cve_list_v5_paginate_pagination.py +++ b/test/blocking/test_render_response_with_metadata_array_advisory_mitre_cve_list_v5_paginate_pagination.py @@ -207,24 +207,26 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi ], cna = vulncheck_sdk.models.advisory/m_cna.advisory.MCna( cpe_applicability = [ - vulncheck_sdk.models.advisory/mcpe_applicability.advisory.MCPEApplicability( - negate = True, - nodes = [ - vulncheck_sdk.models.advisory/m_nodes.advisory.MNodes( - cpe_match = [ - vulncheck_sdk.models.advisory/mcpe_match.advisory.MCPEMatch( - criteria = '', - match_criteria_id = '', - version_end_excluding = '', - version_end_including = '', - version_start_excluding = '', - version_start_including = '', - vulnerable = True, ) - ], - negate = True, - operator = '', ) - ], - operator = '', ) + vulncheck_sdk.models.advisory/custom_cpe.advisory.CustomCPE( + mcpeapplicability = vulncheck_sdk.models.advisory/mcpe_applicability.advisory.MCPEApplicability( + negate = True, + nodes = [ + vulncheck_sdk.models.advisory/m_nodes.advisory.MNodes( + cpe_match = [ + vulncheck_sdk.models.advisory/mcpe_match.advisory.MCPEMatch( + criteria = '', + match_criteria_id = '', + version_end_excluding = '', + version_end_including = '', + version_start_excluding = '', + version_start_including = '', + vulnerable = True, ) + ], + negate = True, + operator = '', ) + ], + operator = '', ), + string_value = '', ) ], credits = [ vulncheck_sdk.models.advisory/credit.advisory.Credit( diff --git a/test/blocking/test_render_response_with_metadata_array_advisory_ni_paginate_pagination.py b/test/blocking/test_render_response_with_metadata_array_advisory_ni_paginate_pagination.py index a8649f0e..05a4634e 100644 --- a/test/blocking/test_render_response_with_metadata_array_advisory_ni_paginate_pagination.py +++ b/test/blocking/test_render_response_with_metadata_array_advisory_ni_paginate_pagination.py @@ -82,6 +82,7 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi '' ], title = '', + updated_at = '', url = '', ) ] ) diff --git a/test/blocking/test_render_response_with_metadata_array_advisory_panasonic_paginate_pagination.py b/test/blocking/test_render_response_with_metadata_array_advisory_panasonic_paginate_pagination.py index 00a6b18e..5e59aa32 100644 --- a/test/blocking/test_render_response_with_metadata_array_advisory_panasonic_paginate_pagination.py +++ b/test/blocking/test_render_response_with_metadata_array_advisory_panasonic_paginate_pagination.py @@ -79,6 +79,7 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi date_added = '', summary = '', title = '', + updated_at = '', url = '', ) ] ) diff --git a/test/blocking/test_render_response_with_metadata_array_advisory_qualys_paginate_pagination.py b/test/blocking/test_render_response_with_metadata_array_advisory_qualys_paginate_pagination.py index 5280c149..32bf08cd 100644 --- a/test/blocking/test_render_response_with_metadata_array_advisory_qualys_paginate_pagination.py +++ b/test/blocking/test_render_response_with_metadata_array_advisory_qualys_paginate_pagination.py @@ -81,6 +81,7 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi '' ], title = '', + updated_at = '', url = '', ) ] ) diff --git a/test/blocking/test_render_response_with_metadata_array_advisory_samba_paginate_pagination.py b/test/blocking/test_render_response_with_metadata_array_advisory_samba_paginate_pagination.py index ba5c56fc..e94ab676 100644 --- a/test/blocking/test_render_response_with_metadata_array_advisory_samba_paginate_pagination.py +++ b/test/blocking/test_render_response_with_metadata_array_advisory_samba_paginate_pagination.py @@ -84,7 +84,9 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi ], references = [ '' - ], ) + ], + updated_at = '', + url = '', ) ] ) else: diff --git a/test/blocking/test_render_response_with_metadata_array_advisory_ssd_advisory_paginate_pagination.py b/test/blocking/test_render_response_with_metadata_array_advisory_ssd_advisory_paginate_pagination.py index e8126d7b..c302049c 100644 --- a/test/blocking/test_render_response_with_metadata_array_advisory_ssd_advisory_paginate_pagination.py +++ b/test/blocking/test_render_response_with_metadata_array_advisory_ssd_advisory_paginate_pagination.py @@ -84,7 +84,8 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi published = '', response_ref = '', summary = '', - title = '', ) + title = '', + updated_at = '', ) ] ) else: diff --git a/test/blocking/test_render_response_with_metadata_array_advisory_ti_paginate_pagination.py b/test/blocking/test_render_response_with_metadata_array_advisory_ti_paginate_pagination.py index 3f2d8f1f..e8d8e551 100644 --- a/test/blocking/test_render_response_with_metadata_array_advisory_ti_paginate_pagination.py +++ b/test/blocking/test_render_response_with_metadata_array_advisory_ti_paginate_pagination.py @@ -80,6 +80,7 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi incident_id = '', summary = '', title = '', + updated_at = '', url = '', ) ] ) diff --git a/test/blocking/test_render_response_with_metadata_array_advisory_trane_technology_paginate_pagination.py b/test/blocking/test_render_response_with_metadata_array_advisory_trane_technology_paginate_pagination.py index b070c4e4..aea2f1cc 100644 --- a/test/blocking/test_render_response_with_metadata_array_advisory_trane_technology_paginate_pagination.py +++ b/test/blocking/test_render_response_with_metadata_array_advisory_trane_technology_paginate_pagination.py @@ -81,6 +81,7 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi id = '', product = '', summary = '', + updated_at = '', url = '', ) ] ) diff --git a/test/blocking/test_render_response_with_metadata_array_advisory_vuln_check_cve_list_v5_paginate_pagination.py b/test/blocking/test_render_response_with_metadata_array_advisory_vuln_check_cve_list_v5_paginate_pagination.py index ae4dcf2b..352d9c66 100644 --- a/test/blocking/test_render_response_with_metadata_array_advisory_vuln_check_cve_list_v5_paginate_pagination.py +++ b/test/blocking/test_render_response_with_metadata_array_advisory_vuln_check_cve_list_v5_paginate_pagination.py @@ -207,24 +207,26 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi ], cna = vulncheck_sdk.models.advisory/m_cna.advisory.MCna( cpe_applicability = [ - vulncheck_sdk.models.advisory/mcpe_applicability.advisory.MCPEApplicability( - negate = True, - nodes = [ - vulncheck_sdk.models.advisory/m_nodes.advisory.MNodes( - cpe_match = [ - vulncheck_sdk.models.advisory/mcpe_match.advisory.MCPEMatch( - criteria = '', - match_criteria_id = '', - version_end_excluding = '', - version_end_including = '', - version_start_excluding = '', - version_start_including = '', - vulnerable = True, ) - ], - negate = True, - operator = '', ) - ], - operator = '', ) + vulncheck_sdk.models.advisory/custom_cpe.advisory.CustomCPE( + mcpeapplicability = vulncheck_sdk.models.advisory/mcpe_applicability.advisory.MCPEApplicability( + negate = True, + nodes = [ + vulncheck_sdk.models.advisory/m_nodes.advisory.MNodes( + cpe_match = [ + vulncheck_sdk.models.advisory/mcpe_match.advisory.MCPEMatch( + criteria = '', + match_criteria_id = '', + version_end_excluding = '', + version_end_including = '', + version_start_excluding = '', + version_start_including = '', + vulnerable = True, ) + ], + negate = True, + operator = '', ) + ], + operator = '', ), + string_value = '', ) ], credits = [ vulncheck_sdk.models.advisory/credit.advisory.Credit( diff --git a/test/blocking/test_render_response_with_metadata_array_advisory_vulnrichment_paginate_pagination.py b/test/blocking/test_render_response_with_metadata_array_advisory_vulnrichment_paginate_pagination.py index 1286e408..9d7f4dc7 100644 --- a/test/blocking/test_render_response_with_metadata_array_advisory_vulnrichment_paginate_pagination.py +++ b/test/blocking/test_render_response_with_metadata_array_advisory_vulnrichment_paginate_pagination.py @@ -128,24 +128,26 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi ], cna = vulncheck_sdk.models.advisory/m_cna.advisory.MCna( cpe_applicability = [ - vulncheck_sdk.models.advisory/mcpe_applicability.advisory.MCPEApplicability( - negate = True, - nodes = [ - vulncheck_sdk.models.advisory/m_nodes.advisory.MNodes( - cpe_match = [ - vulncheck_sdk.models.advisory/mcpe_match.advisory.MCPEMatch( - criteria = '', - match_criteria_id = '', - version_end_excluding = '', - version_end_including = '', - version_start_excluding = '', - version_start_including = '', - vulnerable = True, ) - ], - negate = True, - operator = '', ) - ], - operator = '', ) + vulncheck_sdk.models.advisory/custom_cpe.advisory.CustomCPE( + mcpeapplicability = vulncheck_sdk.models.advisory/mcpe_applicability.advisory.MCPEApplicability( + negate = True, + nodes = [ + vulncheck_sdk.models.advisory/m_nodes.advisory.MNodes( + cpe_match = [ + vulncheck_sdk.models.advisory/mcpe_match.advisory.MCPEMatch( + criteria = '', + match_criteria_id = '', + version_end_excluding = '', + version_end_including = '', + version_start_excluding = '', + version_start_including = '', + vulnerable = True, ) + ], + negate = True, + operator = '', ) + ], + operator = '', ), + string_value = '', ) ], credits = [ vulncheck_sdk.models.advisory/credit.advisory.Credit( diff --git a/test/blocking/test_render_response_with_metadata_array_advisory_with_secure_paginate_pagination.py b/test/blocking/test_render_response_with_metadata_array_advisory_with_secure_paginate_pagination.py index 822c3294..1707456f 100644 --- a/test/blocking/test_render_response_with_metadata_array_advisory_with_secure_paginate_pagination.py +++ b/test/blocking/test_render_response_with_metadata_array_advisory_with_secure_paginate_pagination.py @@ -79,6 +79,7 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi date_added = '', summary = '', title = '', + updated_at = '', url = '', ) ] ) diff --git a/test/blocking/test_render_response_with_metadata_array_api_initial_access_paginate_pagination.py b/test/blocking/test_render_response_with_metadata_array_api_initial_access_paginate_pagination.py index 9b9330d4..98f9f45c 100644 --- a/test/blocking/test_render_response_with_metadata_array_api_initial_access_paginate_pagination.py +++ b/test/blocking/test_render_response_with_metadata_array_api_initial_access_paginate_pagination.py @@ -97,6 +97,9 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayApiI censys_raw_queries = [ '' ], + chain = [ + '' + ], clone_sshurl = '', date_added = '', driftnet_queries = [ @@ -129,6 +132,9 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayApiI product = [ '' ], + related = [ + '' + ], shodan_queries = [ '' ], diff --git a/test/blocking/test_search_v4_advisory_return_value.py b/test/blocking/test_search_v4_advisory_return_value.py index ae93dcc7..aaea3f3e 100644 --- a/test/blocking/test_search_v4_advisory_return_value.py +++ b/test/blocking/test_search_v4_advisory_return_value.py @@ -175,24 +175,26 @@ def make_instance(self, include_optional) -> SearchV4AdvisoryReturnValue: ], cna = vulncheck_sdk.models.advisory/m_cna.advisory.MCna( cpe_applicability = [ - vulncheck_sdk.models.advisory/mcpe_applicability.advisory.MCPEApplicability( - negate = True, - nodes = [ - vulncheck_sdk.models.advisory/m_nodes.advisory.MNodes( - cpe_match = [ - vulncheck_sdk.models.advisory/mcpe_match.advisory.MCPEMatch( - criteria = '', - match_criteria_id = '', - version_end_excluding = '', - version_end_including = '', - version_start_excluding = '', - version_start_including = '', - vulnerable = True, ) - ], - negate = True, - operator = '', ) - ], - operator = '', ) + vulncheck_sdk.models.advisory/custom_cpe.advisory.CustomCPE( + mcpeapplicability = vulncheck_sdk.models.advisory/mcpe_applicability.advisory.MCPEApplicability( + negate = True, + nodes = [ + vulncheck_sdk.models.advisory/m_nodes.advisory.MNodes( + cpe_match = [ + vulncheck_sdk.models.advisory/mcpe_match.advisory.MCPEMatch( + criteria = '', + match_criteria_id = '', + version_end_excluding = '', + version_end_including = '', + version_start_excluding = '', + version_start_including = '', + vulnerable = True, ) + ], + negate = True, + operator = '', ) + ], + operator = '', ), + string_value = '', ) ], credits = [ vulncheck_sdk.models.advisory/credit.advisory.Credit( diff --git a/vulncheck_sdk/__init__.py b/vulncheck_sdk/__init__.py index 16f523b8..f313fdcb 100644 --- a/vulncheck_sdk/__init__.py +++ b/vulncheck_sdk/__init__.py @@ -15,11 +15,12 @@ """ # noqa: E501 -__version__ = "0.0.42" +__version__ = "0.0.43" # Define package exports __all__ = [ "AdvisoryApi", + "BackupApi", "EndpointsApi", "IndicesApi", "ApiResponse", @@ -226,6 +227,7 @@ "AdvisoryCurlCWE", "AdvisoryCurlCredit", "AdvisoryCurlRange", + "AdvisoryCustomCPE", "AdvisoryCvrf", "AdvisoryCvsssV23", "AdvisoryCwe", @@ -427,6 +429,7 @@ "AdvisoryMVersion", "AdvisoryMVulnerability", "AdvisoryMaliciousPackage", + "AdvisoryMaliciousVSCodeExts", "AdvisoryManageEngine", "AdvisoryManageEngineAdvisory", "AdvisoryMbedTLS", @@ -859,6 +862,9 @@ "ApiUpdate", "ApiVulnCheckCanary", "ApiVulnerabilityAlias", + "BackupBackupResponse", + "BackupFeedItem", + "BackupListBackupsResponse", "ModelsEntitlements", "PaginateMatch", "PaginatePagination", @@ -1109,6 +1115,7 @@ "RenderResponseWithMetadataArrayAdvisoryMACertPaginatePagination", "RenderResponseWithMetadataArrayAdvisoryMFilesPaginatePagination", "RenderResponseWithMetadataArrayAdvisoryMaliciousPackagePaginatePagination", + "RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination", "RenderResponseWithMetadataArrayAdvisoryManageEngineAdvisoryPaginatePagination", "RenderResponseWithMetadataArrayAdvisoryMbedTLSPaginatePagination", "RenderResponseWithMetadataArrayAdvisoryMcAfeePaginatePagination", @@ -1351,6 +1358,7 @@ # import apis into sdk package from vulncheck_sdk.api.advisory_api import AdvisoryApi as AdvisoryApi +from vulncheck_sdk.api.backup_api import BackupApi as BackupApi from vulncheck_sdk.api.endpoints_api import EndpointsApi as EndpointsApi from vulncheck_sdk.api.indices_api import IndicesApi as IndicesApi @@ -1561,6 +1569,7 @@ from vulncheck_sdk.models.advisory_curl_cwe import AdvisoryCurlCWE as AdvisoryCurlCWE from vulncheck_sdk.models.advisory_curl_credit import AdvisoryCurlCredit as AdvisoryCurlCredit from vulncheck_sdk.models.advisory_curl_range import AdvisoryCurlRange as AdvisoryCurlRange +from vulncheck_sdk.models.advisory_custom_cpe import AdvisoryCustomCPE as AdvisoryCustomCPE from vulncheck_sdk.models.advisory_cvrf import AdvisoryCvrf as AdvisoryCvrf from vulncheck_sdk.models.advisory_cvsss_v23 import AdvisoryCvsssV23 as AdvisoryCvsssV23 from vulncheck_sdk.models.advisory_cwe import AdvisoryCwe as AdvisoryCwe @@ -1762,6 +1771,7 @@ from vulncheck_sdk.models.advisory_m_version import AdvisoryMVersion as AdvisoryMVersion from vulncheck_sdk.models.advisory_m_vulnerability import AdvisoryMVulnerability as AdvisoryMVulnerability from vulncheck_sdk.models.advisory_malicious_package import AdvisoryMaliciousPackage as AdvisoryMaliciousPackage +from vulncheck_sdk.models.advisory_malicious_vs_code_exts import AdvisoryMaliciousVSCodeExts as AdvisoryMaliciousVSCodeExts from vulncheck_sdk.models.advisory_manage_engine import AdvisoryManageEngine as AdvisoryManageEngine from vulncheck_sdk.models.advisory_manage_engine_advisory import AdvisoryManageEngineAdvisory as AdvisoryManageEngineAdvisory from vulncheck_sdk.models.advisory_mbed_tls import AdvisoryMbedTLS as AdvisoryMbedTLS @@ -2194,6 +2204,9 @@ from vulncheck_sdk.models.api_update import ApiUpdate as ApiUpdate from vulncheck_sdk.models.api_vuln_check_canary import ApiVulnCheckCanary as ApiVulnCheckCanary from vulncheck_sdk.models.api_vulnerability_alias import ApiVulnerabilityAlias as ApiVulnerabilityAlias +from vulncheck_sdk.models.backup_backup_response import BackupBackupResponse as BackupBackupResponse +from vulncheck_sdk.models.backup_feed_item import BackupFeedItem as BackupFeedItem +from vulncheck_sdk.models.backup_list_backups_response import BackupListBackupsResponse as BackupListBackupsResponse from vulncheck_sdk.models.models_entitlements import ModelsEntitlements as ModelsEntitlements from vulncheck_sdk.models.paginate_match import PaginateMatch as PaginateMatch from vulncheck_sdk.models.paginate_pagination import PaginatePagination as PaginatePagination @@ -2444,6 +2457,7 @@ from vulncheck_sdk.models.render_response_with_metadata_array_advisory_ma_cert_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMACertPaginatePagination as RenderResponseWithMetadataArrayAdvisoryMACertPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_advisory_m_files_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMFilesPaginatePagination as RenderResponseWithMetadataArrayAdvisoryMFilesPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_advisory_malicious_package_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMaliciousPackagePaginatePagination as RenderResponseWithMetadataArrayAdvisoryMaliciousPackagePaginatePagination +from vulncheck_sdk.models.render_response_with_metadata_array_advisory_malicious_vs_code_exts_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination as RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_advisory_manage_engine_advisory_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryManageEngineAdvisoryPaginatePagination as RenderResponseWithMetadataArrayAdvisoryManageEngineAdvisoryPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_advisory_mbed_tls_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMbedTLSPaginatePagination as RenderResponseWithMetadataArrayAdvisoryMbedTLSPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_advisory_mc_afee_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMcAfeePaginatePagination as RenderResponseWithMetadataArrayAdvisoryMcAfeePaginatePagination diff --git a/vulncheck_sdk/aio/__init__.py b/vulncheck_sdk/aio/__init__.py index 4d4f7101..a7056395 100644 --- a/vulncheck_sdk/aio/__init__.py +++ b/vulncheck_sdk/aio/__init__.py @@ -15,11 +15,12 @@ """ # noqa: E501 -__version__ = "0.0.42" +__version__ = "0.0.43" # Define package exports __all__ = [ "AdvisoryApi", + "BackupApi", "EndpointsApi", "IndicesApi", "ApiResponse", @@ -226,6 +227,7 @@ "AdvisoryCurlCWE", "AdvisoryCurlCredit", "AdvisoryCurlRange", + "AdvisoryCustomCPE", "AdvisoryCvrf", "AdvisoryCvsssV23", "AdvisoryCwe", @@ -427,6 +429,7 @@ "AdvisoryMVersion", "AdvisoryMVulnerability", "AdvisoryMaliciousPackage", + "AdvisoryMaliciousVSCodeExts", "AdvisoryManageEngine", "AdvisoryManageEngineAdvisory", "AdvisoryMbedTLS", @@ -859,6 +862,9 @@ "ApiUpdate", "ApiVulnCheckCanary", "ApiVulnerabilityAlias", + "BackupBackupResponse", + "BackupFeedItem", + "BackupListBackupsResponse", "ModelsEntitlements", "PaginateMatch", "PaginatePagination", @@ -1109,6 +1115,7 @@ "RenderResponseWithMetadataArrayAdvisoryMACertPaginatePagination", "RenderResponseWithMetadataArrayAdvisoryMFilesPaginatePagination", "RenderResponseWithMetadataArrayAdvisoryMaliciousPackagePaginatePagination", + "RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination", "RenderResponseWithMetadataArrayAdvisoryManageEngineAdvisoryPaginatePagination", "RenderResponseWithMetadataArrayAdvisoryMbedTLSPaginatePagination", "RenderResponseWithMetadataArrayAdvisoryMcAfeePaginatePagination", @@ -1351,6 +1358,7 @@ # import apis into sdk package from vulncheck_sdk.aio.api.advisory_api import AdvisoryApi as AdvisoryApi +from vulncheck_sdk.aio.api.backup_api import BackupApi as BackupApi from vulncheck_sdk.aio.api.endpoints_api import EndpointsApi as EndpointsApi from vulncheck_sdk.aio.api.indices_api import IndicesApi as IndicesApi @@ -1561,6 +1569,7 @@ from vulncheck_sdk.aio.models.advisory_curl_cwe import AdvisoryCurlCWE as AdvisoryCurlCWE from vulncheck_sdk.aio.models.advisory_curl_credit import AdvisoryCurlCredit as AdvisoryCurlCredit from vulncheck_sdk.aio.models.advisory_curl_range import AdvisoryCurlRange as AdvisoryCurlRange +from vulncheck_sdk.aio.models.advisory_custom_cpe import AdvisoryCustomCPE as AdvisoryCustomCPE from vulncheck_sdk.aio.models.advisory_cvrf import AdvisoryCvrf as AdvisoryCvrf from vulncheck_sdk.aio.models.advisory_cvsss_v23 import AdvisoryCvsssV23 as AdvisoryCvsssV23 from vulncheck_sdk.aio.models.advisory_cwe import AdvisoryCwe as AdvisoryCwe @@ -1762,6 +1771,7 @@ from vulncheck_sdk.aio.models.advisory_m_version import AdvisoryMVersion as AdvisoryMVersion from vulncheck_sdk.aio.models.advisory_m_vulnerability import AdvisoryMVulnerability as AdvisoryMVulnerability from vulncheck_sdk.aio.models.advisory_malicious_package import AdvisoryMaliciousPackage as AdvisoryMaliciousPackage +from vulncheck_sdk.aio.models.advisory_malicious_vs_code_exts import AdvisoryMaliciousVSCodeExts as AdvisoryMaliciousVSCodeExts from vulncheck_sdk.aio.models.advisory_manage_engine import AdvisoryManageEngine as AdvisoryManageEngine from vulncheck_sdk.aio.models.advisory_manage_engine_advisory import AdvisoryManageEngineAdvisory as AdvisoryManageEngineAdvisory from vulncheck_sdk.aio.models.advisory_mbed_tls import AdvisoryMbedTLS as AdvisoryMbedTLS @@ -2194,6 +2204,9 @@ from vulncheck_sdk.aio.models.api_update import ApiUpdate as ApiUpdate from vulncheck_sdk.aio.models.api_vuln_check_canary import ApiVulnCheckCanary as ApiVulnCheckCanary from vulncheck_sdk.aio.models.api_vulnerability_alias import ApiVulnerabilityAlias as ApiVulnerabilityAlias +from vulncheck_sdk.aio.models.backup_backup_response import BackupBackupResponse as BackupBackupResponse +from vulncheck_sdk.aio.models.backup_feed_item import BackupFeedItem as BackupFeedItem +from vulncheck_sdk.aio.models.backup_list_backups_response import BackupListBackupsResponse as BackupListBackupsResponse from vulncheck_sdk.aio.models.models_entitlements import ModelsEntitlements as ModelsEntitlements from vulncheck_sdk.aio.models.paginate_match import PaginateMatch as PaginateMatch from vulncheck_sdk.aio.models.paginate_pagination import PaginatePagination as PaginatePagination @@ -2444,6 +2457,7 @@ from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_ma_cert_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMACertPaginatePagination as RenderResponseWithMetadataArrayAdvisoryMACertPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_m_files_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMFilesPaginatePagination as RenderResponseWithMetadataArrayAdvisoryMFilesPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_malicious_package_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMaliciousPackagePaginatePagination as RenderResponseWithMetadataArrayAdvisoryMaliciousPackagePaginatePagination +from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_malicious_vs_code_exts_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination as RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_manage_engine_advisory_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryManageEngineAdvisoryPaginatePagination as RenderResponseWithMetadataArrayAdvisoryManageEngineAdvisoryPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_mbed_tls_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMbedTLSPaginatePagination as RenderResponseWithMetadataArrayAdvisoryMbedTLSPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_mc_afee_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMcAfeePaginatePagination as RenderResponseWithMetadataArrayAdvisoryMcAfeePaginatePagination diff --git a/vulncheck_sdk/aio/api/__init__.py b/vulncheck_sdk/aio/api/__init__.py index 458da09a..bc842087 100644 --- a/vulncheck_sdk/aio/api/__init__.py +++ b/vulncheck_sdk/aio/api/__init__.py @@ -2,6 +2,7 @@ # import apis into api package from vulncheck_sdk.aio.api.advisory_api import AdvisoryApi +from vulncheck_sdk.aio.api.backup_api import BackupApi from vulncheck_sdk.aio.api.endpoints_api import EndpointsApi from vulncheck_sdk.aio.api.indices_api import IndicesApi diff --git a/vulncheck_sdk/aio/api/backup_api.py b/vulncheck_sdk/aio/api/backup_api.py new file mode 100644 index 00000000..78d64b5f --- /dev/null +++ b/vulncheck_sdk/aio/api/backup_api.py @@ -0,0 +1,568 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + +import warnings +from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt +from typing import Any, Dict, List, Optional, Tuple, Union +from typing_extensions import Annotated + +from pydantic import Field, StrictStr +from typing_extensions import Annotated +from vulncheck_sdk.aio.models.backup_backup_response import BackupBackupResponse +from vulncheck_sdk.aio.models.backup_list_backups_response import BackupListBackupsResponse + +from vulncheck_sdk.aio.api_client import ApiClient, RequestSerialized +from vulncheck_sdk.aio.api_response import ApiResponse +from vulncheck_sdk.aio.rest import RESTResponseType + + +class BackupApi: + """NOTE: This class is auto generated by OpenAPI Generator + Ref: https://openapi-generator.tech + + Do not edit the class manually. + """ + + def __init__(self, api_client=None) -> None: + if api_client is None: + api_client = ApiClient.get_default() + self.api_client = api_client + + + @validate_call + async def backup_get( + self, + _request_timeout: Union[ + None, + Annotated[StrictFloat, Field(gt=0)], + Tuple[ + Annotated[StrictFloat, Field(gt=0)], + Annotated[StrictFloat, Field(gt=0)] + ] + ] = None, + _request_auth: Optional[Dict[StrictStr, Any]] = None, + _content_type: Optional[StrictStr] = None, + _headers: Optional[Dict[StrictStr, Any]] = None, + _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, + ) -> BackupListBackupsResponse: + """List available backups + + Returns the list of advisory feeds for which a backup can be requested + + :param _request_timeout: timeout setting for this request. If one + number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :type _request_timeout: int, tuple(int, int), optional + :param _request_auth: set to override the auth_settings for an a single + request; this effectively ignores the + authentication in the spec for a single request. + :type _request_auth: dict, optional + :param _content_type: force content-type for the request. + :type _content_type: str, Optional + :param _headers: set to override the headers for a single + request; this effectively ignores the headers + in the spec for a single request. + :type _headers: dict, optional + :param _host_index: set to override the host_index for a single + request; this effectively ignores the host_index + in the spec for a single request. + :type _host_index: int, optional + :return: Returns the result object. + """ # noqa: E501 + + _param = self._backup_get_serialize( + _request_auth=_request_auth, + _content_type=_content_type, + _headers=_headers, + _host_index=_host_index + ) + + _response_types_map: Dict[str, Optional[str]] = { + '200': "BackupListBackupsResponse", + '401': "str", + '503': "str", + } + response_data = await self.api_client.call_api( + *_param, + _request_timeout=_request_timeout + ) + await response_data.read() + return self.api_client.response_deserialize( + response_data=response_data, + response_types_map=_response_types_map, + ).data + + + @validate_call + async def backup_get_with_http_info( + self, + _request_timeout: Union[ + None, + Annotated[StrictFloat, Field(gt=0)], + Tuple[ + Annotated[StrictFloat, Field(gt=0)], + Annotated[StrictFloat, Field(gt=0)] + ] + ] = None, + _request_auth: Optional[Dict[StrictStr, Any]] = None, + _content_type: Optional[StrictStr] = None, + _headers: Optional[Dict[StrictStr, Any]] = None, + _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, + ) -> ApiResponse[BackupListBackupsResponse]: + """List available backups + + Returns the list of advisory feeds for which a backup can be requested + + :param _request_timeout: timeout setting for this request. If one + number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :type _request_timeout: int, tuple(int, int), optional + :param _request_auth: set to override the auth_settings for an a single + request; this effectively ignores the + authentication in the spec for a single request. + :type _request_auth: dict, optional + :param _content_type: force content-type for the request. + :type _content_type: str, Optional + :param _headers: set to override the headers for a single + request; this effectively ignores the headers + in the spec for a single request. + :type _headers: dict, optional + :param _host_index: set to override the host_index for a single + request; this effectively ignores the host_index + in the spec for a single request. + :type _host_index: int, optional + :return: Returns the result object. + """ # noqa: E501 + + _param = self._backup_get_serialize( + _request_auth=_request_auth, + _content_type=_content_type, + _headers=_headers, + _host_index=_host_index + ) + + _response_types_map: Dict[str, Optional[str]] = { + '200': "BackupListBackupsResponse", + '401': "str", + '503': "str", + } + response_data = await self.api_client.call_api( + *_param, + _request_timeout=_request_timeout + ) + await response_data.read() + return self.api_client.response_deserialize( + response_data=response_data, + response_types_map=_response_types_map, + ) + + + @validate_call + async def backup_get_without_preload_content( + self, + _request_timeout: Union[ + None, + Annotated[StrictFloat, Field(gt=0)], + Tuple[ + Annotated[StrictFloat, Field(gt=0)], + Annotated[StrictFloat, Field(gt=0)] + ] + ] = None, + _request_auth: Optional[Dict[StrictStr, Any]] = None, + _content_type: Optional[StrictStr] = None, + _headers: Optional[Dict[StrictStr, Any]] = None, + _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, + ) -> RESTResponseType: + """List available backups + + Returns the list of advisory feeds for which a backup can be requested + + :param _request_timeout: timeout setting for this request. If one + number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :type _request_timeout: int, tuple(int, int), optional + :param _request_auth: set to override the auth_settings for an a single + request; this effectively ignores the + authentication in the spec for a single request. + :type _request_auth: dict, optional + :param _content_type: force content-type for the request. + :type _content_type: str, Optional + :param _headers: set to override the headers for a single + request; this effectively ignores the headers + in the spec for a single request. + :type _headers: dict, optional + :param _host_index: set to override the host_index for a single + request; this effectively ignores the host_index + in the spec for a single request. + :type _host_index: int, optional + :return: Returns the result object. + """ # noqa: E501 + + _param = self._backup_get_serialize( + _request_auth=_request_auth, + _content_type=_content_type, + _headers=_headers, + _host_index=_host_index + ) + + _response_types_map: Dict[str, Optional[str]] = { + '200': "BackupListBackupsResponse", + '401': "str", + '503': "str", + } + response_data = await self.api_client.call_api( + *_param, + _request_timeout=_request_timeout + ) + return response_data.response + + + def _backup_get_serialize( + self, + _request_auth, + _content_type, + _headers, + _host_index, + ) -> RequestSerialized: + + _hosts = [ + 'https://api.vulncheck.com/v4' + ] + _host = _hosts[_host_index] + + _collection_formats: Dict[str, str] = { + } + + _path_params: Dict[str, str] = {} + _query_params: List[Tuple[str, str]] = [] + _header_params: Dict[str, Optional[str]] = _headers or {} + _form_params: List[Tuple[str, str]] = [] + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} + _body_params: Optional[bytes] = None + + # process the path parameters + # process the query parameters + # process the header parameters + # process the form parameters + # process the body parameter + + + # set the HTTP header `Accept` + if 'Accept' not in _header_params: + _header_params['Accept'] = self.api_client.select_header_accept( + [ + 'application/json' + ] + ) + + + # authentication setting + _auth_settings: List[str] = [ + 'Bearer' + ] + + return self.api_client.param_serialize( + method='GET', + resource_path='/backup', + path_params=_path_params, + query_params=_query_params, + header_params=_header_params, + body=_body_params, + post_params=_form_params, + files=_files, + auth_settings=_auth_settings, + collection_formats=_collection_formats, + _host=_host, + _request_auth=_request_auth + ) + + + + + @validate_call + async def backup_index_get( + self, + index: Annotated[StrictStr, Field(description="Feed name (e.g. 'vulncheck')")], + _request_timeout: Union[ + None, + Annotated[StrictFloat, Field(gt=0)], + Tuple[ + Annotated[StrictFloat, Field(gt=0)], + Annotated[StrictFloat, Field(gt=0)] + ] + ] = None, + _request_auth: Optional[Dict[StrictStr, Any]] = None, + _content_type: Optional[StrictStr] = None, + _headers: Optional[Dict[StrictStr, Any]] = None, + _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, + ) -> BackupBackupResponse: + """Get backup by feed name + + Validates the feed, generates a fresh backup zip if the source parquet is newer, and returns a pre-signed download URL + + :param index: Feed name (e.g. 'vulncheck') (required) + :type index: str + :param _request_timeout: timeout setting for this request. If one + number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :type _request_timeout: int, tuple(int, int), optional + :param _request_auth: set to override the auth_settings for an a single + request; this effectively ignores the + authentication in the spec for a single request. + :type _request_auth: dict, optional + :param _content_type: force content-type for the request. + :type _content_type: str, Optional + :param _headers: set to override the headers for a single + request; this effectively ignores the headers + in the spec for a single request. + :type _headers: dict, optional + :param _host_index: set to override the host_index for a single + request; this effectively ignores the host_index + in the spec for a single request. + :type _host_index: int, optional + :return: Returns the result object. + """ # noqa: E501 + + _param = self._backup_index_get_serialize( + index=index, + _request_auth=_request_auth, + _content_type=_content_type, + _headers=_headers, + _host_index=_host_index + ) + + _response_types_map: Dict[str, Optional[str]] = { + '200': "BackupBackupResponse", + '401': "str", + '404': "str", + '503': "str", + } + response_data = await self.api_client.call_api( + *_param, + _request_timeout=_request_timeout + ) + await response_data.read() + return self.api_client.response_deserialize( + response_data=response_data, + response_types_map=_response_types_map, + ).data + + + @validate_call + async def backup_index_get_with_http_info( + self, + index: Annotated[StrictStr, Field(description="Feed name (e.g. 'vulncheck')")], + _request_timeout: Union[ + None, + Annotated[StrictFloat, Field(gt=0)], + Tuple[ + Annotated[StrictFloat, Field(gt=0)], + Annotated[StrictFloat, Field(gt=0)] + ] + ] = None, + _request_auth: Optional[Dict[StrictStr, Any]] = None, + _content_type: Optional[StrictStr] = None, + _headers: Optional[Dict[StrictStr, Any]] = None, + _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, + ) -> ApiResponse[BackupBackupResponse]: + """Get backup by feed name + + Validates the feed, generates a fresh backup zip if the source parquet is newer, and returns a pre-signed download URL + + :param index: Feed name (e.g. 'vulncheck') (required) + :type index: str + :param _request_timeout: timeout setting for this request. If one + number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :type _request_timeout: int, tuple(int, int), optional + :param _request_auth: set to override the auth_settings for an a single + request; this effectively ignores the + authentication in the spec for a single request. + :type _request_auth: dict, optional + :param _content_type: force content-type for the request. + :type _content_type: str, Optional + :param _headers: set to override the headers for a single + request; this effectively ignores the headers + in the spec for a single request. + :type _headers: dict, optional + :param _host_index: set to override the host_index for a single + request; this effectively ignores the host_index + in the spec for a single request. + :type _host_index: int, optional + :return: Returns the result object. + """ # noqa: E501 + + _param = self._backup_index_get_serialize( + index=index, + _request_auth=_request_auth, + _content_type=_content_type, + _headers=_headers, + _host_index=_host_index + ) + + _response_types_map: Dict[str, Optional[str]] = { + '200': "BackupBackupResponse", + '401': "str", + '404': "str", + '503': "str", + } + response_data = await self.api_client.call_api( + *_param, + _request_timeout=_request_timeout + ) + await response_data.read() + return self.api_client.response_deserialize( + response_data=response_data, + response_types_map=_response_types_map, + ) + + + @validate_call + async def backup_index_get_without_preload_content( + self, + index: Annotated[StrictStr, Field(description="Feed name (e.g. 'vulncheck')")], + _request_timeout: Union[ + None, + Annotated[StrictFloat, Field(gt=0)], + Tuple[ + Annotated[StrictFloat, Field(gt=0)], + Annotated[StrictFloat, Field(gt=0)] + ] + ] = None, + _request_auth: Optional[Dict[StrictStr, Any]] = None, + _content_type: Optional[StrictStr] = None, + _headers: Optional[Dict[StrictStr, Any]] = None, + _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, + ) -> RESTResponseType: + """Get backup by feed name + + Validates the feed, generates a fresh backup zip if the source parquet is newer, and returns a pre-signed download URL + + :param index: Feed name (e.g. 'vulncheck') (required) + :type index: str + :param _request_timeout: timeout setting for this request. If one + number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :type _request_timeout: int, tuple(int, int), optional + :param _request_auth: set to override the auth_settings for an a single + request; this effectively ignores the + authentication in the spec for a single request. + :type _request_auth: dict, optional + :param _content_type: force content-type for the request. + :type _content_type: str, Optional + :param _headers: set to override the headers for a single + request; this effectively ignores the headers + in the spec for a single request. + :type _headers: dict, optional + :param _host_index: set to override the host_index for a single + request; this effectively ignores the host_index + in the spec for a single request. + :type _host_index: int, optional + :return: Returns the result object. + """ # noqa: E501 + + _param = self._backup_index_get_serialize( + index=index, + _request_auth=_request_auth, + _content_type=_content_type, + _headers=_headers, + _host_index=_host_index + ) + + _response_types_map: Dict[str, Optional[str]] = { + '200': "BackupBackupResponse", + '401': "str", + '404': "str", + '503': "str", + } + response_data = await self.api_client.call_api( + *_param, + _request_timeout=_request_timeout + ) + return response_data.response + + + def _backup_index_get_serialize( + self, + index, + _request_auth, + _content_type, + _headers, + _host_index, + ) -> RequestSerialized: + + _hosts = [ + 'https://api.vulncheck.com/v4' + ] + _host = _hosts[_host_index] + + _collection_formats: Dict[str, str] = { + } + + _path_params: Dict[str, str] = {} + _query_params: List[Tuple[str, str]] = [] + _header_params: Dict[str, Optional[str]] = _headers or {} + _form_params: List[Tuple[str, str]] = [] + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} + _body_params: Optional[bytes] = None + + # process the path parameters + if index is not None: + _path_params['index'] = index + # process the query parameters + # process the header parameters + # process the form parameters + # process the body parameter + + + # set the HTTP header `Accept` + if 'Accept' not in _header_params: + _header_params['Accept'] = self.api_client.select_header_accept( + [ + 'application/json' + ] + ) + + + # authentication setting + _auth_settings: List[str] = [ + 'Bearer' + ] + + return self.api_client.param_serialize( + method='GET', + resource_path='/backup/{index}', + path_params=_path_params, + query_params=_query_params, + header_params=_header_params, + body=_body_params, + post_params=_form_params, + files=_files, + auth_settings=_auth_settings, + collection_formats=_collection_formats, + _host=_host, + _request_auth=_request_auth + ) + + diff --git a/vulncheck_sdk/aio/api/endpoints_api.py b/vulncheck_sdk/aio/api/endpoints_api.py index 2f54b983..7cbfc3ec 100644 --- a/vulncheck_sdk/aio/api/endpoints_api.py +++ b/vulncheck_sdk/aio/api/endpoints_api.py @@ -21,10 +21,8 @@ from typing import Any, Dict, List, Optional from typing_extensions import Annotated from vulncheck_sdk.aio.models.models_entitlements import ModelsEntitlements -from vulncheck_sdk.aio.models.render_response_array_params_index_backup_list import RenderResponseArrayParamsIndexBackupList from vulncheck_sdk.aio.models.render_response_array_params_index_list import RenderResponseArrayParamsIndexList from vulncheck_sdk.aio.models.render_response_with_metadata_array_string_v3controllers_response_metadata import RenderResponseWithMetadataArrayStringV3controllersResponseMetadata -from vulncheck_sdk.aio.models.render_response_with_metadata_v3controllers_backup_response_data_v3controllers_backup_response_metadata import RenderResponseWithMetadataV3controllersBackupResponseDataV3controllersBackupResponseMetadata from vulncheck_sdk.aio.models.render_response_with_metadata_v3controllers_purl_response_data_v3controllers_purl_response_metadata import RenderResponseWithMetadataV3controllersPurlResponseDataV3controllersPurlResponseMetadata from vulncheck_sdk.aio.models.render_response_with_metadata_v3controllers_purls_response_data_v3controllers_purls_response_metadata import RenderResponseWithMetadataV3controllersPurlsResponseDataV3controllersPurlsResponseMetadata @@ -46,531 +44,6 @@ def __init__(self, api_client=None) -> None: self.api_client = api_client - @validate_call - async def backup_get( - self, - _request_timeout: Union[ - None, - Annotated[StrictFloat, Field(gt=0)], - Tuple[ - Annotated[StrictFloat, Field(gt=0)], - Annotated[StrictFloat, Field(gt=0)] - ] - ] = None, - _request_auth: Optional[Dict[StrictStr, Any]] = None, - _content_type: Optional[StrictStr] = None, - _headers: Optional[Dict[StrictStr, Any]] = None, - _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseArrayParamsIndexBackupList: - """Return a list of indexes with backup and endpoint links - - Return a list of indexes with backup and endpoint links that the user has access to - - :param _request_timeout: timeout setting for this request. If one - number provided, it will be total request - timeout. It can also be a pair (tuple) of - (connection, read) timeouts. - :type _request_timeout: int, tuple(int, int), optional - :param _request_auth: set to override the auth_settings for an a single - request; this effectively ignores the - authentication in the spec for a single request. - :type _request_auth: dict, optional - :param _content_type: force content-type for the request. - :type _content_type: str, Optional - :param _headers: set to override the headers for a single - request; this effectively ignores the headers - in the spec for a single request. - :type _headers: dict, optional - :param _host_index: set to override the host_index for a single - request; this effectively ignores the host_index - in the spec for a single request. - :type _host_index: int, optional - :return: Returns the result object. - """ # noqa: E501 - - _param = self._backup_get_serialize( - _request_auth=_request_auth, - _content_type=_content_type, - _headers=_headers, - _host_index=_host_index - ) - - _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseArrayParamsIndexBackupList", - '404': "str", - '500': "str", - } - response_data = await self.api_client.call_api( - *_param, - _request_timeout=_request_timeout - ) - await response_data.read() - return self.api_client.response_deserialize( - response_data=response_data, - response_types_map=_response_types_map, - ).data - - - @validate_call - async def backup_get_with_http_info( - self, - _request_timeout: Union[ - None, - Annotated[StrictFloat, Field(gt=0)], - Tuple[ - Annotated[StrictFloat, Field(gt=0)], - Annotated[StrictFloat, Field(gt=0)] - ] - ] = None, - _request_auth: Optional[Dict[StrictStr, Any]] = None, - _content_type: Optional[StrictStr] = None, - _headers: Optional[Dict[StrictStr, Any]] = None, - _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseArrayParamsIndexBackupList]: - """Return a list of indexes with backup and endpoint links - - Return a list of indexes with backup and endpoint links that the user has access to - - :param _request_timeout: timeout setting for this request. If one - number provided, it will be total request - timeout. It can also be a pair (tuple) of - (connection, read) timeouts. - :type _request_timeout: int, tuple(int, int), optional - :param _request_auth: set to override the auth_settings for an a single - request; this effectively ignores the - authentication in the spec for a single request. - :type _request_auth: dict, optional - :param _content_type: force content-type for the request. - :type _content_type: str, Optional - :param _headers: set to override the headers for a single - request; this effectively ignores the headers - in the spec for a single request. - :type _headers: dict, optional - :param _host_index: set to override the host_index for a single - request; this effectively ignores the host_index - in the spec for a single request. - :type _host_index: int, optional - :return: Returns the result object. - """ # noqa: E501 - - _param = self._backup_get_serialize( - _request_auth=_request_auth, - _content_type=_content_type, - _headers=_headers, - _host_index=_host_index - ) - - _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseArrayParamsIndexBackupList", - '404': "str", - '500': "str", - } - response_data = await self.api_client.call_api( - *_param, - _request_timeout=_request_timeout - ) - await response_data.read() - return self.api_client.response_deserialize( - response_data=response_data, - response_types_map=_response_types_map, - ) - - - @validate_call - async def backup_get_without_preload_content( - self, - _request_timeout: Union[ - None, - Annotated[StrictFloat, Field(gt=0)], - Tuple[ - Annotated[StrictFloat, Field(gt=0)], - Annotated[StrictFloat, Field(gt=0)] - ] - ] = None, - _request_auth: Optional[Dict[StrictStr, Any]] = None, - _content_type: Optional[StrictStr] = None, - _headers: Optional[Dict[StrictStr, Any]] = None, - _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RESTResponseType: - """Return a list of indexes with backup and endpoint links - - Return a list of indexes with backup and endpoint links that the user has access to - - :param _request_timeout: timeout setting for this request. If one - number provided, it will be total request - timeout. It can also be a pair (tuple) of - (connection, read) timeouts. - :type _request_timeout: int, tuple(int, int), optional - :param _request_auth: set to override the auth_settings for an a single - request; this effectively ignores the - authentication in the spec for a single request. - :type _request_auth: dict, optional - :param _content_type: force content-type for the request. - :type _content_type: str, Optional - :param _headers: set to override the headers for a single - request; this effectively ignores the headers - in the spec for a single request. - :type _headers: dict, optional - :param _host_index: set to override the host_index for a single - request; this effectively ignores the host_index - in the spec for a single request. - :type _host_index: int, optional - :return: Returns the result object. - """ # noqa: E501 - - _param = self._backup_get_serialize( - _request_auth=_request_auth, - _content_type=_content_type, - _headers=_headers, - _host_index=_host_index - ) - - _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseArrayParamsIndexBackupList", - '404': "str", - '500': "str", - } - response_data = await self.api_client.call_api( - *_param, - _request_timeout=_request_timeout - ) - return response_data.response - - - def _backup_get_serialize( - self, - _request_auth, - _content_type, - _headers, - _host_index, - ) -> RequestSerialized: - - _hosts = [ - 'https://api.vulncheck.com/v3' - ] - _host = _hosts[_host_index] - - _collection_formats: Dict[str, str] = { - } - - _path_params: Dict[str, str] = {} - _query_params: List[Tuple[str, str]] = [] - _header_params: Dict[str, Optional[str]] = _headers or {} - _form_params: List[Tuple[str, str]] = [] - _files: Dict[ - str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] - ] = {} - _body_params: Optional[bytes] = None - - # process the path parameters - # process the query parameters - # process the header parameters - # process the form parameters - # process the body parameter - - - # set the HTTP header `Accept` - if 'Accept' not in _header_params: - _header_params['Accept'] = self.api_client.select_header_accept( - [ - 'application/json' - ] - ) - - - # authentication setting - _auth_settings: List[str] = [ - 'Bearer' - ] - - return self.api_client.param_serialize( - method='GET', - resource_path='/backup', - path_params=_path_params, - query_params=_query_params, - header_params=_header_params, - body=_body_params, - post_params=_form_params, - files=_files, - auth_settings=_auth_settings, - collection_formats=_collection_formats, - _host=_host, - _request_auth=_request_auth - ) - - - - - @validate_call - async def backup_index_get( - self, - index: Annotated[StrictStr, Field(description="Name of an exploit, vulnerability, or advisory index")], - _request_timeout: Union[ - None, - Annotated[StrictFloat, Field(gt=0)], - Tuple[ - Annotated[StrictFloat, Field(gt=0)], - Annotated[StrictFloat, Field(gt=0)] - ] - ] = None, - _request_auth: Optional[Dict[StrictStr, Any]] = None, - _content_type: Optional[StrictStr] = None, - _headers: Optional[Dict[StrictStr, Any]] = None, - _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataV3controllersBackupResponseDataV3controllersBackupResponseMetadata: - """Retrieve a list of backups by index - - Retrieve a list of VulnCheck backups by index - - :param index: Name of an exploit, vulnerability, or advisory index (required) - :type index: str - :param _request_timeout: timeout setting for this request. If one - number provided, it will be total request - timeout. It can also be a pair (tuple) of - (connection, read) timeouts. - :type _request_timeout: int, tuple(int, int), optional - :param _request_auth: set to override the auth_settings for an a single - request; this effectively ignores the - authentication in the spec for a single request. - :type _request_auth: dict, optional - :param _content_type: force content-type for the request. - :type _content_type: str, Optional - :param _headers: set to override the headers for a single - request; this effectively ignores the headers - in the spec for a single request. - :type _headers: dict, optional - :param _host_index: set to override the host_index for a single - request; this effectively ignores the host_index - in the spec for a single request. - :type _host_index: int, optional - :return: Returns the result object. - """ # noqa: E501 - - _param = self._backup_index_get_serialize( - index=index, - _request_auth=_request_auth, - _content_type=_content_type, - _headers=_headers, - _host_index=_host_index - ) - - _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataV3controllersBackupResponseDataV3controllersBackupResponseMetadata", - '404': "str", - '500': "str", - } - response_data = await self.api_client.call_api( - *_param, - _request_timeout=_request_timeout - ) - await response_data.read() - return self.api_client.response_deserialize( - response_data=response_data, - response_types_map=_response_types_map, - ).data - - - @validate_call - async def backup_index_get_with_http_info( - self, - index: Annotated[StrictStr, Field(description="Name of an exploit, vulnerability, or advisory index")], - _request_timeout: Union[ - None, - Annotated[StrictFloat, Field(gt=0)], - Tuple[ - Annotated[StrictFloat, Field(gt=0)], - Annotated[StrictFloat, Field(gt=0)] - ] - ] = None, - _request_auth: Optional[Dict[StrictStr, Any]] = None, - _content_type: Optional[StrictStr] = None, - _headers: Optional[Dict[StrictStr, Any]] = None, - _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataV3controllersBackupResponseDataV3controllersBackupResponseMetadata]: - """Retrieve a list of backups by index - - Retrieve a list of VulnCheck backups by index - - :param index: Name of an exploit, vulnerability, or advisory index (required) - :type index: str - :param _request_timeout: timeout setting for this request. If one - number provided, it will be total request - timeout. It can also be a pair (tuple) of - (connection, read) timeouts. - :type _request_timeout: int, tuple(int, int), optional - :param _request_auth: set to override the auth_settings for an a single - request; this effectively ignores the - authentication in the spec for a single request. - :type _request_auth: dict, optional - :param _content_type: force content-type for the request. - :type _content_type: str, Optional - :param _headers: set to override the headers for a single - request; this effectively ignores the headers - in the spec for a single request. - :type _headers: dict, optional - :param _host_index: set to override the host_index for a single - request; this effectively ignores the host_index - in the spec for a single request. - :type _host_index: int, optional - :return: Returns the result object. - """ # noqa: E501 - - _param = self._backup_index_get_serialize( - index=index, - _request_auth=_request_auth, - _content_type=_content_type, - _headers=_headers, - _host_index=_host_index - ) - - _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataV3controllersBackupResponseDataV3controllersBackupResponseMetadata", - '404': "str", - '500': "str", - } - response_data = await self.api_client.call_api( - *_param, - _request_timeout=_request_timeout - ) - await response_data.read() - return self.api_client.response_deserialize( - response_data=response_data, - response_types_map=_response_types_map, - ) - - - @validate_call - async def backup_index_get_without_preload_content( - self, - index: Annotated[StrictStr, Field(description="Name of an exploit, vulnerability, or advisory index")], - _request_timeout: Union[ - None, - Annotated[StrictFloat, Field(gt=0)], - Tuple[ - Annotated[StrictFloat, Field(gt=0)], - Annotated[StrictFloat, Field(gt=0)] - ] - ] = None, - _request_auth: Optional[Dict[StrictStr, Any]] = None, - _content_type: Optional[StrictStr] = None, - _headers: Optional[Dict[StrictStr, Any]] = None, - _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RESTResponseType: - """Retrieve a list of backups by index - - Retrieve a list of VulnCheck backups by index - - :param index: Name of an exploit, vulnerability, or advisory index (required) - :type index: str - :param _request_timeout: timeout setting for this request. If one - number provided, it will be total request - timeout. It can also be a pair (tuple) of - (connection, read) timeouts. - :type _request_timeout: int, tuple(int, int), optional - :param _request_auth: set to override the auth_settings for an a single - request; this effectively ignores the - authentication in the spec for a single request. - :type _request_auth: dict, optional - :param _content_type: force content-type for the request. - :type _content_type: str, Optional - :param _headers: set to override the headers for a single - request; this effectively ignores the headers - in the spec for a single request. - :type _headers: dict, optional - :param _host_index: set to override the host_index for a single - request; this effectively ignores the host_index - in the spec for a single request. - :type _host_index: int, optional - :return: Returns the result object. - """ # noqa: E501 - - _param = self._backup_index_get_serialize( - index=index, - _request_auth=_request_auth, - _content_type=_content_type, - _headers=_headers, - _host_index=_host_index - ) - - _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataV3controllersBackupResponseDataV3controllersBackupResponseMetadata", - '404': "str", - '500': "str", - } - response_data = await self.api_client.call_api( - *_param, - _request_timeout=_request_timeout - ) - return response_data.response - - - def _backup_index_get_serialize( - self, - index, - _request_auth, - _content_type, - _headers, - _host_index, - ) -> RequestSerialized: - - _hosts = [ - 'https://api.vulncheck.com/v3' - ] - _host = _hosts[_host_index] - - _collection_formats: Dict[str, str] = { - } - - _path_params: Dict[str, str] = {} - _query_params: List[Tuple[str, str]] = [] - _header_params: Dict[str, Optional[str]] = _headers or {} - _form_params: List[Tuple[str, str]] = [] - _files: Dict[ - str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] - ] = {} - _body_params: Optional[bytes] = None - - # process the path parameters - if index is not None: - _path_params['index'] = index - # process the query parameters - # process the header parameters - # process the form parameters - # process the body parameter - - - # set the HTTP header `Accept` - if 'Accept' not in _header_params: - _header_params['Accept'] = self.api_client.select_header_accept( - [ - 'application/json' - ] - ) - - - # authentication setting - _auth_settings: List[str] = [ - 'Bearer' - ] - - return self.api_client.param_serialize( - method='GET', - resource_path='/backup/{index}', - path_params=_path_params, - query_params=_query_params, - header_params=_header_params, - body=_body_params, - post_params=_form_params, - files=_files, - auth_settings=_auth_settings, - collection_formats=_collection_formats, - _host=_host, - _request_auth=_request_auth - ) - - - - @validate_call async def cpe_get( self, diff --git a/vulncheck_sdk/aio/api/indices_api.py b/vulncheck_sdk/aio/api/indices_api.py index 7ff55177..80a3551a 100644 --- a/vulncheck_sdk/aio/api/indices_api.py +++ b/vulncheck_sdk/aio/api/indices_api.py @@ -256,6 +256,7 @@ from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_ma_cert_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMACertPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_m_files_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMFilesPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_malicious_package_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMaliciousPackagePaginatePagination +from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_malicious_vs_code_exts_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_manage_engine_advisory_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryManageEngineAdvisoryPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_mbed_tls_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMbedTLSPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_mc_afee_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMcAfeePaginatePagination @@ -174545,6 +174546,669 @@ def _index_malicious_packages_get_serialize( + @validate_call + async def index_malicious_vscode_exts_get( + self, + page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, + limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, + cursor: Annotated[Optional[StrictStr], Field(description="continue server-side paging using a cursor id")] = None, + start_cursor: Annotated[Optional[StrictStr], Field(description="request server-side paging")] = None, + order: Annotated[Optional[StrictStr], Field(description="direction of the sort")] = None, + sort: Annotated[Optional[StrictStr], Field(description="field by which to sort the results")] = None, + cve: Annotated[Optional[StrictStr], Field(description="Specify a CVE ID to search with.")] = None, + alias: Annotated[Optional[StrictStr], Field(description="Specify a vulnerability alias to search with.")] = None, + iava: Annotated[Optional[StrictStr], Field(description="Specify an IAVA ID to search with.")] = None, + jvndb: Annotated[Optional[StrictStr], Field(description="Specify a JVNDB ID to search with.")] = None, + ilvn: Annotated[Optional[StrictStr], Field(description="Specify an ILVN ID to search with.")] = None, + threat_actor: Annotated[Optional[StrictStr], Field(description="Specify a threat actor name to search with.")] = None, + mitre_id: Annotated[Optional[StrictStr], Field(description="Specify a MITRE ID to search with.")] = None, + misp_id: Annotated[Optional[StrictStr], Field(description="Specify a MISP ID to search with.")] = None, + ransomware: Annotated[Optional[StrictStr], Field(description="Specify a ransomeware family name to search with.")] = None, + botnet: Annotated[Optional[StrictStr], Field(description="Specify a botnet name to search with.")] = None, + published: Annotated[Optional[StrictStr], Field(description="Specify a published date")] = None, + date: Annotated[Optional[StrictStr], Field(description="Specify an exact published date to filter with.")] = None, + updated_at_start_date: Annotated[Optional[StrictStr], Field(description="Specify a starting 'updated-at' date to filter with.")] = None, + updated_at_end_date: Annotated[Optional[StrictStr], Field(description="Specify an ending 'updated-at' date to filter with.")] = None, + last_mod_start_date: Annotated[Optional[StrictStr], Field(description="Specify a starting last modified date to filter with.")] = None, + last_mod_end_date: Annotated[Optional[StrictStr], Field(description="Specify an ending last modified date to filter with.")] = None, + pub_start_date: Annotated[Optional[StrictStr], Field(description="Specify a starting published date to filter with.")] = None, + pub_end_date: Annotated[Optional[StrictStr], Field(description="Specify an ending published date to filter with.")] = None, + _request_timeout: Union[ + None, + Annotated[StrictFloat, Field(gt=0)], + Tuple[ + Annotated[StrictFloat, Field(gt=0)], + Annotated[StrictFloat, Field(gt=0)] + ] + ] = None, + _request_auth: Optional[Dict[StrictStr, Any]] = None, + _content_type: Optional[StrictStr] = None, + _headers: Optional[Dict[StrictStr, Any]] = None, + _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, + ) -> RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination: + """Return vulnerability data stored in index \"malicious-vscode-exts\" + + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the malicious-vscode-exts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Malicious Visual Studio Code Extensions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-vscode-exts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/malicious-vscode-exts?cursor=` + + :param page: set the page number of the response + :type page: int + :param limit: limit the number of findings in the response + :type limit: int + :param cursor: continue server-side paging using a cursor id + :type cursor: str + :param start_cursor: request server-side paging + :type start_cursor: str + :param order: direction of the sort + :type order: str + :param sort: field by which to sort the results + :type sort: str + :param cve: Specify a CVE ID to search with. + :type cve: str + :param alias: Specify a vulnerability alias to search with. + :type alias: str + :param iava: Specify an IAVA ID to search with. + :type iava: str + :param jvndb: Specify a JVNDB ID to search with. + :type jvndb: str + :param ilvn: Specify an ILVN ID to search with. + :type ilvn: str + :param threat_actor: Specify a threat actor name to search with. + :type threat_actor: str + :param mitre_id: Specify a MITRE ID to search with. + :type mitre_id: str + :param misp_id: Specify a MISP ID to search with. + :type misp_id: str + :param ransomware: Specify a ransomeware family name to search with. + :type ransomware: str + :param botnet: Specify a botnet name to search with. + :type botnet: str + :param published: Specify a published date + :type published: str + :param date: Specify an exact published date to filter with. + :type date: str + :param updated_at_start_date: Specify a starting 'updated-at' date to filter with. + :type updated_at_start_date: str + :param updated_at_end_date: Specify an ending 'updated-at' date to filter with. + :type updated_at_end_date: str + :param last_mod_start_date: Specify a starting last modified date to filter with. + :type last_mod_start_date: str + :param last_mod_end_date: Specify an ending last modified date to filter with. + :type last_mod_end_date: str + :param pub_start_date: Specify a starting published date to filter with. + :type pub_start_date: str + :param pub_end_date: Specify an ending published date to filter with. + :type pub_end_date: str + :param _request_timeout: timeout setting for this request. If one + number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :type _request_timeout: int, tuple(int, int), optional + :param _request_auth: set to override the auth_settings for an a single + request; this effectively ignores the + authentication in the spec for a single request. + :type _request_auth: dict, optional + :param _content_type: force content-type for the request. + :type _content_type: str, Optional + :param _headers: set to override the headers for a single + request; this effectively ignores the headers + in the spec for a single request. + :type _headers: dict, optional + :param _host_index: set to override the host_index for a single + request; this effectively ignores the host_index + in the spec for a single request. + :type _host_index: int, optional + :return: Returns the result object. + """ # noqa: E501 + + _param = self._index_malicious_vscode_exts_get_serialize( + page=page, + limit=limit, + cursor=cursor, + start_cursor=start_cursor, + order=order, + sort=sort, + cve=cve, + alias=alias, + iava=iava, + jvndb=jvndb, + ilvn=ilvn, + threat_actor=threat_actor, + mitre_id=mitre_id, + misp_id=misp_id, + ransomware=ransomware, + botnet=botnet, + published=published, + date=date, + updated_at_start_date=updated_at_start_date, + updated_at_end_date=updated_at_end_date, + last_mod_start_date=last_mod_start_date, + last_mod_end_date=last_mod_end_date, + pub_start_date=pub_start_date, + pub_end_date=pub_end_date, + _request_auth=_request_auth, + _content_type=_content_type, + _headers=_headers, + _host_index=_host_index + ) + + _response_types_map: Dict[str, Optional[str]] = { + '200': "RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination", + '404': "str", + '500': "str", + } + response_data = await self.api_client.call_api( + *_param, + _request_timeout=_request_timeout + ) + await response_data.read() + return self.api_client.response_deserialize( + response_data=response_data, + response_types_map=_response_types_map, + ).data + + + @validate_call + async def index_malicious_vscode_exts_get_with_http_info( + self, + page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, + limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, + cursor: Annotated[Optional[StrictStr], Field(description="continue server-side paging using a cursor id")] = None, + start_cursor: Annotated[Optional[StrictStr], Field(description="request server-side paging")] = None, + order: Annotated[Optional[StrictStr], Field(description="direction of the sort")] = None, + sort: Annotated[Optional[StrictStr], Field(description="field by which to sort the results")] = None, + cve: Annotated[Optional[StrictStr], Field(description="Specify a CVE ID to search with.")] = None, + alias: Annotated[Optional[StrictStr], Field(description="Specify a vulnerability alias to search with.")] = None, + iava: Annotated[Optional[StrictStr], Field(description="Specify an IAVA ID to search with.")] = None, + jvndb: Annotated[Optional[StrictStr], Field(description="Specify a JVNDB ID to search with.")] = None, + ilvn: Annotated[Optional[StrictStr], Field(description="Specify an ILVN ID to search with.")] = None, + threat_actor: Annotated[Optional[StrictStr], Field(description="Specify a threat actor name to search with.")] = None, + mitre_id: Annotated[Optional[StrictStr], Field(description="Specify a MITRE ID to search with.")] = None, + misp_id: Annotated[Optional[StrictStr], Field(description="Specify a MISP ID to search with.")] = None, + ransomware: Annotated[Optional[StrictStr], Field(description="Specify a ransomeware family name to search with.")] = None, + botnet: Annotated[Optional[StrictStr], Field(description="Specify a botnet name to search with.")] = None, + published: Annotated[Optional[StrictStr], Field(description="Specify a published date")] = None, + date: Annotated[Optional[StrictStr], Field(description="Specify an exact published date to filter with.")] = None, + updated_at_start_date: Annotated[Optional[StrictStr], Field(description="Specify a starting 'updated-at' date to filter with.")] = None, + updated_at_end_date: Annotated[Optional[StrictStr], Field(description="Specify an ending 'updated-at' date to filter with.")] = None, + last_mod_start_date: Annotated[Optional[StrictStr], Field(description="Specify a starting last modified date to filter with.")] = None, + last_mod_end_date: Annotated[Optional[StrictStr], Field(description="Specify an ending last modified date to filter with.")] = None, + pub_start_date: Annotated[Optional[StrictStr], Field(description="Specify a starting published date to filter with.")] = None, + pub_end_date: Annotated[Optional[StrictStr], Field(description="Specify an ending published date to filter with.")] = None, + _request_timeout: Union[ + None, + Annotated[StrictFloat, Field(gt=0)], + Tuple[ + Annotated[StrictFloat, Field(gt=0)], + Annotated[StrictFloat, Field(gt=0)] + ] + ] = None, + _request_auth: Optional[Dict[StrictStr, Any]] = None, + _content_type: Optional[StrictStr] = None, + _headers: Optional[Dict[StrictStr, Any]] = None, + _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination]: + """Return vulnerability data stored in index \"malicious-vscode-exts\" + + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the malicious-vscode-exts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Malicious Visual Studio Code Extensions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-vscode-exts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/malicious-vscode-exts?cursor=` + + :param page: set the page number of the response + :type page: int + :param limit: limit the number of findings in the response + :type limit: int + :param cursor: continue server-side paging using a cursor id + :type cursor: str + :param start_cursor: request server-side paging + :type start_cursor: str + :param order: direction of the sort + :type order: str + :param sort: field by which to sort the results + :type sort: str + :param cve: Specify a CVE ID to search with. + :type cve: str + :param alias: Specify a vulnerability alias to search with. + :type alias: str + :param iava: Specify an IAVA ID to search with. + :type iava: str + :param jvndb: Specify a JVNDB ID to search with. + :type jvndb: str + :param ilvn: Specify an ILVN ID to search with. + :type ilvn: str + :param threat_actor: Specify a threat actor name to search with. + :type threat_actor: str + :param mitre_id: Specify a MITRE ID to search with. + :type mitre_id: str + :param misp_id: Specify a MISP ID to search with. + :type misp_id: str + :param ransomware: Specify a ransomeware family name to search with. + :type ransomware: str + :param botnet: Specify a botnet name to search with. + :type botnet: str + :param published: Specify a published date + :type published: str + :param date: Specify an exact published date to filter with. + :type date: str + :param updated_at_start_date: Specify a starting 'updated-at' date to filter with. + :type updated_at_start_date: str + :param updated_at_end_date: Specify an ending 'updated-at' date to filter with. + :type updated_at_end_date: str + :param last_mod_start_date: Specify a starting last modified date to filter with. + :type last_mod_start_date: str + :param last_mod_end_date: Specify an ending last modified date to filter with. + :type last_mod_end_date: str + :param pub_start_date: Specify a starting published date to filter with. + :type pub_start_date: str + :param pub_end_date: Specify an ending published date to filter with. + :type pub_end_date: str + :param _request_timeout: timeout setting for this request. If one + number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :type _request_timeout: int, tuple(int, int), optional + :param _request_auth: set to override the auth_settings for an a single + request; this effectively ignores the + authentication in the spec for a single request. + :type _request_auth: dict, optional + :param _content_type: force content-type for the request. + :type _content_type: str, Optional + :param _headers: set to override the headers for a single + request; this effectively ignores the headers + in the spec for a single request. + :type _headers: dict, optional + :param _host_index: set to override the host_index for a single + request; this effectively ignores the host_index + in the spec for a single request. + :type _host_index: int, optional + :return: Returns the result object. + """ # noqa: E501 + + _param = self._index_malicious_vscode_exts_get_serialize( + page=page, + limit=limit, + cursor=cursor, + start_cursor=start_cursor, + order=order, + sort=sort, + cve=cve, + alias=alias, + iava=iava, + jvndb=jvndb, + ilvn=ilvn, + threat_actor=threat_actor, + mitre_id=mitre_id, + misp_id=misp_id, + ransomware=ransomware, + botnet=botnet, + published=published, + date=date, + updated_at_start_date=updated_at_start_date, + updated_at_end_date=updated_at_end_date, + last_mod_start_date=last_mod_start_date, + last_mod_end_date=last_mod_end_date, + pub_start_date=pub_start_date, + pub_end_date=pub_end_date, + _request_auth=_request_auth, + _content_type=_content_type, + _headers=_headers, + _host_index=_host_index + ) + + _response_types_map: Dict[str, Optional[str]] = { + '200': "RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination", + '404': "str", + '500': "str", + } + response_data = await self.api_client.call_api( + *_param, + _request_timeout=_request_timeout + ) + await response_data.read() + return self.api_client.response_deserialize( + response_data=response_data, + response_types_map=_response_types_map, + ) + + + @validate_call + async def index_malicious_vscode_exts_get_without_preload_content( + self, + page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, + limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, + cursor: Annotated[Optional[StrictStr], Field(description="continue server-side paging using a cursor id")] = None, + start_cursor: Annotated[Optional[StrictStr], Field(description="request server-side paging")] = None, + order: Annotated[Optional[StrictStr], Field(description="direction of the sort")] = None, + sort: Annotated[Optional[StrictStr], Field(description="field by which to sort the results")] = None, + cve: Annotated[Optional[StrictStr], Field(description="Specify a CVE ID to search with.")] = None, + alias: Annotated[Optional[StrictStr], Field(description="Specify a vulnerability alias to search with.")] = None, + iava: Annotated[Optional[StrictStr], Field(description="Specify an IAVA ID to search with.")] = None, + jvndb: Annotated[Optional[StrictStr], Field(description="Specify a JVNDB ID to search with.")] = None, + ilvn: Annotated[Optional[StrictStr], Field(description="Specify an ILVN ID to search with.")] = None, + threat_actor: Annotated[Optional[StrictStr], Field(description="Specify a threat actor name to search with.")] = None, + mitre_id: Annotated[Optional[StrictStr], Field(description="Specify a MITRE ID to search with.")] = None, + misp_id: Annotated[Optional[StrictStr], Field(description="Specify a MISP ID to search with.")] = None, + ransomware: Annotated[Optional[StrictStr], Field(description="Specify a ransomeware family name to search with.")] = None, + botnet: Annotated[Optional[StrictStr], Field(description="Specify a botnet name to search with.")] = None, + published: Annotated[Optional[StrictStr], Field(description="Specify a published date")] = None, + date: Annotated[Optional[StrictStr], Field(description="Specify an exact published date to filter with.")] = None, + updated_at_start_date: Annotated[Optional[StrictStr], Field(description="Specify a starting 'updated-at' date to filter with.")] = None, + updated_at_end_date: Annotated[Optional[StrictStr], Field(description="Specify an ending 'updated-at' date to filter with.")] = None, + last_mod_start_date: Annotated[Optional[StrictStr], Field(description="Specify a starting last modified date to filter with.")] = None, + last_mod_end_date: Annotated[Optional[StrictStr], Field(description="Specify an ending last modified date to filter with.")] = None, + pub_start_date: Annotated[Optional[StrictStr], Field(description="Specify a starting published date to filter with.")] = None, + pub_end_date: Annotated[Optional[StrictStr], Field(description="Specify an ending published date to filter with.")] = None, + _request_timeout: Union[ + None, + Annotated[StrictFloat, Field(gt=0)], + Tuple[ + Annotated[StrictFloat, Field(gt=0)], + Annotated[StrictFloat, Field(gt=0)] + ] + ] = None, + _request_auth: Optional[Dict[StrictStr, Any]] = None, + _content_type: Optional[StrictStr] = None, + _headers: Optional[Dict[StrictStr, Any]] = None, + _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, + ) -> RESTResponseType: + """Return vulnerability data stored in index \"malicious-vscode-exts\" + + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the malicious-vscode-exts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Malicious Visual Studio Code Extensions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-vscode-exts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/malicious-vscode-exts?cursor=` + + :param page: set the page number of the response + :type page: int + :param limit: limit the number of findings in the response + :type limit: int + :param cursor: continue server-side paging using a cursor id + :type cursor: str + :param start_cursor: request server-side paging + :type start_cursor: str + :param order: direction of the sort + :type order: str + :param sort: field by which to sort the results + :type sort: str + :param cve: Specify a CVE ID to search with. + :type cve: str + :param alias: Specify a vulnerability alias to search with. + :type alias: str + :param iava: Specify an IAVA ID to search with. + :type iava: str + :param jvndb: Specify a JVNDB ID to search with. + :type jvndb: str + :param ilvn: Specify an ILVN ID to search with. + :type ilvn: str + :param threat_actor: Specify a threat actor name to search with. + :type threat_actor: str + :param mitre_id: Specify a MITRE ID to search with. + :type mitre_id: str + :param misp_id: Specify a MISP ID to search with. + :type misp_id: str + :param ransomware: Specify a ransomeware family name to search with. + :type ransomware: str + :param botnet: Specify a botnet name to search with. + :type botnet: str + :param published: Specify a published date + :type published: str + :param date: Specify an exact published date to filter with. + :type date: str + :param updated_at_start_date: Specify a starting 'updated-at' date to filter with. + :type updated_at_start_date: str + :param updated_at_end_date: Specify an ending 'updated-at' date to filter with. + :type updated_at_end_date: str + :param last_mod_start_date: Specify a starting last modified date to filter with. + :type last_mod_start_date: str + :param last_mod_end_date: Specify an ending last modified date to filter with. + :type last_mod_end_date: str + :param pub_start_date: Specify a starting published date to filter with. + :type pub_start_date: str + :param pub_end_date: Specify an ending published date to filter with. + :type pub_end_date: str + :param _request_timeout: timeout setting for this request. If one + number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :type _request_timeout: int, tuple(int, int), optional + :param _request_auth: set to override the auth_settings for an a single + request; this effectively ignores the + authentication in the spec for a single request. + :type _request_auth: dict, optional + :param _content_type: force content-type for the request. + :type _content_type: str, Optional + :param _headers: set to override the headers for a single + request; this effectively ignores the headers + in the spec for a single request. + :type _headers: dict, optional + :param _host_index: set to override the host_index for a single + request; this effectively ignores the host_index + in the spec for a single request. + :type _host_index: int, optional + :return: Returns the result object. + """ # noqa: E501 + + _param = self._index_malicious_vscode_exts_get_serialize( + page=page, + limit=limit, + cursor=cursor, + start_cursor=start_cursor, + order=order, + sort=sort, + cve=cve, + alias=alias, + iava=iava, + jvndb=jvndb, + ilvn=ilvn, + threat_actor=threat_actor, + mitre_id=mitre_id, + misp_id=misp_id, + ransomware=ransomware, + botnet=botnet, + published=published, + date=date, + updated_at_start_date=updated_at_start_date, + updated_at_end_date=updated_at_end_date, + last_mod_start_date=last_mod_start_date, + last_mod_end_date=last_mod_end_date, + pub_start_date=pub_start_date, + pub_end_date=pub_end_date, + _request_auth=_request_auth, + _content_type=_content_type, + _headers=_headers, + _host_index=_host_index + ) + + _response_types_map: Dict[str, Optional[str]] = { + '200': "RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination", + '404': "str", + '500': "str", + } + response_data = await self.api_client.call_api( + *_param, + _request_timeout=_request_timeout + ) + return response_data.response + + + def _index_malicious_vscode_exts_get_serialize( + self, + page, + limit, + cursor, + start_cursor, + order, + sort, + cve, + alias, + iava, + jvndb, + ilvn, + threat_actor, + mitre_id, + misp_id, + ransomware, + botnet, + published, + date, + updated_at_start_date, + updated_at_end_date, + last_mod_start_date, + last_mod_end_date, + pub_start_date, + pub_end_date, + _request_auth, + _content_type, + _headers, + _host_index, + ) -> RequestSerialized: + + _hosts = [ + 'https://api.vulncheck.com/v3' + ] + _host = _hosts[_host_index] + + _collection_formats: Dict[str, str] = { + } + + _path_params: Dict[str, str] = {} + _query_params: List[Tuple[str, str]] = [] + _header_params: Dict[str, Optional[str]] = _headers or {} + _form_params: List[Tuple[str, str]] = [] + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} + _body_params: Optional[bytes] = None + + # process the path parameters + # process the query parameters + if page is not None: + + _query_params.append(('page', page)) + + if limit is not None: + + _query_params.append(('limit', limit)) + + if cursor is not None: + + _query_params.append(('cursor', cursor)) + + if start_cursor is not None: + + _query_params.append(('start_cursor', start_cursor)) + + if order is not None: + + _query_params.append(('order', order)) + + if sort is not None: + + _query_params.append(('sort', sort)) + + if cve is not None: + + _query_params.append(('cve', cve)) + + if alias is not None: + + _query_params.append(('alias', alias)) + + if iava is not None: + + _query_params.append(('iava', iava)) + + if jvndb is not None: + + _query_params.append(('jvndb', jvndb)) + + if ilvn is not None: + + _query_params.append(('ilvn', ilvn)) + + if threat_actor is not None: + + _query_params.append(('threat_actor', threat_actor)) + + if mitre_id is not None: + + _query_params.append(('mitre_id', mitre_id)) + + if misp_id is not None: + + _query_params.append(('misp_id', misp_id)) + + if ransomware is not None: + + _query_params.append(('ransomware', ransomware)) + + if botnet is not None: + + _query_params.append(('botnet', botnet)) + + if published is not None: + + _query_params.append(('published', published)) + + if date is not None: + + _query_params.append(('date', date)) + + if updated_at_start_date is not None: + + _query_params.append(('updatedAtStartDate', updated_at_start_date)) + + if updated_at_end_date is not None: + + _query_params.append(('updatedAtEndDate', updated_at_end_date)) + + if last_mod_start_date is not None: + + _query_params.append(('lastModStartDate', last_mod_start_date)) + + if last_mod_end_date is not None: + + _query_params.append(('lastModEndDate', last_mod_end_date)) + + if pub_start_date is not None: + + _query_params.append(('pubStartDate', pub_start_date)) + + if pub_end_date is not None: + + _query_params.append(('pubEndDate', pub_end_date)) + + # process the header parameters + # process the form parameters + # process the body parameter + + + # set the HTTP header `Accept` + if 'Accept' not in _header_params: + _header_params['Accept'] = self.api_client.select_header_accept( + [ + 'application/json' + ] + ) + + + # authentication setting + _auth_settings: List[str] = [ + 'Bearer' + ] + + return self.api_client.param_serialize( + method='GET', + resource_path='/index/malicious-vscode-exts', + path_params=_path_params, + query_params=_query_params, + header_params=_header_params, + body=_body_params, + post_params=_form_params, + files=_files, + auth_settings=_auth_settings, + collection_formats=_collection_formats, + _host=_host, + _request_auth=_request_auth + ) + + + + @validate_call async def index_manageengine_get( self, diff --git a/vulncheck_sdk/aio/api_client.py b/vulncheck_sdk/aio/api_client.py index 7a3c5ebf..84caaf1d 100644 --- a/vulncheck_sdk/aio/api_client.py +++ b/vulncheck_sdk/aio/api_client.py @@ -92,7 +92,7 @@ def __init__( self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'OpenAPI-Generator/0.0.42/python' + self.user_agent = 'OpenAPI-Generator/0.0.43/python' self.client_side_validation = configuration.client_side_validation async def __aenter__(self): diff --git a/vulncheck_sdk/aio/configuration.py b/vulncheck_sdk/aio/configuration.py index 58b48ab9..6b21a614 100644 --- a/vulncheck_sdk/aio/configuration.py +++ b/vulncheck_sdk/aio/configuration.py @@ -532,7 +532,7 @@ def to_debug_report(self) -> str: "OS: {env}\n"\ "Python Version: {pyversion}\n"\ "Version of the API: latest\n"\ - "SDK Package Version: 0.0.42".\ + "SDK Package Version: 0.0.43".\ format(env=sys.platform, pyversion=sys.version) def get_host_settings(self) -> List[HostSetting]: diff --git a/vulncheck_sdk/aio/models/__init__.py b/vulncheck_sdk/aio/models/__init__.py index c7d04bf0..16b2dd85 100644 --- a/vulncheck_sdk/aio/models/__init__.py +++ b/vulncheck_sdk/aio/models/__init__.py @@ -209,6 +209,7 @@ from vulncheck_sdk.aio.models.advisory_curl_cwe import AdvisoryCurlCWE from vulncheck_sdk.aio.models.advisory_curl_credit import AdvisoryCurlCredit from vulncheck_sdk.aio.models.advisory_curl_range import AdvisoryCurlRange +from vulncheck_sdk.aio.models.advisory_custom_cpe import AdvisoryCustomCPE from vulncheck_sdk.aio.models.advisory_cvrf import AdvisoryCvrf from vulncheck_sdk.aio.models.advisory_cvsss_v23 import AdvisoryCvsssV23 from vulncheck_sdk.aio.models.advisory_cwe import AdvisoryCwe @@ -410,6 +411,7 @@ from vulncheck_sdk.aio.models.advisory_m_version import AdvisoryMVersion from vulncheck_sdk.aio.models.advisory_m_vulnerability import AdvisoryMVulnerability from vulncheck_sdk.aio.models.advisory_malicious_package import AdvisoryMaliciousPackage +from vulncheck_sdk.aio.models.advisory_malicious_vs_code_exts import AdvisoryMaliciousVSCodeExts from vulncheck_sdk.aio.models.advisory_manage_engine import AdvisoryManageEngine from vulncheck_sdk.aio.models.advisory_manage_engine_advisory import AdvisoryManageEngineAdvisory from vulncheck_sdk.aio.models.advisory_mbed_tls import AdvisoryMbedTLS @@ -842,6 +844,9 @@ from vulncheck_sdk.aio.models.api_update import ApiUpdate from vulncheck_sdk.aio.models.api_vuln_check_canary import ApiVulnCheckCanary from vulncheck_sdk.aio.models.api_vulnerability_alias import ApiVulnerabilityAlias +from vulncheck_sdk.aio.models.backup_backup_response import BackupBackupResponse +from vulncheck_sdk.aio.models.backup_feed_item import BackupFeedItem +from vulncheck_sdk.aio.models.backup_list_backups_response import BackupListBackupsResponse from vulncheck_sdk.aio.models.models_entitlements import ModelsEntitlements from vulncheck_sdk.aio.models.paginate_match import PaginateMatch from vulncheck_sdk.aio.models.paginate_pagination import PaginatePagination @@ -1092,6 +1097,7 @@ from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_ma_cert_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMACertPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_m_files_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMFilesPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_malicious_package_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMaliciousPackagePaginatePagination +from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_malicious_vs_code_exts_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_manage_engine_advisory_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryManageEngineAdvisoryPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_mbed_tls_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMbedTLSPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_mc_afee_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMcAfeePaginatePagination diff --git a/vulncheck_sdk/aio/models/advisory_apache_arrow.py b/vulncheck_sdk/aio/models/advisory_apache_arrow.py index a2480230..d242198e 100644 --- a/vulncheck_sdk/aio/models/advisory_apache_arrow.py +++ b/vulncheck_sdk/aio/models/advisory_apache_arrow.py @@ -31,8 +31,9 @@ class AdvisoryApacheArrow(BaseModel): date_added: Optional[StrictStr] = None summary: Optional[StrictStr] = None title: Optional[StrictStr] = None + updated_at: Optional[StrictStr] = None url: Optional[StrictStr] = None - __properties: ClassVar[List[str]] = ["cve", "date_added", "summary", "title", "url"] + __properties: ClassVar[List[str]] = ["cve", "date_added", "summary", "title", "updated_at", "url"] model_config = ConfigDict( populate_by_name=True, @@ -89,6 +90,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "date_added": obj.get("date_added"), "summary": obj.get("summary"), "title": obj.get("title"), + "updated_at": obj.get("updated_at"), "url": obj.get("url") }) return _obj diff --git a/vulncheck_sdk/aio/models/advisory_apache_superset.py b/vulncheck_sdk/aio/models/advisory_apache_superset.py index 2a96619d..ba51785a 100644 --- a/vulncheck_sdk/aio/models/advisory_apache_superset.py +++ b/vulncheck_sdk/aio/models/advisory_apache_superset.py @@ -31,8 +31,9 @@ class AdvisoryApacheSuperset(BaseModel): cve: Optional[List[StrictStr]] = None date_added: Optional[StrictStr] = None title: Optional[StrictStr] = None + updated_at: Optional[StrictStr] = None url: Optional[StrictStr] = None - __properties: ClassVar[List[str]] = ["affected", "cve", "date_added", "title", "url"] + __properties: ClassVar[List[str]] = ["affected", "cve", "date_added", "title", "updated_at", "url"] model_config = ConfigDict( populate_by_name=True, @@ -89,6 +90,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "cve": obj.get("cve"), "date_added": obj.get("date_added"), "title": obj.get("title"), + "updated_at": obj.get("updated_at"), "url": obj.get("url") }) return _obj diff --git a/vulncheck_sdk/aio/models/advisory_asrg.py b/vulncheck_sdk/aio/models/advisory_asrg.py index 6274360e..778ade4f 100644 --- a/vulncheck_sdk/aio/models/advisory_asrg.py +++ b/vulncheck_sdk/aio/models/advisory_asrg.py @@ -36,8 +36,9 @@ class AdvisoryASRG(BaseModel): problem_type: Optional[StrictStr] = None references: Optional[List[StrictStr]] = None title: Optional[StrictStr] = None + updated_at: Optional[StrictStr] = None url: Optional[StrictStr] = None - __properties: ClassVar[List[str]] = ["affected_products", "capec", "cve", "cvss", "date_added", "description", "problem_type", "references", "title", "url"] + __properties: ClassVar[List[str]] = ["affected_products", "capec", "cve", "cvss", "date_added", "description", "problem_type", "references", "title", "updated_at", "url"] model_config = ConfigDict( populate_by_name=True, @@ -99,6 +100,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "problem_type": obj.get("problem_type"), "references": obj.get("references"), "title": obj.get("title"), + "updated_at": obj.get("updated_at"), "url": obj.get("url") }) return _obj diff --git a/vulncheck_sdk/aio/models/advisory_cisa_alert.py b/vulncheck_sdk/aio/models/advisory_cisa_alert.py index 04b9130d..48082091 100644 --- a/vulncheck_sdk/aio/models/advisory_cisa_alert.py +++ b/vulncheck_sdk/aio/models/advisory_cisa_alert.py @@ -27,22 +27,21 @@ class AdvisoryCISAAlert(BaseModel): """ advisory.CISAAlert """ # noqa: E501 - affected_products: Optional[StrictStr] = Field(default=None, alias="affectedProducts") - alert_id: Optional[StrictStr] = Field(default=None, alias="alertID") - archived: Optional[StrictBool] = None + affected_products: Optional[StrictStr] = Field(default=None, alias="AffectedProducts") + alert_id: Optional[StrictStr] = Field(default=None, alias="AlertID") + archived: Optional[StrictBool] = Field(default=None, alias="Archived") + cve_exploited_itw: Optional[StrictBool] = Field(default=None, alias="CVEExploitedITW") + cvss: Optional[StrictStr] = Field(default=None, alias="CVSS") + icsma: Optional[StrictBool] = Field(default=None, alias="ICSMA") + mitigations: Optional[StrictStr] = Field(default=None, alias="Mitigations") + release_date: Optional[StrictStr] = Field(default=None, alias="ReleaseDate") + title: Optional[StrictStr] = Field(default=None, alias="Title") + url: Optional[StrictStr] = Field(default=None, alias="Url") + vendor: Optional[StrictStr] = Field(default=None, alias="Vendor") cve: Optional[List[StrictStr]] = None - cveexploited_itw: Optional[StrictBool] = Field(default=None, alias="cveexploitedITW") - cvss: Optional[StrictStr] = None date_added: Optional[StrictStr] = None - icsa: Optional[StrictBool] = None - icsma: Optional[StrictBool] = None - mitigations: Optional[StrictStr] = None - release_date: Optional[StrictStr] = Field(default=None, alias="releaseDate") - title: Optional[StrictStr] = None updated_at: Optional[StrictStr] = None - url: Optional[StrictStr] = None - vendor: Optional[StrictStr] = None - __properties: ClassVar[List[str]] = ["affectedProducts", "alertID", "archived", "cve", "cveexploitedITW", "cvss", "date_added", "icsa", "icsma", "mitigations", "releaseDate", "title", "updated_at", "url", "vendor"] + __properties: ClassVar[List[str]] = ["AffectedProducts", "AlertID", "Archived", "CVEExploitedITW", "CVSS", "ICSMA", "Mitigations", "ReleaseDate", "Title", "Url", "Vendor", "cve", "date_added", "updated_at"] model_config = ConfigDict( populate_by_name=True, @@ -95,21 +94,20 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: return cls.model_validate(obj) _obj = cls.model_validate({ - "affectedProducts": obj.get("affectedProducts"), - "alertID": obj.get("alertID"), - "archived": obj.get("archived"), + "AffectedProducts": obj.get("AffectedProducts"), + "AlertID": obj.get("AlertID"), + "Archived": obj.get("Archived"), + "CVEExploitedITW": obj.get("CVEExploitedITW"), + "CVSS": obj.get("CVSS"), + "ICSMA": obj.get("ICSMA"), + "Mitigations": obj.get("Mitigations"), + "ReleaseDate": obj.get("ReleaseDate"), + "Title": obj.get("Title"), + "Url": obj.get("Url"), + "Vendor": obj.get("Vendor"), "cve": obj.get("cve"), - "cveexploitedITW": obj.get("cveexploitedITW"), - "cvss": obj.get("cvss"), "date_added": obj.get("date_added"), - "icsa": obj.get("icsa"), - "icsma": obj.get("icsma"), - "mitigations": obj.get("mitigations"), - "releaseDate": obj.get("releaseDate"), - "title": obj.get("title"), - "updated_at": obj.get("updated_at"), - "url": obj.get("url"), - "vendor": obj.get("vendor") + "updated_at": obj.get("updated_at") }) return _obj diff --git a/vulncheck_sdk/aio/models/advisory_custom_cpe.py b/vulncheck_sdk/aio/models/advisory_custom_cpe.py new file mode 100644 index 00000000..e999274a --- /dev/null +++ b/vulncheck_sdk/aio/models/advisory_custom_cpe.py @@ -0,0 +1,94 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, Field, StrictStr +from typing import Any, ClassVar, Dict, List, Optional +from vulncheck_sdk.aio.models.advisory_mcpe_applicability import AdvisoryMCPEApplicability +from typing import Optional, Set +from typing_extensions import Self + +class AdvisoryCustomCPE(BaseModel): + """ + advisory.CustomCPE + """ # noqa: E501 + mcpeapplicability: Optional[AdvisoryMCPEApplicability] = None + string_value: Optional[StrictStr] = Field(default=None, alias="stringValue") + __properties: ClassVar[List[str]] = ["mcpeapplicability", "stringValue"] + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of AdvisoryCustomCPE from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + # override the default output from pydantic by calling `to_dict()` of mcpeapplicability + if self.mcpeapplicability: + _dict['mcpeapplicability'] = self.mcpeapplicability.to_dict() + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of AdvisoryCustomCPE from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "mcpeapplicability": AdvisoryMCPEApplicability.from_dict(obj["mcpeapplicability"]) if obj.get("mcpeapplicability") is not None else None, + "stringValue": obj.get("stringValue") + }) + return _obj + + diff --git a/vulncheck_sdk/aio/models/advisory_fastly.py b/vulncheck_sdk/aio/models/advisory_fastly.py index 0ee25881..15359aa9 100644 --- a/vulncheck_sdk/aio/models/advisory_fastly.py +++ b/vulncheck_sdk/aio/models/advisory_fastly.py @@ -31,8 +31,9 @@ class AdvisoryFastly(BaseModel): date_added: Optional[StrictStr] = None summary: Optional[StrictStr] = None title: Optional[StrictStr] = None + updated_at: Optional[StrictStr] = None url: Optional[StrictStr] = None - __properties: ClassVar[List[str]] = ["cve", "date_added", "summary", "title", "url"] + __properties: ClassVar[List[str]] = ["cve", "date_added", "summary", "title", "updated_at", "url"] model_config = ConfigDict( populate_by_name=True, @@ -89,6 +90,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "date_added": obj.get("date_added"), "summary": obj.get("summary"), "title": obj.get("title"), + "updated_at": obj.get("updated_at"), "url": obj.get("url") }) return _obj diff --git a/vulncheck_sdk/aio/models/advisory_haskell_sadb_advisory.py b/vulncheck_sdk/aio/models/advisory_haskell_sadb_advisory.py index aff3687a..04e85a15 100644 --- a/vulncheck_sdk/aio/models/advisory_haskell_sadb_advisory.py +++ b/vulncheck_sdk/aio/models/advisory_haskell_sadb_advisory.py @@ -37,7 +37,8 @@ class AdvisoryHaskellSADBAdvisory(BaseModel): keywords: Optional[List[StrictStr]] = None references: Optional[Dict[str, List[StrictStr]]] = None related_vulns: Optional[List[StrictStr]] = None - __properties: ClassVar[List[str]] = ["advisory_id", "affected_packages", "aliases", "cve", "cwes", "date_added", "keywords", "references", "related_vulns"] + updated_at: Optional[StrictStr] = None + __properties: ClassVar[List[str]] = ["advisory_id", "affected_packages", "aliases", "cve", "cwes", "date_added", "keywords", "references", "related_vulns", "updated_at"] model_config = ConfigDict( populate_by_name=True, @@ -105,7 +106,8 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "date_added": obj.get("date_added"), "keywords": obj.get("keywords"), "references": obj.get("references"), - "related_vulns": obj.get("related_vulns") + "related_vulns": obj.get("related_vulns"), + "updated_at": obj.get("updated_at") }) return _obj diff --git a/vulncheck_sdk/aio/models/advisory_m_cna.py b/vulncheck_sdk/aio/models/advisory_m_cna.py index f8b56fdd..7169d565 100644 --- a/vulncheck_sdk/aio/models/advisory_m_cna.py +++ b/vulncheck_sdk/aio/models/advisory_m_cna.py @@ -21,13 +21,13 @@ from pydantic import BaseModel, ConfigDict, Field, StrictStr from typing import Any, ClassVar, Dict, List, Optional from vulncheck_sdk.aio.models.advisory_credit import AdvisoryCredit +from vulncheck_sdk.aio.models.advisory_custom_cpe import AdvisoryCustomCPE from vulncheck_sdk.aio.models.advisory_impact import AdvisoryImpact from vulncheck_sdk.aio.models.advisory_m_affected import AdvisoryMAffected from vulncheck_sdk.aio.models.advisory_m_descriptions import AdvisoryMDescriptions from vulncheck_sdk.aio.models.advisory_m_problem_types import AdvisoryMProblemTypes from vulncheck_sdk.aio.models.advisory_m_provider_metadata import AdvisoryMProviderMetadata from vulncheck_sdk.aio.models.advisory_m_reference import AdvisoryMReference -from vulncheck_sdk.aio.models.advisory_mcpe_applicability import AdvisoryMCPEApplicability from vulncheck_sdk.aio.models.advisory_metric import AdvisoryMetric from vulncheck_sdk.aio.models.advisory_timeline import AdvisoryTimeline from typing import Optional, Set @@ -38,7 +38,7 @@ class AdvisoryMCna(BaseModel): advisory.MCna """ # noqa: E501 affected: Optional[List[AdvisoryMAffected]] = None - cpe_applicability: Optional[List[AdvisoryMCPEApplicability]] = Field(default=None, alias="cpeApplicability") + cpe_applicability: Optional[List[AdvisoryCustomCPE]] = Field(default=None, alias="cpeApplicability") credits: Optional[List[AdvisoryCredit]] = None descriptions: Optional[List[AdvisoryMDescriptions]] = None impacts: Optional[List[AdvisoryImpact]] = None @@ -169,7 +169,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: _obj = cls.model_validate({ "affected": [AdvisoryMAffected.from_dict(_item) for _item in obj["affected"]] if obj.get("affected") is not None else None, - "cpeApplicability": [AdvisoryMCPEApplicability.from_dict(_item) for _item in obj["cpeApplicability"]] if obj.get("cpeApplicability") is not None else None, + "cpeApplicability": [AdvisoryCustomCPE.from_dict(_item) for _item in obj["cpeApplicability"]] if obj.get("cpeApplicability") is not None else None, "credits": [AdvisoryCredit.from_dict(_item) for _item in obj["credits"]] if obj.get("credits") is not None else None, "descriptions": [AdvisoryMDescriptions.from_dict(_item) for _item in obj["descriptions"]] if obj.get("descriptions") is not None else None, "impacts": [AdvisoryImpact.from_dict(_item) for _item in obj["impacts"]] if obj.get("impacts") is not None else None, diff --git a/vulncheck_sdk/aio/models/advisory_ma_cert.py b/vulncheck_sdk/aio/models/advisory_ma_cert.py index 1aa2e8aa..6aa9b5ff 100644 --- a/vulncheck_sdk/aio/models/advisory_ma_cert.py +++ b/vulncheck_sdk/aio/models/advisory_ma_cert.py @@ -38,8 +38,9 @@ class AdvisoryMACert(BaseModel): risks_fr: Optional[StrictStr] = None solution_fr: Optional[StrictStr] = None title_fr: Optional[StrictStr] = None + updated_at: Optional[StrictStr] = None url: Optional[StrictStr] = None - __properties: ClassVar[List[str]] = ["affected_systems_fr", "assessment_fr", "cve", "date_added", "impact_fr", "reference", "references", "risk_fr", "risks_fr", "solution_fr", "title_fr", "url"] + __properties: ClassVar[List[str]] = ["affected_systems_fr", "assessment_fr", "cve", "date_added", "impact_fr", "reference", "references", "risk_fr", "risks_fr", "solution_fr", "title_fr", "updated_at", "url"] model_config = ConfigDict( populate_by_name=True, @@ -103,6 +104,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "risks_fr": obj.get("risks_fr"), "solution_fr": obj.get("solution_fr"), "title_fr": obj.get("title_fr"), + "updated_at": obj.get("updated_at"), "url": obj.get("url") }) return _obj diff --git a/vulncheck_sdk/aio/models/advisory_malicious_vs_code_exts.py b/vulncheck_sdk/aio/models/advisory_malicious_vs_code_exts.py new file mode 100644 index 00000000..6fbaa09b --- /dev/null +++ b/vulncheck_sdk/aio/models/advisory_malicious_vs_code_exts.py @@ -0,0 +1,100 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, Field, StrictStr +from typing import Any, ClassVar, Dict, List, Optional +from typing import Optional, Set +from typing_extensions import Self + +class AdvisoryMaliciousVSCodeExts(BaseModel): + """ + advisory.MaliciousVSCodeExts + """ # noqa: E501 + date_added: Optional[StrictStr] = None + name: Optional[StrictStr] = None + publisher: Optional[StrictStr] = None + type: Optional[StrictStr] = None + updated_at: Optional[StrictStr] = Field(default=None, description="the data in this feed comes from manual curation. so this will likely be omitted.") + url: Optional[StrictStr] = None + version: Optional[StrictStr] = None + __properties: ClassVar[List[str]] = ["date_added", "name", "publisher", "type", "updated_at", "url", "version"] + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of AdvisoryMaliciousVSCodeExts from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of AdvisoryMaliciousVSCodeExts from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "date_added": obj.get("date_added"), + "name": obj.get("name"), + "publisher": obj.get("publisher"), + "type": obj.get("type"), + "updated_at": obj.get("updated_at"), + "url": obj.get("url"), + "version": obj.get("version") + }) + return _obj + + diff --git a/vulncheck_sdk/aio/models/advisory_ni.py b/vulncheck_sdk/aio/models/advisory_ni.py index 8124f688..caf5220c 100644 --- a/vulncheck_sdk/aio/models/advisory_ni.py +++ b/vulncheck_sdk/aio/models/advisory_ni.py @@ -32,8 +32,9 @@ class AdvisoryNI(BaseModel): ovewrview: Optional[StrictStr] = None references: Optional[List[StrictStr]] = None title: Optional[StrictStr] = None + updated_at: Optional[StrictStr] = None url: Optional[StrictStr] = None - __properties: ClassVar[List[str]] = ["cve", "date_added", "ovewrview", "references", "title", "url"] + __properties: ClassVar[List[str]] = ["cve", "date_added", "ovewrview", "references", "title", "updated_at", "url"] model_config = ConfigDict( populate_by_name=True, @@ -91,6 +92,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "ovewrview": obj.get("ovewrview"), "references": obj.get("references"), "title": obj.get("title"), + "updated_at": obj.get("updated_at"), "url": obj.get("url") }) return _obj diff --git a/vulncheck_sdk/aio/models/advisory_panasonic.py b/vulncheck_sdk/aio/models/advisory_panasonic.py index 65ceb55c..9bfd15f0 100644 --- a/vulncheck_sdk/aio/models/advisory_panasonic.py +++ b/vulncheck_sdk/aio/models/advisory_panasonic.py @@ -31,8 +31,9 @@ class AdvisoryPanasonic(BaseModel): date_added: Optional[StrictStr] = None summary: Optional[StrictStr] = None title: Optional[StrictStr] = None + updated_at: Optional[StrictStr] = None url: Optional[StrictStr] = None - __properties: ClassVar[List[str]] = ["cve", "date_added", "summary", "title", "url"] + __properties: ClassVar[List[str]] = ["cve", "date_added", "summary", "title", "updated_at", "url"] model_config = ConfigDict( populate_by_name=True, @@ -89,6 +90,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "date_added": obj.get("date_added"), "summary": obj.get("summary"), "title": obj.get("title"), + "updated_at": obj.get("updated_at"), "url": obj.get("url") }) return _obj diff --git a/vulncheck_sdk/aio/models/advisory_qualys.py b/vulncheck_sdk/aio/models/advisory_qualys.py index 2fa877eb..9edb3c0e 100644 --- a/vulncheck_sdk/aio/models/advisory_qualys.py +++ b/vulncheck_sdk/aio/models/advisory_qualys.py @@ -31,8 +31,9 @@ class AdvisoryQualys(BaseModel): date_added: Optional[StrictStr] = None exploits: Optional[List[StrictStr]] = None title: Optional[StrictStr] = None + updated_at: Optional[StrictStr] = None url: Optional[StrictStr] = None - __properties: ClassVar[List[str]] = ["cve", "date_added", "exploits", "title", "url"] + __properties: ClassVar[List[str]] = ["cve", "date_added", "exploits", "title", "updated_at", "url"] model_config = ConfigDict( populate_by_name=True, @@ -89,6 +90,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "date_added": obj.get("date_added"), "exploits": obj.get("exploits"), "title": obj.get("title"), + "updated_at": obj.get("updated_at"), "url": obj.get("url") }) return _obj diff --git a/vulncheck_sdk/aio/models/advisory_samba.py b/vulncheck_sdk/aio/models/advisory_samba.py index 1f6dacad..a81305d9 100644 --- a/vulncheck_sdk/aio/models/advisory_samba.py +++ b/vulncheck_sdk/aio/models/advisory_samba.py @@ -33,7 +33,9 @@ class AdvisorySamba(BaseModel): issues: Optional[StrictStr] = None patches: Optional[List[StrictStr]] = None references: Optional[List[StrictStr]] = None - __properties: ClassVar[List[str]] = ["affected", "cve", "date_added", "issues", "patches", "references"] + updated_at: Optional[StrictStr] = None + url: Optional[StrictStr] = None + __properties: ClassVar[List[str]] = ["affected", "cve", "date_added", "issues", "patches", "references", "updated_at", "url"] model_config = ConfigDict( populate_by_name=True, @@ -91,7 +93,9 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "date_added": obj.get("date_added"), "issues": obj.get("issues"), "patches": obj.get("patches"), - "references": obj.get("references") + "references": obj.get("references"), + "updated_at": obj.get("updated_at"), + "url": obj.get("url") }) return _obj diff --git a/vulncheck_sdk/aio/models/advisory_ssd_advisory.py b/vulncheck_sdk/aio/models/advisory_ssd_advisory.py index ae3e9eaf..2d7c7176 100644 --- a/vulncheck_sdk/aio/models/advisory_ssd_advisory.py +++ b/vulncheck_sdk/aio/models/advisory_ssd_advisory.py @@ -37,7 +37,8 @@ class AdvisorySSDAdvisory(BaseModel): response_ref: Optional[StrictStr] = None summary: Optional[StrictStr] = None title: Optional[StrictStr] = None - __properties: ClassVar[List[str]] = ["analysis", "credit", "cve", "date_added", "link", "poc", "published", "response_ref", "summary", "title"] + updated_at: Optional[StrictStr] = None + __properties: ClassVar[List[str]] = ["analysis", "credit", "cve", "date_added", "link", "poc", "published", "response_ref", "summary", "title", "updated_at"] model_config = ConfigDict( populate_by_name=True, @@ -99,7 +100,8 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "published": obj.get("published"), "response_ref": obj.get("response_ref"), "summary": obj.get("summary"), - "title": obj.get("title") + "title": obj.get("title"), + "updated_at": obj.get("updated_at") }) return _obj diff --git a/vulncheck_sdk/aio/models/advisory_ti.py b/vulncheck_sdk/aio/models/advisory_ti.py index 74d33622..a818ae52 100644 --- a/vulncheck_sdk/aio/models/advisory_ti.py +++ b/vulncheck_sdk/aio/models/advisory_ti.py @@ -32,8 +32,9 @@ class AdvisoryTI(BaseModel): incident_id: Optional[StrictStr] = None summary: Optional[StrictStr] = None title: Optional[StrictStr] = None + updated_at: Optional[StrictStr] = None url: Optional[StrictStr] = None - __properties: ClassVar[List[str]] = ["cve", "date_added", "incident_id", "summary", "title", "url"] + __properties: ClassVar[List[str]] = ["cve", "date_added", "incident_id", "summary", "title", "updated_at", "url"] model_config = ConfigDict( populate_by_name=True, @@ -91,6 +92,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "incident_id": obj.get("incident_id"), "summary": obj.get("summary"), "title": obj.get("title"), + "updated_at": obj.get("updated_at"), "url": obj.get("url") }) return _obj diff --git a/vulncheck_sdk/aio/models/advisory_trane_technology.py b/vulncheck_sdk/aio/models/advisory_trane_technology.py index 40d18488..11d399bd 100644 --- a/vulncheck_sdk/aio/models/advisory_trane_technology.py +++ b/vulncheck_sdk/aio/models/advisory_trane_technology.py @@ -33,8 +33,9 @@ class AdvisoryTraneTechnology(BaseModel): id: Optional[StrictStr] = None product: Optional[StrictStr] = None summary: Optional[StrictStr] = None + updated_at: Optional[StrictStr] = None url: Optional[StrictStr] = None - __properties: ClassVar[List[str]] = ["brand", "cve", "date_added", "id", "product", "summary", "url"] + __properties: ClassVar[List[str]] = ["brand", "cve", "date_added", "id", "product", "summary", "updated_at", "url"] model_config = ConfigDict( populate_by_name=True, @@ -93,6 +94,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "id": obj.get("id"), "product": obj.get("product"), "summary": obj.get("summary"), + "updated_at": obj.get("updated_at"), "url": obj.get("url") }) return _obj diff --git a/vulncheck_sdk/aio/models/advisory_with_secure.py b/vulncheck_sdk/aio/models/advisory_with_secure.py index 74aeb4bd..a544038e 100644 --- a/vulncheck_sdk/aio/models/advisory_with_secure.py +++ b/vulncheck_sdk/aio/models/advisory_with_secure.py @@ -31,8 +31,9 @@ class AdvisoryWithSecure(BaseModel): date_added: Optional[StrictStr] = None summary: Optional[StrictStr] = None title: Optional[StrictStr] = None + updated_at: Optional[StrictStr] = None url: Optional[StrictStr] = None - __properties: ClassVar[List[str]] = ["cve", "date_added", "summary", "title", "url"] + __properties: ClassVar[List[str]] = ["cve", "date_added", "summary", "title", "updated_at", "url"] model_config = ConfigDict( populate_by_name=True, @@ -89,6 +90,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "date_added": obj.get("date_added"), "summary": obj.get("summary"), "title": obj.get("title"), + "updated_at": obj.get("updated_at"), "url": obj.get("url") }) return _obj diff --git a/vulncheck_sdk/aio/models/api_initial_access_artifact.py b/vulncheck_sdk/aio/models/api_initial_access_artifact.py index b06964bf..7f1d0f4d 100644 --- a/vulncheck_sdk/aio/models/api_initial_access_artifact.py +++ b/vulncheck_sdk/aio/models/api_initial_access_artifact.py @@ -35,6 +35,7 @@ class ApiInitialAccessArtifact(BaseModel): censys_legacy_raw_queries: Optional[List[StrictStr]] = Field(default=None, description="CensysLegacyRawQueries are raw legacy queries for examining potential Internet-exposed devices & applications with Censys.", alias="censysLegacyRawQueries") censys_queries: Optional[List[StrictStr]] = Field(default=None, description="CensysQueries are queries for examining potential Internet-exposed devices & applications with Censys in URL form.", alias="censysQueries") censys_raw_queries: Optional[List[StrictStr]] = Field(default=None, description="CensysRawQueries are raw queries for examining potential Internet-exposed devices & applications with Censys.", alias="censysRawQueries") + chain: Optional[List[StrictStr]] = Field(default=None, description="Chain can represent the chain of exploitation.") clone_sshurl: Optional[StrictStr] = Field(default=None, description="CloneSSHURL is the git URL to clone the artifact with.", alias="cloneSSHURL") date_added: Optional[StrictStr] = Field(default=None, description="DateAdded is when this artifact entry was first added to the InitialAccess data set.", alias="dateAdded") driftnet_queries: Optional[List[StrictStr]] = Field(default=None, description="DriftnetQueries are queries for examining Internet exposed services with Driftnet.", alias="driftnetQueries") @@ -49,6 +50,7 @@ class ApiInitialAccessArtifact(BaseModel): nmap_script: Optional[StrictBool] = Field(default=None, description="NmapScript indicates whether or not an nmap script for scanning environment exists in this artifact.", alias="nmapScript") pcap: Optional[StrictBool] = Field(default=None, description="PCAP indicates whether of not a package capture of the exploit PoC exploiting a vulnerable system exists in this artifact.") product: Optional[List[StrictStr]] = Field(default=None, description="Product are the software that has the vulnerability.") + related: Optional[List[StrictStr]] = Field(default=None, description="Related is a set of related cves.") shodan_queries: Optional[List[StrictStr]] = Field(default=None, description="ShodanQueries are queries for examining potential Internet-exposed devices & applications with Shodan in URL form.", alias="shodanQueries") shodan_raw_queries: Optional[List[StrictStr]] = Field(default=None, description="ShodanRawQueries are raw queries for examining potential Internet-exposed devices & applications with Shodan.", alias="shodanRawQueries") sigma_rule: Optional[StrictBool] = Field(default=None, description="SigmaRule indicates whether or not a Sigma rule designed to detect the exploitation of the vulnerability over the network exists in this artifact.", alias="sigmaRule") @@ -63,7 +65,7 @@ class ApiInitialAccessArtifact(BaseModel): zeroday: Optional[StrictBool] = Field(default=None, description="Zeroday indicates whether or not it is a VulnCheck zeroday.") zoom_eye_queries: Optional[List[StrictStr]] = Field(default=None, description="ZoomEyeQueries are raw queries for examining potential Internet-exposed devices & applications with ZoomEye.", alias="zoomEyeQueries") zoom_eye_raw_queries: Optional[List[StrictStr]] = Field(default=None, alias="zoomEyeRawQueries") - __properties: ClassVar[List[str]] = ["artifactName", "artifactsURL", "baiduQueries", "baiduRawQueries", "censysLegacyQueries", "censysLegacyRawQueries", "censysQueries", "censysRawQueries", "cloneSSHURL", "dateAdded", "driftnetQueries", "driftnetRawQueries", "exploit", "fofaQueries", "fofaRawQueries", "googleQueries", "googleRawQueries", "greynoiseQueries", "mitreAttackTechniques", "nmapScript", "pcap", "product", "shodanQueries", "shodanRawQueries", "sigmaRule", "snortRule", "suricataRule", "targetDocker", "targetEncryptedComms", "targetService", "vendor", "versionScanner", "yara", "zeroday", "zoomEyeQueries", "zoomEyeRawQueries"] + __properties: ClassVar[List[str]] = ["artifactName", "artifactsURL", "baiduQueries", "baiduRawQueries", "censysLegacyQueries", "censysLegacyRawQueries", "censysQueries", "censysRawQueries", "chain", "cloneSSHURL", "dateAdded", "driftnetQueries", "driftnetRawQueries", "exploit", "fofaQueries", "fofaRawQueries", "googleQueries", "googleRawQueries", "greynoiseQueries", "mitreAttackTechniques", "nmapScript", "pcap", "product", "related", "shodanQueries", "shodanRawQueries", "sigmaRule", "snortRule", "suricataRule", "targetDocker", "targetEncryptedComms", "targetService", "vendor", "versionScanner", "yara", "zeroday", "zoomEyeQueries", "zoomEyeRawQueries"] model_config = ConfigDict( populate_by_name=True, @@ -124,6 +126,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "censysLegacyRawQueries": obj.get("censysLegacyRawQueries"), "censysQueries": obj.get("censysQueries"), "censysRawQueries": obj.get("censysRawQueries"), + "chain": obj.get("chain"), "cloneSSHURL": obj.get("cloneSSHURL"), "dateAdded": obj.get("dateAdded"), "driftnetQueries": obj.get("driftnetQueries"), @@ -138,6 +141,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "nmapScript": obj.get("nmapScript"), "pcap": obj.get("pcap"), "product": obj.get("product"), + "related": obj.get("related"), "shodanQueries": obj.get("shodanQueries"), "shodanRawQueries": obj.get("shodanRawQueries"), "sigmaRule": obj.get("sigmaRule"), diff --git a/vulncheck_sdk/aio/models/backup_backup_response.py b/vulncheck_sdk/aio/models/backup_backup_response.py new file mode 100644 index 00000000..b9a9619d --- /dev/null +++ b/vulncheck_sdk/aio/models/backup_backup_response.py @@ -0,0 +1,96 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, StrictBool, StrictStr +from typing import Any, ClassVar, Dict, List, Optional +from typing import Optional, Set +from typing_extensions import Self + +class BackupBackupResponse(BaseModel): + """ + backup.BackupResponse + """ # noqa: E501 + available: Optional[StrictBool] = None + feed: Optional[StrictStr] = None + url: Optional[StrictStr] = None + url_direct: Optional[StrictStr] = None + url_expires: Optional[StrictStr] = None + __properties: ClassVar[List[str]] = ["available", "feed", "url", "url_direct", "url_expires"] + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of BackupBackupResponse from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of BackupBackupResponse from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "available": obj.get("available"), + "feed": obj.get("feed"), + "url": obj.get("url"), + "url_direct": obj.get("url_direct"), + "url_expires": obj.get("url_expires") + }) + return _obj + + diff --git a/vulncheck_sdk/aio/models/backup_feed_item.py b/vulncheck_sdk/aio/models/backup_feed_item.py new file mode 100644 index 00000000..2f2139a5 --- /dev/null +++ b/vulncheck_sdk/aio/models/backup_feed_item.py @@ -0,0 +1,94 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, StrictBool, StrictStr +from typing import Any, ClassVar, Dict, List, Optional +from typing import Optional, Set +from typing_extensions import Self + +class BackupFeedItem(BaseModel): + """ + backup.FeedItem + """ # noqa: E501 + available: Optional[StrictBool] = None + backup_written_at: Optional[StrictStr] = None + href: Optional[StrictStr] = None + name: Optional[StrictStr] = None + __properties: ClassVar[List[str]] = ["available", "backup_written_at", "href", "name"] + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of BackupFeedItem from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of BackupFeedItem from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "available": obj.get("available"), + "backup_written_at": obj.get("backup_written_at"), + "href": obj.get("href"), + "name": obj.get("name") + }) + return _obj + + diff --git a/vulncheck_sdk/aio/models/backup_list_backups_response.py b/vulncheck_sdk/aio/models/backup_list_backups_response.py new file mode 100644 index 00000000..e7930c57 --- /dev/null +++ b/vulncheck_sdk/aio/models/backup_list_backups_response.py @@ -0,0 +1,96 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict +from typing import Any, ClassVar, Dict, List, Optional +from vulncheck_sdk.aio.models.backup_feed_item import BackupFeedItem +from typing import Optional, Set +from typing_extensions import Self + +class BackupListBackupsResponse(BaseModel): + """ + backup.ListBackupsResponse + """ # noqa: E501 + data: Optional[List[BackupFeedItem]] = None + __properties: ClassVar[List[str]] = ["data"] + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of BackupListBackupsResponse from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + # override the default output from pydantic by calling `to_dict()` of each item in data (list) + _items = [] + if self.data: + for _item_data in self.data: + if _item_data: + _items.append(_item_data.to_dict()) + _dict['data'] = _items + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of BackupListBackupsResponse from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "data": [BackupFeedItem.from_dict(_item) for _item in obj["data"]] if obj.get("data") is not None else None + }) + return _obj + + diff --git a/vulncheck_sdk/aio/models/render_response_with_metadata_array_advisory_malicious_vs_code_exts_paginate_pagination.py b/vulncheck_sdk/aio/models/render_response_with_metadata_array_advisory_malicious_vs_code_exts_paginate_pagination.py new file mode 100644 index 00000000..831c19da --- /dev/null +++ b/vulncheck_sdk/aio/models/render_response_with_metadata_array_advisory_malicious_vs_code_exts_paginate_pagination.py @@ -0,0 +1,104 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt +from typing import Any, ClassVar, Dict, List, Optional, Union +from vulncheck_sdk.aio.models.advisory_malicious_vs_code_exts import AdvisoryMaliciousVSCodeExts +from vulncheck_sdk.aio.models.paginate_pagination import PaginatePagination +from typing import Optional, Set +from typing_extensions import Self + +class RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination(BaseModel): + """ + render.ResponseWithMetadata-array_advisory_MaliciousVSCodeExts-paginate_Pagination + """ # noqa: E501 + benchmark: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, alias="_benchmark") + meta: Optional[PaginatePagination] = Field(default=None, alias="_meta") + data: Optional[List[AdvisoryMaliciousVSCodeExts]] = None + __properties: ClassVar[List[str]] = ["_benchmark", "_meta", "data"] + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + # override the default output from pydantic by calling `to_dict()` of meta + if self.meta: + _dict['_meta'] = self.meta.to_dict() + # override the default output from pydantic by calling `to_dict()` of each item in data (list) + _items = [] + if self.data: + for _item_data in self.data: + if _item_data: + _items.append(_item_data.to_dict()) + _dict['data'] = _items + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "_benchmark": obj.get("_benchmark"), + "_meta": PaginatePagination.from_dict(obj["_meta"]) if obj.get("_meta") is not None else None, + "data": [AdvisoryMaliciousVSCodeExts.from_dict(_item) for _item in obj["data"]] if obj.get("data") is not None else None + }) + return _obj + + diff --git a/vulncheck_sdk/api/__init__.py b/vulncheck_sdk/api/__init__.py index 4f7891e1..510e08e7 100644 --- a/vulncheck_sdk/api/__init__.py +++ b/vulncheck_sdk/api/__init__.py @@ -2,6 +2,7 @@ # import apis into api package from vulncheck_sdk.api.advisory_api import AdvisoryApi +from vulncheck_sdk.api.backup_api import BackupApi from vulncheck_sdk.api.endpoints_api import EndpointsApi from vulncheck_sdk.api.indices_api import IndicesApi diff --git a/vulncheck_sdk/api/backup_api.py b/vulncheck_sdk/api/backup_api.py new file mode 100644 index 00000000..a33a9fd0 --- /dev/null +++ b/vulncheck_sdk/api/backup_api.py @@ -0,0 +1,568 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + +import warnings +from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt +from typing import Any, Dict, List, Optional, Tuple, Union +from typing_extensions import Annotated + +from pydantic import Field, StrictStr +from typing_extensions import Annotated +from vulncheck_sdk.models.backup_backup_response import BackupBackupResponse +from vulncheck_sdk.models.backup_list_backups_response import BackupListBackupsResponse + +from vulncheck_sdk.api_client import ApiClient, RequestSerialized +from vulncheck_sdk.api_response import ApiResponse +from vulncheck_sdk.rest import RESTResponseType + + +class BackupApi: + """NOTE: This class is auto generated by OpenAPI Generator + Ref: https://openapi-generator.tech + + Do not edit the class manually. + """ + + def __init__(self, api_client=None) -> None: + if api_client is None: + api_client = ApiClient.get_default() + self.api_client = api_client + + + @validate_call + def backup_get( + self, + _request_timeout: Union[ + None, + Annotated[StrictFloat, Field(gt=0)], + Tuple[ + Annotated[StrictFloat, Field(gt=0)], + Annotated[StrictFloat, Field(gt=0)] + ] + ] = None, + _request_auth: Optional[Dict[StrictStr, Any]] = None, + _content_type: Optional[StrictStr] = None, + _headers: Optional[Dict[StrictStr, Any]] = None, + _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, + ) -> BackupListBackupsResponse: + """List available backups + + Returns the list of advisory feeds for which a backup can be requested + + :param _request_timeout: timeout setting for this request. If one + number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :type _request_timeout: int, tuple(int, int), optional + :param _request_auth: set to override the auth_settings for an a single + request; this effectively ignores the + authentication in the spec for a single request. + :type _request_auth: dict, optional + :param _content_type: force content-type for the request. + :type _content_type: str, Optional + :param _headers: set to override the headers for a single + request; this effectively ignores the headers + in the spec for a single request. + :type _headers: dict, optional + :param _host_index: set to override the host_index for a single + request; this effectively ignores the host_index + in the spec for a single request. + :type _host_index: int, optional + :return: Returns the result object. + """ # noqa: E501 + + _param = self._backup_get_serialize( + _request_auth=_request_auth, + _content_type=_content_type, + _headers=_headers, + _host_index=_host_index + ) + + _response_types_map: Dict[str, Optional[str]] = { + '200': "BackupListBackupsResponse", + '401': "str", + '503': "str", + } + response_data = self.api_client.call_api( + *_param, + _request_timeout=_request_timeout + ) + response_data.read() + return self.api_client.response_deserialize( + response_data=response_data, + response_types_map=_response_types_map, + ).data + + + @validate_call + def backup_get_with_http_info( + self, + _request_timeout: Union[ + None, + Annotated[StrictFloat, Field(gt=0)], + Tuple[ + Annotated[StrictFloat, Field(gt=0)], + Annotated[StrictFloat, Field(gt=0)] + ] + ] = None, + _request_auth: Optional[Dict[StrictStr, Any]] = None, + _content_type: Optional[StrictStr] = None, + _headers: Optional[Dict[StrictStr, Any]] = None, + _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, + ) -> ApiResponse[BackupListBackupsResponse]: + """List available backups + + Returns the list of advisory feeds for which a backup can be requested + + :param _request_timeout: timeout setting for this request. If one + number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :type _request_timeout: int, tuple(int, int), optional + :param _request_auth: set to override the auth_settings for an a single + request; this effectively ignores the + authentication in the spec for a single request. + :type _request_auth: dict, optional + :param _content_type: force content-type for the request. + :type _content_type: str, Optional + :param _headers: set to override the headers for a single + request; this effectively ignores the headers + in the spec for a single request. + :type _headers: dict, optional + :param _host_index: set to override the host_index for a single + request; this effectively ignores the host_index + in the spec for a single request. + :type _host_index: int, optional + :return: Returns the result object. + """ # noqa: E501 + + _param = self._backup_get_serialize( + _request_auth=_request_auth, + _content_type=_content_type, + _headers=_headers, + _host_index=_host_index + ) + + _response_types_map: Dict[str, Optional[str]] = { + '200': "BackupListBackupsResponse", + '401': "str", + '503': "str", + } + response_data = self.api_client.call_api( + *_param, + _request_timeout=_request_timeout + ) + response_data.read() + return self.api_client.response_deserialize( + response_data=response_data, + response_types_map=_response_types_map, + ) + + + @validate_call + def backup_get_without_preload_content( + self, + _request_timeout: Union[ + None, + Annotated[StrictFloat, Field(gt=0)], + Tuple[ + Annotated[StrictFloat, Field(gt=0)], + Annotated[StrictFloat, Field(gt=0)] + ] + ] = None, + _request_auth: Optional[Dict[StrictStr, Any]] = None, + _content_type: Optional[StrictStr] = None, + _headers: Optional[Dict[StrictStr, Any]] = None, + _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, + ) -> RESTResponseType: + """List available backups + + Returns the list of advisory feeds for which a backup can be requested + + :param _request_timeout: timeout setting for this request. If one + number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :type _request_timeout: int, tuple(int, int), optional + :param _request_auth: set to override the auth_settings for an a single + request; this effectively ignores the + authentication in the spec for a single request. + :type _request_auth: dict, optional + :param _content_type: force content-type for the request. + :type _content_type: str, Optional + :param _headers: set to override the headers for a single + request; this effectively ignores the headers + in the spec for a single request. + :type _headers: dict, optional + :param _host_index: set to override the host_index for a single + request; this effectively ignores the host_index + in the spec for a single request. + :type _host_index: int, optional + :return: Returns the result object. + """ # noqa: E501 + + _param = self._backup_get_serialize( + _request_auth=_request_auth, + _content_type=_content_type, + _headers=_headers, + _host_index=_host_index + ) + + _response_types_map: Dict[str, Optional[str]] = { + '200': "BackupListBackupsResponse", + '401': "str", + '503': "str", + } + response_data = self.api_client.call_api( + *_param, + _request_timeout=_request_timeout + ) + return response_data.response + + + def _backup_get_serialize( + self, + _request_auth, + _content_type, + _headers, + _host_index, + ) -> RequestSerialized: + + _hosts = [ + 'https://api.vulncheck.com/v4' + ] + _host = _hosts[_host_index] + + _collection_formats: Dict[str, str] = { + } + + _path_params: Dict[str, str] = {} + _query_params: List[Tuple[str, str]] = [] + _header_params: Dict[str, Optional[str]] = _headers or {} + _form_params: List[Tuple[str, str]] = [] + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} + _body_params: Optional[bytes] = None + + # process the path parameters + # process the query parameters + # process the header parameters + # process the form parameters + # process the body parameter + + + # set the HTTP header `Accept` + if 'Accept' not in _header_params: + _header_params['Accept'] = self.api_client.select_header_accept( + [ + 'application/json' + ] + ) + + + # authentication setting + _auth_settings: List[str] = [ + 'Bearer' + ] + + return self.api_client.param_serialize( + method='GET', + resource_path='/backup', + path_params=_path_params, + query_params=_query_params, + header_params=_header_params, + body=_body_params, + post_params=_form_params, + files=_files, + auth_settings=_auth_settings, + collection_formats=_collection_formats, + _host=_host, + _request_auth=_request_auth + ) + + + + + @validate_call + def backup_index_get( + self, + index: Annotated[StrictStr, Field(description="Feed name (e.g. 'vulncheck')")], + _request_timeout: Union[ + None, + Annotated[StrictFloat, Field(gt=0)], + Tuple[ + Annotated[StrictFloat, Field(gt=0)], + Annotated[StrictFloat, Field(gt=0)] + ] + ] = None, + _request_auth: Optional[Dict[StrictStr, Any]] = None, + _content_type: Optional[StrictStr] = None, + _headers: Optional[Dict[StrictStr, Any]] = None, + _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, + ) -> BackupBackupResponse: + """Get backup by feed name + + Validates the feed, generates a fresh backup zip if the source parquet is newer, and returns a pre-signed download URL + + :param index: Feed name (e.g. 'vulncheck') (required) + :type index: str + :param _request_timeout: timeout setting for this request. If one + number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :type _request_timeout: int, tuple(int, int), optional + :param _request_auth: set to override the auth_settings for an a single + request; this effectively ignores the + authentication in the spec for a single request. + :type _request_auth: dict, optional + :param _content_type: force content-type for the request. + :type _content_type: str, Optional + :param _headers: set to override the headers for a single + request; this effectively ignores the headers + in the spec for a single request. + :type _headers: dict, optional + :param _host_index: set to override the host_index for a single + request; this effectively ignores the host_index + in the spec for a single request. + :type _host_index: int, optional + :return: Returns the result object. + """ # noqa: E501 + + _param = self._backup_index_get_serialize( + index=index, + _request_auth=_request_auth, + _content_type=_content_type, + _headers=_headers, + _host_index=_host_index + ) + + _response_types_map: Dict[str, Optional[str]] = { + '200': "BackupBackupResponse", + '401': "str", + '404': "str", + '503': "str", + } + response_data = self.api_client.call_api( + *_param, + _request_timeout=_request_timeout + ) + response_data.read() + return self.api_client.response_deserialize( + response_data=response_data, + response_types_map=_response_types_map, + ).data + + + @validate_call + def backup_index_get_with_http_info( + self, + index: Annotated[StrictStr, Field(description="Feed name (e.g. 'vulncheck')")], + _request_timeout: Union[ + None, + Annotated[StrictFloat, Field(gt=0)], + Tuple[ + Annotated[StrictFloat, Field(gt=0)], + Annotated[StrictFloat, Field(gt=0)] + ] + ] = None, + _request_auth: Optional[Dict[StrictStr, Any]] = None, + _content_type: Optional[StrictStr] = None, + _headers: Optional[Dict[StrictStr, Any]] = None, + _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, + ) -> ApiResponse[BackupBackupResponse]: + """Get backup by feed name + + Validates the feed, generates a fresh backup zip if the source parquet is newer, and returns a pre-signed download URL + + :param index: Feed name (e.g. 'vulncheck') (required) + :type index: str + :param _request_timeout: timeout setting for this request. If one + number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :type _request_timeout: int, tuple(int, int), optional + :param _request_auth: set to override the auth_settings for an a single + request; this effectively ignores the + authentication in the spec for a single request. + :type _request_auth: dict, optional + :param _content_type: force content-type for the request. + :type _content_type: str, Optional + :param _headers: set to override the headers for a single + request; this effectively ignores the headers + in the spec for a single request. + :type _headers: dict, optional + :param _host_index: set to override the host_index for a single + request; this effectively ignores the host_index + in the spec for a single request. + :type _host_index: int, optional + :return: Returns the result object. + """ # noqa: E501 + + _param = self._backup_index_get_serialize( + index=index, + _request_auth=_request_auth, + _content_type=_content_type, + _headers=_headers, + _host_index=_host_index + ) + + _response_types_map: Dict[str, Optional[str]] = { + '200': "BackupBackupResponse", + '401': "str", + '404': "str", + '503': "str", + } + response_data = self.api_client.call_api( + *_param, + _request_timeout=_request_timeout + ) + response_data.read() + return self.api_client.response_deserialize( + response_data=response_data, + response_types_map=_response_types_map, + ) + + + @validate_call + def backup_index_get_without_preload_content( + self, + index: Annotated[StrictStr, Field(description="Feed name (e.g. 'vulncheck')")], + _request_timeout: Union[ + None, + Annotated[StrictFloat, Field(gt=0)], + Tuple[ + Annotated[StrictFloat, Field(gt=0)], + Annotated[StrictFloat, Field(gt=0)] + ] + ] = None, + _request_auth: Optional[Dict[StrictStr, Any]] = None, + _content_type: Optional[StrictStr] = None, + _headers: Optional[Dict[StrictStr, Any]] = None, + _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, + ) -> RESTResponseType: + """Get backup by feed name + + Validates the feed, generates a fresh backup zip if the source parquet is newer, and returns a pre-signed download URL + + :param index: Feed name (e.g. 'vulncheck') (required) + :type index: str + :param _request_timeout: timeout setting for this request. If one + number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :type _request_timeout: int, tuple(int, int), optional + :param _request_auth: set to override the auth_settings for an a single + request; this effectively ignores the + authentication in the spec for a single request. + :type _request_auth: dict, optional + :param _content_type: force content-type for the request. + :type _content_type: str, Optional + :param _headers: set to override the headers for a single + request; this effectively ignores the headers + in the spec for a single request. + :type _headers: dict, optional + :param _host_index: set to override the host_index for a single + request; this effectively ignores the host_index + in the spec for a single request. + :type _host_index: int, optional + :return: Returns the result object. + """ # noqa: E501 + + _param = self._backup_index_get_serialize( + index=index, + _request_auth=_request_auth, + _content_type=_content_type, + _headers=_headers, + _host_index=_host_index + ) + + _response_types_map: Dict[str, Optional[str]] = { + '200': "BackupBackupResponse", + '401': "str", + '404': "str", + '503': "str", + } + response_data = self.api_client.call_api( + *_param, + _request_timeout=_request_timeout + ) + return response_data.response + + + def _backup_index_get_serialize( + self, + index, + _request_auth, + _content_type, + _headers, + _host_index, + ) -> RequestSerialized: + + _hosts = [ + 'https://api.vulncheck.com/v4' + ] + _host = _hosts[_host_index] + + _collection_formats: Dict[str, str] = { + } + + _path_params: Dict[str, str] = {} + _query_params: List[Tuple[str, str]] = [] + _header_params: Dict[str, Optional[str]] = _headers or {} + _form_params: List[Tuple[str, str]] = [] + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} + _body_params: Optional[bytes] = None + + # process the path parameters + if index is not None: + _path_params['index'] = index + # process the query parameters + # process the header parameters + # process the form parameters + # process the body parameter + + + # set the HTTP header `Accept` + if 'Accept' not in _header_params: + _header_params['Accept'] = self.api_client.select_header_accept( + [ + 'application/json' + ] + ) + + + # authentication setting + _auth_settings: List[str] = [ + 'Bearer' + ] + + return self.api_client.param_serialize( + method='GET', + resource_path='/backup/{index}', + path_params=_path_params, + query_params=_query_params, + header_params=_header_params, + body=_body_params, + post_params=_form_params, + files=_files, + auth_settings=_auth_settings, + collection_formats=_collection_formats, + _host=_host, + _request_auth=_request_auth + ) + + diff --git a/vulncheck_sdk/api/endpoints_api.py b/vulncheck_sdk/api/endpoints_api.py index 6056a3a4..ef25268c 100644 --- a/vulncheck_sdk/api/endpoints_api.py +++ b/vulncheck_sdk/api/endpoints_api.py @@ -21,10 +21,8 @@ from typing import Any, Dict, List, Optional from typing_extensions import Annotated from vulncheck_sdk.models.models_entitlements import ModelsEntitlements -from vulncheck_sdk.models.render_response_array_params_index_backup_list import RenderResponseArrayParamsIndexBackupList from vulncheck_sdk.models.render_response_array_params_index_list import RenderResponseArrayParamsIndexList from vulncheck_sdk.models.render_response_with_metadata_array_string_v3controllers_response_metadata import RenderResponseWithMetadataArrayStringV3controllersResponseMetadata -from vulncheck_sdk.models.render_response_with_metadata_v3controllers_backup_response_data_v3controllers_backup_response_metadata import RenderResponseWithMetadataV3controllersBackupResponseDataV3controllersBackupResponseMetadata from vulncheck_sdk.models.render_response_with_metadata_v3controllers_purl_response_data_v3controllers_purl_response_metadata import RenderResponseWithMetadataV3controllersPurlResponseDataV3controllersPurlResponseMetadata from vulncheck_sdk.models.render_response_with_metadata_v3controllers_purls_response_data_v3controllers_purls_response_metadata import RenderResponseWithMetadataV3controllersPurlsResponseDataV3controllersPurlsResponseMetadata @@ -46,531 +44,6 @@ def __init__(self, api_client=None) -> None: self.api_client = api_client - @validate_call - def backup_get( - self, - _request_timeout: Union[ - None, - Annotated[StrictFloat, Field(gt=0)], - Tuple[ - Annotated[StrictFloat, Field(gt=0)], - Annotated[StrictFloat, Field(gt=0)] - ] - ] = None, - _request_auth: Optional[Dict[StrictStr, Any]] = None, - _content_type: Optional[StrictStr] = None, - _headers: Optional[Dict[StrictStr, Any]] = None, - _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseArrayParamsIndexBackupList: - """Return a list of indexes with backup and endpoint links - - Return a list of indexes with backup and endpoint links that the user has access to - - :param _request_timeout: timeout setting for this request. If one - number provided, it will be total request - timeout. It can also be a pair (tuple) of - (connection, read) timeouts. - :type _request_timeout: int, tuple(int, int), optional - :param _request_auth: set to override the auth_settings for an a single - request; this effectively ignores the - authentication in the spec for a single request. - :type _request_auth: dict, optional - :param _content_type: force content-type for the request. - :type _content_type: str, Optional - :param _headers: set to override the headers for a single - request; this effectively ignores the headers - in the spec for a single request. - :type _headers: dict, optional - :param _host_index: set to override the host_index for a single - request; this effectively ignores the host_index - in the spec for a single request. - :type _host_index: int, optional - :return: Returns the result object. - """ # noqa: E501 - - _param = self._backup_get_serialize( - _request_auth=_request_auth, - _content_type=_content_type, - _headers=_headers, - _host_index=_host_index - ) - - _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseArrayParamsIndexBackupList", - '404': "str", - '500': "str", - } - response_data = self.api_client.call_api( - *_param, - _request_timeout=_request_timeout - ) - response_data.read() - return self.api_client.response_deserialize( - response_data=response_data, - response_types_map=_response_types_map, - ).data - - - @validate_call - def backup_get_with_http_info( - self, - _request_timeout: Union[ - None, - Annotated[StrictFloat, Field(gt=0)], - Tuple[ - Annotated[StrictFloat, Field(gt=0)], - Annotated[StrictFloat, Field(gt=0)] - ] - ] = None, - _request_auth: Optional[Dict[StrictStr, Any]] = None, - _content_type: Optional[StrictStr] = None, - _headers: Optional[Dict[StrictStr, Any]] = None, - _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseArrayParamsIndexBackupList]: - """Return a list of indexes with backup and endpoint links - - Return a list of indexes with backup and endpoint links that the user has access to - - :param _request_timeout: timeout setting for this request. If one - number provided, it will be total request - timeout. It can also be a pair (tuple) of - (connection, read) timeouts. - :type _request_timeout: int, tuple(int, int), optional - :param _request_auth: set to override the auth_settings for an a single - request; this effectively ignores the - authentication in the spec for a single request. - :type _request_auth: dict, optional - :param _content_type: force content-type for the request. - :type _content_type: str, Optional - :param _headers: set to override the headers for a single - request; this effectively ignores the headers - in the spec for a single request. - :type _headers: dict, optional - :param _host_index: set to override the host_index for a single - request; this effectively ignores the host_index - in the spec for a single request. - :type _host_index: int, optional - :return: Returns the result object. - """ # noqa: E501 - - _param = self._backup_get_serialize( - _request_auth=_request_auth, - _content_type=_content_type, - _headers=_headers, - _host_index=_host_index - ) - - _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseArrayParamsIndexBackupList", - '404': "str", - '500': "str", - } - response_data = self.api_client.call_api( - *_param, - _request_timeout=_request_timeout - ) - response_data.read() - return self.api_client.response_deserialize( - response_data=response_data, - response_types_map=_response_types_map, - ) - - - @validate_call - def backup_get_without_preload_content( - self, - _request_timeout: Union[ - None, - Annotated[StrictFloat, Field(gt=0)], - Tuple[ - Annotated[StrictFloat, Field(gt=0)], - Annotated[StrictFloat, Field(gt=0)] - ] - ] = None, - _request_auth: Optional[Dict[StrictStr, Any]] = None, - _content_type: Optional[StrictStr] = None, - _headers: Optional[Dict[StrictStr, Any]] = None, - _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RESTResponseType: - """Return a list of indexes with backup and endpoint links - - Return a list of indexes with backup and endpoint links that the user has access to - - :param _request_timeout: timeout setting for this request. If one - number provided, it will be total request - timeout. It can also be a pair (tuple) of - (connection, read) timeouts. - :type _request_timeout: int, tuple(int, int), optional - :param _request_auth: set to override the auth_settings for an a single - request; this effectively ignores the - authentication in the spec for a single request. - :type _request_auth: dict, optional - :param _content_type: force content-type for the request. - :type _content_type: str, Optional - :param _headers: set to override the headers for a single - request; this effectively ignores the headers - in the spec for a single request. - :type _headers: dict, optional - :param _host_index: set to override the host_index for a single - request; this effectively ignores the host_index - in the spec for a single request. - :type _host_index: int, optional - :return: Returns the result object. - """ # noqa: E501 - - _param = self._backup_get_serialize( - _request_auth=_request_auth, - _content_type=_content_type, - _headers=_headers, - _host_index=_host_index - ) - - _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseArrayParamsIndexBackupList", - '404': "str", - '500': "str", - } - response_data = self.api_client.call_api( - *_param, - _request_timeout=_request_timeout - ) - return response_data.response - - - def _backup_get_serialize( - self, - _request_auth, - _content_type, - _headers, - _host_index, - ) -> RequestSerialized: - - _hosts = [ - 'https://api.vulncheck.com/v3' - ] - _host = _hosts[_host_index] - - _collection_formats: Dict[str, str] = { - } - - _path_params: Dict[str, str] = {} - _query_params: List[Tuple[str, str]] = [] - _header_params: Dict[str, Optional[str]] = _headers or {} - _form_params: List[Tuple[str, str]] = [] - _files: Dict[ - str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] - ] = {} - _body_params: Optional[bytes] = None - - # process the path parameters - # process the query parameters - # process the header parameters - # process the form parameters - # process the body parameter - - - # set the HTTP header `Accept` - if 'Accept' not in _header_params: - _header_params['Accept'] = self.api_client.select_header_accept( - [ - 'application/json' - ] - ) - - - # authentication setting - _auth_settings: List[str] = [ - 'Bearer' - ] - - return self.api_client.param_serialize( - method='GET', - resource_path='/backup', - path_params=_path_params, - query_params=_query_params, - header_params=_header_params, - body=_body_params, - post_params=_form_params, - files=_files, - auth_settings=_auth_settings, - collection_formats=_collection_formats, - _host=_host, - _request_auth=_request_auth - ) - - - - - @validate_call - def backup_index_get( - self, - index: Annotated[StrictStr, Field(description="Name of an exploit, vulnerability, or advisory index")], - _request_timeout: Union[ - None, - Annotated[StrictFloat, Field(gt=0)], - Tuple[ - Annotated[StrictFloat, Field(gt=0)], - Annotated[StrictFloat, Field(gt=0)] - ] - ] = None, - _request_auth: Optional[Dict[StrictStr, Any]] = None, - _content_type: Optional[StrictStr] = None, - _headers: Optional[Dict[StrictStr, Any]] = None, - _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataV3controllersBackupResponseDataV3controllersBackupResponseMetadata: - """Retrieve a list of backups by index - - Retrieve a list of VulnCheck backups by index - - :param index: Name of an exploit, vulnerability, or advisory index (required) - :type index: str - :param _request_timeout: timeout setting for this request. If one - number provided, it will be total request - timeout. It can also be a pair (tuple) of - (connection, read) timeouts. - :type _request_timeout: int, tuple(int, int), optional - :param _request_auth: set to override the auth_settings for an a single - request; this effectively ignores the - authentication in the spec for a single request. - :type _request_auth: dict, optional - :param _content_type: force content-type for the request. - :type _content_type: str, Optional - :param _headers: set to override the headers for a single - request; this effectively ignores the headers - in the spec for a single request. - :type _headers: dict, optional - :param _host_index: set to override the host_index for a single - request; this effectively ignores the host_index - in the spec for a single request. - :type _host_index: int, optional - :return: Returns the result object. - """ # noqa: E501 - - _param = self._backup_index_get_serialize( - index=index, - _request_auth=_request_auth, - _content_type=_content_type, - _headers=_headers, - _host_index=_host_index - ) - - _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataV3controllersBackupResponseDataV3controllersBackupResponseMetadata", - '404': "str", - '500': "str", - } - response_data = self.api_client.call_api( - *_param, - _request_timeout=_request_timeout - ) - response_data.read() - return self.api_client.response_deserialize( - response_data=response_data, - response_types_map=_response_types_map, - ).data - - - @validate_call - def backup_index_get_with_http_info( - self, - index: Annotated[StrictStr, Field(description="Name of an exploit, vulnerability, or advisory index")], - _request_timeout: Union[ - None, - Annotated[StrictFloat, Field(gt=0)], - Tuple[ - Annotated[StrictFloat, Field(gt=0)], - Annotated[StrictFloat, Field(gt=0)] - ] - ] = None, - _request_auth: Optional[Dict[StrictStr, Any]] = None, - _content_type: Optional[StrictStr] = None, - _headers: Optional[Dict[StrictStr, Any]] = None, - _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataV3controllersBackupResponseDataV3controllersBackupResponseMetadata]: - """Retrieve a list of backups by index - - Retrieve a list of VulnCheck backups by index - - :param index: Name of an exploit, vulnerability, or advisory index (required) - :type index: str - :param _request_timeout: timeout setting for this request. If one - number provided, it will be total request - timeout. It can also be a pair (tuple) of - (connection, read) timeouts. - :type _request_timeout: int, tuple(int, int), optional - :param _request_auth: set to override the auth_settings for an a single - request; this effectively ignores the - authentication in the spec for a single request. - :type _request_auth: dict, optional - :param _content_type: force content-type for the request. - :type _content_type: str, Optional - :param _headers: set to override the headers for a single - request; this effectively ignores the headers - in the spec for a single request. - :type _headers: dict, optional - :param _host_index: set to override the host_index for a single - request; this effectively ignores the host_index - in the spec for a single request. - :type _host_index: int, optional - :return: Returns the result object. - """ # noqa: E501 - - _param = self._backup_index_get_serialize( - index=index, - _request_auth=_request_auth, - _content_type=_content_type, - _headers=_headers, - _host_index=_host_index - ) - - _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataV3controllersBackupResponseDataV3controllersBackupResponseMetadata", - '404': "str", - '500': "str", - } - response_data = self.api_client.call_api( - *_param, - _request_timeout=_request_timeout - ) - response_data.read() - return self.api_client.response_deserialize( - response_data=response_data, - response_types_map=_response_types_map, - ) - - - @validate_call - def backup_index_get_without_preload_content( - self, - index: Annotated[StrictStr, Field(description="Name of an exploit, vulnerability, or advisory index")], - _request_timeout: Union[ - None, - Annotated[StrictFloat, Field(gt=0)], - Tuple[ - Annotated[StrictFloat, Field(gt=0)], - Annotated[StrictFloat, Field(gt=0)] - ] - ] = None, - _request_auth: Optional[Dict[StrictStr, Any]] = None, - _content_type: Optional[StrictStr] = None, - _headers: Optional[Dict[StrictStr, Any]] = None, - _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RESTResponseType: - """Retrieve a list of backups by index - - Retrieve a list of VulnCheck backups by index - - :param index: Name of an exploit, vulnerability, or advisory index (required) - :type index: str - :param _request_timeout: timeout setting for this request. If one - number provided, it will be total request - timeout. It can also be a pair (tuple) of - (connection, read) timeouts. - :type _request_timeout: int, tuple(int, int), optional - :param _request_auth: set to override the auth_settings for an a single - request; this effectively ignores the - authentication in the spec for a single request. - :type _request_auth: dict, optional - :param _content_type: force content-type for the request. - :type _content_type: str, Optional - :param _headers: set to override the headers for a single - request; this effectively ignores the headers - in the spec for a single request. - :type _headers: dict, optional - :param _host_index: set to override the host_index for a single - request; this effectively ignores the host_index - in the spec for a single request. - :type _host_index: int, optional - :return: Returns the result object. - """ # noqa: E501 - - _param = self._backup_index_get_serialize( - index=index, - _request_auth=_request_auth, - _content_type=_content_type, - _headers=_headers, - _host_index=_host_index - ) - - _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataV3controllersBackupResponseDataV3controllersBackupResponseMetadata", - '404': "str", - '500': "str", - } - response_data = self.api_client.call_api( - *_param, - _request_timeout=_request_timeout - ) - return response_data.response - - - def _backup_index_get_serialize( - self, - index, - _request_auth, - _content_type, - _headers, - _host_index, - ) -> RequestSerialized: - - _hosts = [ - 'https://api.vulncheck.com/v3' - ] - _host = _hosts[_host_index] - - _collection_formats: Dict[str, str] = { - } - - _path_params: Dict[str, str] = {} - _query_params: List[Tuple[str, str]] = [] - _header_params: Dict[str, Optional[str]] = _headers or {} - _form_params: List[Tuple[str, str]] = [] - _files: Dict[ - str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] - ] = {} - _body_params: Optional[bytes] = None - - # process the path parameters - if index is not None: - _path_params['index'] = index - # process the query parameters - # process the header parameters - # process the form parameters - # process the body parameter - - - # set the HTTP header `Accept` - if 'Accept' not in _header_params: - _header_params['Accept'] = self.api_client.select_header_accept( - [ - 'application/json' - ] - ) - - - # authentication setting - _auth_settings: List[str] = [ - 'Bearer' - ] - - return self.api_client.param_serialize( - method='GET', - resource_path='/backup/{index}', - path_params=_path_params, - query_params=_query_params, - header_params=_header_params, - body=_body_params, - post_params=_form_params, - files=_files, - auth_settings=_auth_settings, - collection_formats=_collection_formats, - _host=_host, - _request_auth=_request_auth - ) - - - - @validate_call def cpe_get( self, diff --git a/vulncheck_sdk/api/indices_api.py b/vulncheck_sdk/api/indices_api.py index 4a325880..dd469d7c 100644 --- a/vulncheck_sdk/api/indices_api.py +++ b/vulncheck_sdk/api/indices_api.py @@ -256,6 +256,7 @@ from vulncheck_sdk.models.render_response_with_metadata_array_advisory_ma_cert_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMACertPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_advisory_m_files_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMFilesPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_advisory_malicious_package_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMaliciousPackagePaginatePagination +from vulncheck_sdk.models.render_response_with_metadata_array_advisory_malicious_vs_code_exts_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_advisory_manage_engine_advisory_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryManageEngineAdvisoryPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_advisory_mbed_tls_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMbedTLSPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_advisory_mc_afee_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMcAfeePaginatePagination @@ -174545,6 +174546,669 @@ def _index_malicious_packages_get_serialize( + @validate_call + def index_malicious_vscode_exts_get( + self, + page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, + limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, + cursor: Annotated[Optional[StrictStr], Field(description="continue server-side paging using a cursor id")] = None, + start_cursor: Annotated[Optional[StrictStr], Field(description="request server-side paging")] = None, + order: Annotated[Optional[StrictStr], Field(description="direction of the sort")] = None, + sort: Annotated[Optional[StrictStr], Field(description="field by which to sort the results")] = None, + cve: Annotated[Optional[StrictStr], Field(description="Specify a CVE ID to search with.")] = None, + alias: Annotated[Optional[StrictStr], Field(description="Specify a vulnerability alias to search with.")] = None, + iava: Annotated[Optional[StrictStr], Field(description="Specify an IAVA ID to search with.")] = None, + jvndb: Annotated[Optional[StrictStr], Field(description="Specify a JVNDB ID to search with.")] = None, + ilvn: Annotated[Optional[StrictStr], Field(description="Specify an ILVN ID to search with.")] = None, + threat_actor: Annotated[Optional[StrictStr], Field(description="Specify a threat actor name to search with.")] = None, + mitre_id: Annotated[Optional[StrictStr], Field(description="Specify a MITRE ID to search with.")] = None, + misp_id: Annotated[Optional[StrictStr], Field(description="Specify a MISP ID to search with.")] = None, + ransomware: Annotated[Optional[StrictStr], Field(description="Specify a ransomeware family name to search with.")] = None, + botnet: Annotated[Optional[StrictStr], Field(description="Specify a botnet name to search with.")] = None, + published: Annotated[Optional[StrictStr], Field(description="Specify a published date")] = None, + date: Annotated[Optional[StrictStr], Field(description="Specify an exact published date to filter with.")] = None, + updated_at_start_date: Annotated[Optional[StrictStr], Field(description="Specify a starting 'updated-at' date to filter with.")] = None, + updated_at_end_date: Annotated[Optional[StrictStr], Field(description="Specify an ending 'updated-at' date to filter with.")] = None, + last_mod_start_date: Annotated[Optional[StrictStr], Field(description="Specify a starting last modified date to filter with.")] = None, + last_mod_end_date: Annotated[Optional[StrictStr], Field(description="Specify an ending last modified date to filter with.")] = None, + pub_start_date: Annotated[Optional[StrictStr], Field(description="Specify a starting published date to filter with.")] = None, + pub_end_date: Annotated[Optional[StrictStr], Field(description="Specify an ending published date to filter with.")] = None, + _request_timeout: Union[ + None, + Annotated[StrictFloat, Field(gt=0)], + Tuple[ + Annotated[StrictFloat, Field(gt=0)], + Annotated[StrictFloat, Field(gt=0)] + ] + ] = None, + _request_auth: Optional[Dict[StrictStr, Any]] = None, + _content_type: Optional[StrictStr] = None, + _headers: Optional[Dict[StrictStr, Any]] = None, + _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, + ) -> RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination: + """Return vulnerability data stored in index \"malicious-vscode-exts\" + + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the malicious-vscode-exts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Malicious Visual Studio Code Extensions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-vscode-exts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/malicious-vscode-exts?cursor=` + + :param page: set the page number of the response + :type page: int + :param limit: limit the number of findings in the response + :type limit: int + :param cursor: continue server-side paging using a cursor id + :type cursor: str + :param start_cursor: request server-side paging + :type start_cursor: str + :param order: direction of the sort + :type order: str + :param sort: field by which to sort the results + :type sort: str + :param cve: Specify a CVE ID to search with. + :type cve: str + :param alias: Specify a vulnerability alias to search with. + :type alias: str + :param iava: Specify an IAVA ID to search with. + :type iava: str + :param jvndb: Specify a JVNDB ID to search with. + :type jvndb: str + :param ilvn: Specify an ILVN ID to search with. + :type ilvn: str + :param threat_actor: Specify a threat actor name to search with. + :type threat_actor: str + :param mitre_id: Specify a MITRE ID to search with. + :type mitre_id: str + :param misp_id: Specify a MISP ID to search with. + :type misp_id: str + :param ransomware: Specify a ransomeware family name to search with. + :type ransomware: str + :param botnet: Specify a botnet name to search with. + :type botnet: str + :param published: Specify a published date + :type published: str + :param date: Specify an exact published date to filter with. + :type date: str + :param updated_at_start_date: Specify a starting 'updated-at' date to filter with. + :type updated_at_start_date: str + :param updated_at_end_date: Specify an ending 'updated-at' date to filter with. + :type updated_at_end_date: str + :param last_mod_start_date: Specify a starting last modified date to filter with. + :type last_mod_start_date: str + :param last_mod_end_date: Specify an ending last modified date to filter with. + :type last_mod_end_date: str + :param pub_start_date: Specify a starting published date to filter with. + :type pub_start_date: str + :param pub_end_date: Specify an ending published date to filter with. + :type pub_end_date: str + :param _request_timeout: timeout setting for this request. If one + number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :type _request_timeout: int, tuple(int, int), optional + :param _request_auth: set to override the auth_settings for an a single + request; this effectively ignores the + authentication in the spec for a single request. + :type _request_auth: dict, optional + :param _content_type: force content-type for the request. + :type _content_type: str, Optional + :param _headers: set to override the headers for a single + request; this effectively ignores the headers + in the spec for a single request. + :type _headers: dict, optional + :param _host_index: set to override the host_index for a single + request; this effectively ignores the host_index + in the spec for a single request. + :type _host_index: int, optional + :return: Returns the result object. + """ # noqa: E501 + + _param = self._index_malicious_vscode_exts_get_serialize( + page=page, + limit=limit, + cursor=cursor, + start_cursor=start_cursor, + order=order, + sort=sort, + cve=cve, + alias=alias, + iava=iava, + jvndb=jvndb, + ilvn=ilvn, + threat_actor=threat_actor, + mitre_id=mitre_id, + misp_id=misp_id, + ransomware=ransomware, + botnet=botnet, + published=published, + date=date, + updated_at_start_date=updated_at_start_date, + updated_at_end_date=updated_at_end_date, + last_mod_start_date=last_mod_start_date, + last_mod_end_date=last_mod_end_date, + pub_start_date=pub_start_date, + pub_end_date=pub_end_date, + _request_auth=_request_auth, + _content_type=_content_type, + _headers=_headers, + _host_index=_host_index + ) + + _response_types_map: Dict[str, Optional[str]] = { + '200': "RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination", + '404': "str", + '500': "str", + } + response_data = self.api_client.call_api( + *_param, + _request_timeout=_request_timeout + ) + response_data.read() + return self.api_client.response_deserialize( + response_data=response_data, + response_types_map=_response_types_map, + ).data + + + @validate_call + def index_malicious_vscode_exts_get_with_http_info( + self, + page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, + limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, + cursor: Annotated[Optional[StrictStr], Field(description="continue server-side paging using a cursor id")] = None, + start_cursor: Annotated[Optional[StrictStr], Field(description="request server-side paging")] = None, + order: Annotated[Optional[StrictStr], Field(description="direction of the sort")] = None, + sort: Annotated[Optional[StrictStr], Field(description="field by which to sort the results")] = None, + cve: Annotated[Optional[StrictStr], Field(description="Specify a CVE ID to search with.")] = None, + alias: Annotated[Optional[StrictStr], Field(description="Specify a vulnerability alias to search with.")] = None, + iava: Annotated[Optional[StrictStr], Field(description="Specify an IAVA ID to search with.")] = None, + jvndb: Annotated[Optional[StrictStr], Field(description="Specify a JVNDB ID to search with.")] = None, + ilvn: Annotated[Optional[StrictStr], Field(description="Specify an ILVN ID to search with.")] = None, + threat_actor: Annotated[Optional[StrictStr], Field(description="Specify a threat actor name to search with.")] = None, + mitre_id: Annotated[Optional[StrictStr], Field(description="Specify a MITRE ID to search with.")] = None, + misp_id: Annotated[Optional[StrictStr], Field(description="Specify a MISP ID to search with.")] = None, + ransomware: Annotated[Optional[StrictStr], Field(description="Specify a ransomeware family name to search with.")] = None, + botnet: Annotated[Optional[StrictStr], Field(description="Specify a botnet name to search with.")] = None, + published: Annotated[Optional[StrictStr], Field(description="Specify a published date")] = None, + date: Annotated[Optional[StrictStr], Field(description="Specify an exact published date to filter with.")] = None, + updated_at_start_date: Annotated[Optional[StrictStr], Field(description="Specify a starting 'updated-at' date to filter with.")] = None, + updated_at_end_date: Annotated[Optional[StrictStr], Field(description="Specify an ending 'updated-at' date to filter with.")] = None, + last_mod_start_date: Annotated[Optional[StrictStr], Field(description="Specify a starting last modified date to filter with.")] = None, + last_mod_end_date: Annotated[Optional[StrictStr], Field(description="Specify an ending last modified date to filter with.")] = None, + pub_start_date: Annotated[Optional[StrictStr], Field(description="Specify a starting published date to filter with.")] = None, + pub_end_date: Annotated[Optional[StrictStr], Field(description="Specify an ending published date to filter with.")] = None, + _request_timeout: Union[ + None, + Annotated[StrictFloat, Field(gt=0)], + Tuple[ + Annotated[StrictFloat, Field(gt=0)], + Annotated[StrictFloat, Field(gt=0)] + ] + ] = None, + _request_auth: Optional[Dict[StrictStr, Any]] = None, + _content_type: Optional[StrictStr] = None, + _headers: Optional[Dict[StrictStr, Any]] = None, + _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination]: + """Return vulnerability data stored in index \"malicious-vscode-exts\" + + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the malicious-vscode-exts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Malicious Visual Studio Code Extensions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-vscode-exts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/malicious-vscode-exts?cursor=` + + :param page: set the page number of the response + :type page: int + :param limit: limit the number of findings in the response + :type limit: int + :param cursor: continue server-side paging using a cursor id + :type cursor: str + :param start_cursor: request server-side paging + :type start_cursor: str + :param order: direction of the sort + :type order: str + :param sort: field by which to sort the results + :type sort: str + :param cve: Specify a CVE ID to search with. + :type cve: str + :param alias: Specify a vulnerability alias to search with. + :type alias: str + :param iava: Specify an IAVA ID to search with. + :type iava: str + :param jvndb: Specify a JVNDB ID to search with. + :type jvndb: str + :param ilvn: Specify an ILVN ID to search with. + :type ilvn: str + :param threat_actor: Specify a threat actor name to search with. + :type threat_actor: str + :param mitre_id: Specify a MITRE ID to search with. + :type mitre_id: str + :param misp_id: Specify a MISP ID to search with. + :type misp_id: str + :param ransomware: Specify a ransomeware family name to search with. + :type ransomware: str + :param botnet: Specify a botnet name to search with. + :type botnet: str + :param published: Specify a published date + :type published: str + :param date: Specify an exact published date to filter with. + :type date: str + :param updated_at_start_date: Specify a starting 'updated-at' date to filter with. + :type updated_at_start_date: str + :param updated_at_end_date: Specify an ending 'updated-at' date to filter with. + :type updated_at_end_date: str + :param last_mod_start_date: Specify a starting last modified date to filter with. + :type last_mod_start_date: str + :param last_mod_end_date: Specify an ending last modified date to filter with. + :type last_mod_end_date: str + :param pub_start_date: Specify a starting published date to filter with. + :type pub_start_date: str + :param pub_end_date: Specify an ending published date to filter with. + :type pub_end_date: str + :param _request_timeout: timeout setting for this request. If one + number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :type _request_timeout: int, tuple(int, int), optional + :param _request_auth: set to override the auth_settings for an a single + request; this effectively ignores the + authentication in the spec for a single request. + :type _request_auth: dict, optional + :param _content_type: force content-type for the request. + :type _content_type: str, Optional + :param _headers: set to override the headers for a single + request; this effectively ignores the headers + in the spec for a single request. + :type _headers: dict, optional + :param _host_index: set to override the host_index for a single + request; this effectively ignores the host_index + in the spec for a single request. + :type _host_index: int, optional + :return: Returns the result object. + """ # noqa: E501 + + _param = self._index_malicious_vscode_exts_get_serialize( + page=page, + limit=limit, + cursor=cursor, + start_cursor=start_cursor, + order=order, + sort=sort, + cve=cve, + alias=alias, + iava=iava, + jvndb=jvndb, + ilvn=ilvn, + threat_actor=threat_actor, + mitre_id=mitre_id, + misp_id=misp_id, + ransomware=ransomware, + botnet=botnet, + published=published, + date=date, + updated_at_start_date=updated_at_start_date, + updated_at_end_date=updated_at_end_date, + last_mod_start_date=last_mod_start_date, + last_mod_end_date=last_mod_end_date, + pub_start_date=pub_start_date, + pub_end_date=pub_end_date, + _request_auth=_request_auth, + _content_type=_content_type, + _headers=_headers, + _host_index=_host_index + ) + + _response_types_map: Dict[str, Optional[str]] = { + '200': "RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination", + '404': "str", + '500': "str", + } + response_data = self.api_client.call_api( + *_param, + _request_timeout=_request_timeout + ) + response_data.read() + return self.api_client.response_deserialize( + response_data=response_data, + response_types_map=_response_types_map, + ) + + + @validate_call + def index_malicious_vscode_exts_get_without_preload_content( + self, + page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, + limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, + cursor: Annotated[Optional[StrictStr], Field(description="continue server-side paging using a cursor id")] = None, + start_cursor: Annotated[Optional[StrictStr], Field(description="request server-side paging")] = None, + order: Annotated[Optional[StrictStr], Field(description="direction of the sort")] = None, + sort: Annotated[Optional[StrictStr], Field(description="field by which to sort the results")] = None, + cve: Annotated[Optional[StrictStr], Field(description="Specify a CVE ID to search with.")] = None, + alias: Annotated[Optional[StrictStr], Field(description="Specify a vulnerability alias to search with.")] = None, + iava: Annotated[Optional[StrictStr], Field(description="Specify an IAVA ID to search with.")] = None, + jvndb: Annotated[Optional[StrictStr], Field(description="Specify a JVNDB ID to search with.")] = None, + ilvn: Annotated[Optional[StrictStr], Field(description="Specify an ILVN ID to search with.")] = None, + threat_actor: Annotated[Optional[StrictStr], Field(description="Specify a threat actor name to search with.")] = None, + mitre_id: Annotated[Optional[StrictStr], Field(description="Specify a MITRE ID to search with.")] = None, + misp_id: Annotated[Optional[StrictStr], Field(description="Specify a MISP ID to search with.")] = None, + ransomware: Annotated[Optional[StrictStr], Field(description="Specify a ransomeware family name to search with.")] = None, + botnet: Annotated[Optional[StrictStr], Field(description="Specify a botnet name to search with.")] = None, + published: Annotated[Optional[StrictStr], Field(description="Specify a published date")] = None, + date: Annotated[Optional[StrictStr], Field(description="Specify an exact published date to filter with.")] = None, + updated_at_start_date: Annotated[Optional[StrictStr], Field(description="Specify a starting 'updated-at' date to filter with.")] = None, + updated_at_end_date: Annotated[Optional[StrictStr], Field(description="Specify an ending 'updated-at' date to filter with.")] = None, + last_mod_start_date: Annotated[Optional[StrictStr], Field(description="Specify a starting last modified date to filter with.")] = None, + last_mod_end_date: Annotated[Optional[StrictStr], Field(description="Specify an ending last modified date to filter with.")] = None, + pub_start_date: Annotated[Optional[StrictStr], Field(description="Specify a starting published date to filter with.")] = None, + pub_end_date: Annotated[Optional[StrictStr], Field(description="Specify an ending published date to filter with.")] = None, + _request_timeout: Union[ + None, + Annotated[StrictFloat, Field(gt=0)], + Tuple[ + Annotated[StrictFloat, Field(gt=0)], + Annotated[StrictFloat, Field(gt=0)] + ] + ] = None, + _request_auth: Optional[Dict[StrictStr, Any]] = None, + _content_type: Optional[StrictStr] = None, + _headers: Optional[Dict[StrictStr, Any]] = None, + _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, + ) -> RESTResponseType: + """Return vulnerability data stored in index \"malicious-vscode-exts\" + + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the malicious-vscode-exts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Malicious Visual Studio Code Extensions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-vscode-exts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/malicious-vscode-exts?cursor=` + + :param page: set the page number of the response + :type page: int + :param limit: limit the number of findings in the response + :type limit: int + :param cursor: continue server-side paging using a cursor id + :type cursor: str + :param start_cursor: request server-side paging + :type start_cursor: str + :param order: direction of the sort + :type order: str + :param sort: field by which to sort the results + :type sort: str + :param cve: Specify a CVE ID to search with. + :type cve: str + :param alias: Specify a vulnerability alias to search with. + :type alias: str + :param iava: Specify an IAVA ID to search with. + :type iava: str + :param jvndb: Specify a JVNDB ID to search with. + :type jvndb: str + :param ilvn: Specify an ILVN ID to search with. + :type ilvn: str + :param threat_actor: Specify a threat actor name to search with. + :type threat_actor: str + :param mitre_id: Specify a MITRE ID to search with. + :type mitre_id: str + :param misp_id: Specify a MISP ID to search with. + :type misp_id: str + :param ransomware: Specify a ransomeware family name to search with. + :type ransomware: str + :param botnet: Specify a botnet name to search with. + :type botnet: str + :param published: Specify a published date + :type published: str + :param date: Specify an exact published date to filter with. + :type date: str + :param updated_at_start_date: Specify a starting 'updated-at' date to filter with. + :type updated_at_start_date: str + :param updated_at_end_date: Specify an ending 'updated-at' date to filter with. + :type updated_at_end_date: str + :param last_mod_start_date: Specify a starting last modified date to filter with. + :type last_mod_start_date: str + :param last_mod_end_date: Specify an ending last modified date to filter with. + :type last_mod_end_date: str + :param pub_start_date: Specify a starting published date to filter with. + :type pub_start_date: str + :param pub_end_date: Specify an ending published date to filter with. + :type pub_end_date: str + :param _request_timeout: timeout setting for this request. If one + number provided, it will be total request + timeout. It can also be a pair (tuple) of + (connection, read) timeouts. + :type _request_timeout: int, tuple(int, int), optional + :param _request_auth: set to override the auth_settings for an a single + request; this effectively ignores the + authentication in the spec for a single request. + :type _request_auth: dict, optional + :param _content_type: force content-type for the request. + :type _content_type: str, Optional + :param _headers: set to override the headers for a single + request; this effectively ignores the headers + in the spec for a single request. + :type _headers: dict, optional + :param _host_index: set to override the host_index for a single + request; this effectively ignores the host_index + in the spec for a single request. + :type _host_index: int, optional + :return: Returns the result object. + """ # noqa: E501 + + _param = self._index_malicious_vscode_exts_get_serialize( + page=page, + limit=limit, + cursor=cursor, + start_cursor=start_cursor, + order=order, + sort=sort, + cve=cve, + alias=alias, + iava=iava, + jvndb=jvndb, + ilvn=ilvn, + threat_actor=threat_actor, + mitre_id=mitre_id, + misp_id=misp_id, + ransomware=ransomware, + botnet=botnet, + published=published, + date=date, + updated_at_start_date=updated_at_start_date, + updated_at_end_date=updated_at_end_date, + last_mod_start_date=last_mod_start_date, + last_mod_end_date=last_mod_end_date, + pub_start_date=pub_start_date, + pub_end_date=pub_end_date, + _request_auth=_request_auth, + _content_type=_content_type, + _headers=_headers, + _host_index=_host_index + ) + + _response_types_map: Dict[str, Optional[str]] = { + '200': "RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination", + '404': "str", + '500': "str", + } + response_data = self.api_client.call_api( + *_param, + _request_timeout=_request_timeout + ) + return response_data.response + + + def _index_malicious_vscode_exts_get_serialize( + self, + page, + limit, + cursor, + start_cursor, + order, + sort, + cve, + alias, + iava, + jvndb, + ilvn, + threat_actor, + mitre_id, + misp_id, + ransomware, + botnet, + published, + date, + updated_at_start_date, + updated_at_end_date, + last_mod_start_date, + last_mod_end_date, + pub_start_date, + pub_end_date, + _request_auth, + _content_type, + _headers, + _host_index, + ) -> RequestSerialized: + + _hosts = [ + 'https://api.vulncheck.com/v3' + ] + _host = _hosts[_host_index] + + _collection_formats: Dict[str, str] = { + } + + _path_params: Dict[str, str] = {} + _query_params: List[Tuple[str, str]] = [] + _header_params: Dict[str, Optional[str]] = _headers or {} + _form_params: List[Tuple[str, str]] = [] + _files: Dict[ + str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] + ] = {} + _body_params: Optional[bytes] = None + + # process the path parameters + # process the query parameters + if page is not None: + + _query_params.append(('page', page)) + + if limit is not None: + + _query_params.append(('limit', limit)) + + if cursor is not None: + + _query_params.append(('cursor', cursor)) + + if start_cursor is not None: + + _query_params.append(('start_cursor', start_cursor)) + + if order is not None: + + _query_params.append(('order', order)) + + if sort is not None: + + _query_params.append(('sort', sort)) + + if cve is not None: + + _query_params.append(('cve', cve)) + + if alias is not None: + + _query_params.append(('alias', alias)) + + if iava is not None: + + _query_params.append(('iava', iava)) + + if jvndb is not None: + + _query_params.append(('jvndb', jvndb)) + + if ilvn is not None: + + _query_params.append(('ilvn', ilvn)) + + if threat_actor is not None: + + _query_params.append(('threat_actor', threat_actor)) + + if mitre_id is not None: + + _query_params.append(('mitre_id', mitre_id)) + + if misp_id is not None: + + _query_params.append(('misp_id', misp_id)) + + if ransomware is not None: + + _query_params.append(('ransomware', ransomware)) + + if botnet is not None: + + _query_params.append(('botnet', botnet)) + + if published is not None: + + _query_params.append(('published', published)) + + if date is not None: + + _query_params.append(('date', date)) + + if updated_at_start_date is not None: + + _query_params.append(('updatedAtStartDate', updated_at_start_date)) + + if updated_at_end_date is not None: + + _query_params.append(('updatedAtEndDate', updated_at_end_date)) + + if last_mod_start_date is not None: + + _query_params.append(('lastModStartDate', last_mod_start_date)) + + if last_mod_end_date is not None: + + _query_params.append(('lastModEndDate', last_mod_end_date)) + + if pub_start_date is not None: + + _query_params.append(('pubStartDate', pub_start_date)) + + if pub_end_date is not None: + + _query_params.append(('pubEndDate', pub_end_date)) + + # process the header parameters + # process the form parameters + # process the body parameter + + + # set the HTTP header `Accept` + if 'Accept' not in _header_params: + _header_params['Accept'] = self.api_client.select_header_accept( + [ + 'application/json' + ] + ) + + + # authentication setting + _auth_settings: List[str] = [ + 'Bearer' + ] + + return self.api_client.param_serialize( + method='GET', + resource_path='/index/malicious-vscode-exts', + path_params=_path_params, + query_params=_query_params, + header_params=_header_params, + body=_body_params, + post_params=_form_params, + files=_files, + auth_settings=_auth_settings, + collection_formats=_collection_formats, + _host=_host, + _request_auth=_request_auth + ) + + + + @validate_call def index_manageengine_get( self, diff --git a/vulncheck_sdk/api_client.py b/vulncheck_sdk/api_client.py index 4b766820..76010185 100644 --- a/vulncheck_sdk/api_client.py +++ b/vulncheck_sdk/api_client.py @@ -92,7 +92,7 @@ def __init__( self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'OpenAPI-Generator/0.0.42/python' + self.user_agent = 'OpenAPI-Generator/0.0.43/python' self.client_side_validation = configuration.client_side_validation def __enter__(self): diff --git a/vulncheck_sdk/configuration.py b/vulncheck_sdk/configuration.py index f65b8217..f14b4d66 100644 --- a/vulncheck_sdk/configuration.py +++ b/vulncheck_sdk/configuration.py @@ -537,7 +537,7 @@ def to_debug_report(self) -> str: "OS: {env}\n"\ "Python Version: {pyversion}\n"\ "Version of the API: latest\n"\ - "SDK Package Version: 0.0.42".\ + "SDK Package Version: 0.0.43".\ format(env=sys.platform, pyversion=sys.version) def get_host_settings(self) -> List[HostSetting]: diff --git a/vulncheck_sdk/models/__init__.py b/vulncheck_sdk/models/__init__.py index f28e3b09..083a77f1 100644 --- a/vulncheck_sdk/models/__init__.py +++ b/vulncheck_sdk/models/__init__.py @@ -209,6 +209,7 @@ from vulncheck_sdk.models.advisory_curl_cwe import AdvisoryCurlCWE from vulncheck_sdk.models.advisory_curl_credit import AdvisoryCurlCredit from vulncheck_sdk.models.advisory_curl_range import AdvisoryCurlRange +from vulncheck_sdk.models.advisory_custom_cpe import AdvisoryCustomCPE from vulncheck_sdk.models.advisory_cvrf import AdvisoryCvrf from vulncheck_sdk.models.advisory_cvsss_v23 import AdvisoryCvsssV23 from vulncheck_sdk.models.advisory_cwe import AdvisoryCwe @@ -410,6 +411,7 @@ from vulncheck_sdk.models.advisory_m_version import AdvisoryMVersion from vulncheck_sdk.models.advisory_m_vulnerability import AdvisoryMVulnerability from vulncheck_sdk.models.advisory_malicious_package import AdvisoryMaliciousPackage +from vulncheck_sdk.models.advisory_malicious_vs_code_exts import AdvisoryMaliciousVSCodeExts from vulncheck_sdk.models.advisory_manage_engine import AdvisoryManageEngine from vulncheck_sdk.models.advisory_manage_engine_advisory import AdvisoryManageEngineAdvisory from vulncheck_sdk.models.advisory_mbed_tls import AdvisoryMbedTLS @@ -842,6 +844,9 @@ from vulncheck_sdk.models.api_update import ApiUpdate from vulncheck_sdk.models.api_vuln_check_canary import ApiVulnCheckCanary from vulncheck_sdk.models.api_vulnerability_alias import ApiVulnerabilityAlias +from vulncheck_sdk.models.backup_backup_response import BackupBackupResponse +from vulncheck_sdk.models.backup_feed_item import BackupFeedItem +from vulncheck_sdk.models.backup_list_backups_response import BackupListBackupsResponse from vulncheck_sdk.models.models_entitlements import ModelsEntitlements from vulncheck_sdk.models.paginate_match import PaginateMatch from vulncheck_sdk.models.paginate_pagination import PaginatePagination @@ -1092,6 +1097,7 @@ from vulncheck_sdk.models.render_response_with_metadata_array_advisory_ma_cert_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMACertPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_advisory_m_files_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMFilesPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_advisory_malicious_package_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMaliciousPackagePaginatePagination +from vulncheck_sdk.models.render_response_with_metadata_array_advisory_malicious_vs_code_exts_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_advisory_manage_engine_advisory_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryManageEngineAdvisoryPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_advisory_mbed_tls_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMbedTLSPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_advisory_mc_afee_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryMcAfeePaginatePagination diff --git a/vulncheck_sdk/models/advisory_apache_arrow.py b/vulncheck_sdk/models/advisory_apache_arrow.py index a2480230..d242198e 100644 --- a/vulncheck_sdk/models/advisory_apache_arrow.py +++ b/vulncheck_sdk/models/advisory_apache_arrow.py @@ -31,8 +31,9 @@ class AdvisoryApacheArrow(BaseModel): date_added: Optional[StrictStr] = None summary: Optional[StrictStr] = None title: Optional[StrictStr] = None + updated_at: Optional[StrictStr] = None url: Optional[StrictStr] = None - __properties: ClassVar[List[str]] = ["cve", "date_added", "summary", "title", "url"] + __properties: ClassVar[List[str]] = ["cve", "date_added", "summary", "title", "updated_at", "url"] model_config = ConfigDict( populate_by_name=True, @@ -89,6 +90,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "date_added": obj.get("date_added"), "summary": obj.get("summary"), "title": obj.get("title"), + "updated_at": obj.get("updated_at"), "url": obj.get("url") }) return _obj diff --git a/vulncheck_sdk/models/advisory_apache_superset.py b/vulncheck_sdk/models/advisory_apache_superset.py index 2a96619d..ba51785a 100644 --- a/vulncheck_sdk/models/advisory_apache_superset.py +++ b/vulncheck_sdk/models/advisory_apache_superset.py @@ -31,8 +31,9 @@ class AdvisoryApacheSuperset(BaseModel): cve: Optional[List[StrictStr]] = None date_added: Optional[StrictStr] = None title: Optional[StrictStr] = None + updated_at: Optional[StrictStr] = None url: Optional[StrictStr] = None - __properties: ClassVar[List[str]] = ["affected", "cve", "date_added", "title", "url"] + __properties: ClassVar[List[str]] = ["affected", "cve", "date_added", "title", "updated_at", "url"] model_config = ConfigDict( populate_by_name=True, @@ -89,6 +90,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "cve": obj.get("cve"), "date_added": obj.get("date_added"), "title": obj.get("title"), + "updated_at": obj.get("updated_at"), "url": obj.get("url") }) return _obj diff --git a/vulncheck_sdk/models/advisory_asrg.py b/vulncheck_sdk/models/advisory_asrg.py index 6274360e..778ade4f 100644 --- a/vulncheck_sdk/models/advisory_asrg.py +++ b/vulncheck_sdk/models/advisory_asrg.py @@ -36,8 +36,9 @@ class AdvisoryASRG(BaseModel): problem_type: Optional[StrictStr] = None references: Optional[List[StrictStr]] = None title: Optional[StrictStr] = None + updated_at: Optional[StrictStr] = None url: Optional[StrictStr] = None - __properties: ClassVar[List[str]] = ["affected_products", "capec", "cve", "cvss", "date_added", "description", "problem_type", "references", "title", "url"] + __properties: ClassVar[List[str]] = ["affected_products", "capec", "cve", "cvss", "date_added", "description", "problem_type", "references", "title", "updated_at", "url"] model_config = ConfigDict( populate_by_name=True, @@ -99,6 +100,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "problem_type": obj.get("problem_type"), "references": obj.get("references"), "title": obj.get("title"), + "updated_at": obj.get("updated_at"), "url": obj.get("url") }) return _obj diff --git a/vulncheck_sdk/models/advisory_cisa_alert.py b/vulncheck_sdk/models/advisory_cisa_alert.py index 04b9130d..48082091 100644 --- a/vulncheck_sdk/models/advisory_cisa_alert.py +++ b/vulncheck_sdk/models/advisory_cisa_alert.py @@ -27,22 +27,21 @@ class AdvisoryCISAAlert(BaseModel): """ advisory.CISAAlert """ # noqa: E501 - affected_products: Optional[StrictStr] = Field(default=None, alias="affectedProducts") - alert_id: Optional[StrictStr] = Field(default=None, alias="alertID") - archived: Optional[StrictBool] = None + affected_products: Optional[StrictStr] = Field(default=None, alias="AffectedProducts") + alert_id: Optional[StrictStr] = Field(default=None, alias="AlertID") + archived: Optional[StrictBool] = Field(default=None, alias="Archived") + cve_exploited_itw: Optional[StrictBool] = Field(default=None, alias="CVEExploitedITW") + cvss: Optional[StrictStr] = Field(default=None, alias="CVSS") + icsma: Optional[StrictBool] = Field(default=None, alias="ICSMA") + mitigations: Optional[StrictStr] = Field(default=None, alias="Mitigations") + release_date: Optional[StrictStr] = Field(default=None, alias="ReleaseDate") + title: Optional[StrictStr] = Field(default=None, alias="Title") + url: Optional[StrictStr] = Field(default=None, alias="Url") + vendor: Optional[StrictStr] = Field(default=None, alias="Vendor") cve: Optional[List[StrictStr]] = None - cveexploited_itw: Optional[StrictBool] = Field(default=None, alias="cveexploitedITW") - cvss: Optional[StrictStr] = None date_added: Optional[StrictStr] = None - icsa: Optional[StrictBool] = None - icsma: Optional[StrictBool] = None - mitigations: Optional[StrictStr] = None - release_date: Optional[StrictStr] = Field(default=None, alias="releaseDate") - title: Optional[StrictStr] = None updated_at: Optional[StrictStr] = None - url: Optional[StrictStr] = None - vendor: Optional[StrictStr] = None - __properties: ClassVar[List[str]] = ["affectedProducts", "alertID", "archived", "cve", "cveexploitedITW", "cvss", "date_added", "icsa", "icsma", "mitigations", "releaseDate", "title", "updated_at", "url", "vendor"] + __properties: ClassVar[List[str]] = ["AffectedProducts", "AlertID", "Archived", "CVEExploitedITW", "CVSS", "ICSMA", "Mitigations", "ReleaseDate", "Title", "Url", "Vendor", "cve", "date_added", "updated_at"] model_config = ConfigDict( populate_by_name=True, @@ -95,21 +94,20 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: return cls.model_validate(obj) _obj = cls.model_validate({ - "affectedProducts": obj.get("affectedProducts"), - "alertID": obj.get("alertID"), - "archived": obj.get("archived"), + "AffectedProducts": obj.get("AffectedProducts"), + "AlertID": obj.get("AlertID"), + "Archived": obj.get("Archived"), + "CVEExploitedITW": obj.get("CVEExploitedITW"), + "CVSS": obj.get("CVSS"), + "ICSMA": obj.get("ICSMA"), + "Mitigations": obj.get("Mitigations"), + "ReleaseDate": obj.get("ReleaseDate"), + "Title": obj.get("Title"), + "Url": obj.get("Url"), + "Vendor": obj.get("Vendor"), "cve": obj.get("cve"), - "cveexploitedITW": obj.get("cveexploitedITW"), - "cvss": obj.get("cvss"), "date_added": obj.get("date_added"), - "icsa": obj.get("icsa"), - "icsma": obj.get("icsma"), - "mitigations": obj.get("mitigations"), - "releaseDate": obj.get("releaseDate"), - "title": obj.get("title"), - "updated_at": obj.get("updated_at"), - "url": obj.get("url"), - "vendor": obj.get("vendor") + "updated_at": obj.get("updated_at") }) return _obj diff --git a/vulncheck_sdk/models/advisory_custom_cpe.py b/vulncheck_sdk/models/advisory_custom_cpe.py new file mode 100644 index 00000000..a032383f --- /dev/null +++ b/vulncheck_sdk/models/advisory_custom_cpe.py @@ -0,0 +1,94 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, Field, StrictStr +from typing import Any, ClassVar, Dict, List, Optional +from vulncheck_sdk.models.advisory_mcpe_applicability import AdvisoryMCPEApplicability +from typing import Optional, Set +from typing_extensions import Self + +class AdvisoryCustomCPE(BaseModel): + """ + advisory.CustomCPE + """ # noqa: E501 + mcpeapplicability: Optional[AdvisoryMCPEApplicability] = None + string_value: Optional[StrictStr] = Field(default=None, alias="stringValue") + __properties: ClassVar[List[str]] = ["mcpeapplicability", "stringValue"] + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of AdvisoryCustomCPE from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + # override the default output from pydantic by calling `to_dict()` of mcpeapplicability + if self.mcpeapplicability: + _dict['mcpeapplicability'] = self.mcpeapplicability.to_dict() + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of AdvisoryCustomCPE from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "mcpeapplicability": AdvisoryMCPEApplicability.from_dict(obj["mcpeapplicability"]) if obj.get("mcpeapplicability") is not None else None, + "stringValue": obj.get("stringValue") + }) + return _obj + + diff --git a/vulncheck_sdk/models/advisory_fastly.py b/vulncheck_sdk/models/advisory_fastly.py index 0ee25881..15359aa9 100644 --- a/vulncheck_sdk/models/advisory_fastly.py +++ b/vulncheck_sdk/models/advisory_fastly.py @@ -31,8 +31,9 @@ class AdvisoryFastly(BaseModel): date_added: Optional[StrictStr] = None summary: Optional[StrictStr] = None title: Optional[StrictStr] = None + updated_at: Optional[StrictStr] = None url: Optional[StrictStr] = None - __properties: ClassVar[List[str]] = ["cve", "date_added", "summary", "title", "url"] + __properties: ClassVar[List[str]] = ["cve", "date_added", "summary", "title", "updated_at", "url"] model_config = ConfigDict( populate_by_name=True, @@ -89,6 +90,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "date_added": obj.get("date_added"), "summary": obj.get("summary"), "title": obj.get("title"), + "updated_at": obj.get("updated_at"), "url": obj.get("url") }) return _obj diff --git a/vulncheck_sdk/models/advisory_haskell_sadb_advisory.py b/vulncheck_sdk/models/advisory_haskell_sadb_advisory.py index 7ba0f281..950028a0 100644 --- a/vulncheck_sdk/models/advisory_haskell_sadb_advisory.py +++ b/vulncheck_sdk/models/advisory_haskell_sadb_advisory.py @@ -37,7 +37,8 @@ class AdvisoryHaskellSADBAdvisory(BaseModel): keywords: Optional[List[StrictStr]] = None references: Optional[Dict[str, List[StrictStr]]] = None related_vulns: Optional[List[StrictStr]] = None - __properties: ClassVar[List[str]] = ["advisory_id", "affected_packages", "aliases", "cve", "cwes", "date_added", "keywords", "references", "related_vulns"] + updated_at: Optional[StrictStr] = None + __properties: ClassVar[List[str]] = ["advisory_id", "affected_packages", "aliases", "cve", "cwes", "date_added", "keywords", "references", "related_vulns", "updated_at"] model_config = ConfigDict( populate_by_name=True, @@ -105,7 +106,8 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "date_added": obj.get("date_added"), "keywords": obj.get("keywords"), "references": obj.get("references"), - "related_vulns": obj.get("related_vulns") + "related_vulns": obj.get("related_vulns"), + "updated_at": obj.get("updated_at") }) return _obj diff --git a/vulncheck_sdk/models/advisory_m_cna.py b/vulncheck_sdk/models/advisory_m_cna.py index ec01320e..f65626f3 100644 --- a/vulncheck_sdk/models/advisory_m_cna.py +++ b/vulncheck_sdk/models/advisory_m_cna.py @@ -21,13 +21,13 @@ from pydantic import BaseModel, ConfigDict, Field, StrictStr from typing import Any, ClassVar, Dict, List, Optional from vulncheck_sdk.models.advisory_credit import AdvisoryCredit +from vulncheck_sdk.models.advisory_custom_cpe import AdvisoryCustomCPE from vulncheck_sdk.models.advisory_impact import AdvisoryImpact from vulncheck_sdk.models.advisory_m_affected import AdvisoryMAffected from vulncheck_sdk.models.advisory_m_descriptions import AdvisoryMDescriptions from vulncheck_sdk.models.advisory_m_problem_types import AdvisoryMProblemTypes from vulncheck_sdk.models.advisory_m_provider_metadata import AdvisoryMProviderMetadata from vulncheck_sdk.models.advisory_m_reference import AdvisoryMReference -from vulncheck_sdk.models.advisory_mcpe_applicability import AdvisoryMCPEApplicability from vulncheck_sdk.models.advisory_metric import AdvisoryMetric from vulncheck_sdk.models.advisory_timeline import AdvisoryTimeline from typing import Optional, Set @@ -38,7 +38,7 @@ class AdvisoryMCna(BaseModel): advisory.MCna """ # noqa: E501 affected: Optional[List[AdvisoryMAffected]] = None - cpe_applicability: Optional[List[AdvisoryMCPEApplicability]] = Field(default=None, alias="cpeApplicability") + cpe_applicability: Optional[List[AdvisoryCustomCPE]] = Field(default=None, alias="cpeApplicability") credits: Optional[List[AdvisoryCredit]] = None descriptions: Optional[List[AdvisoryMDescriptions]] = None impacts: Optional[List[AdvisoryImpact]] = None @@ -169,7 +169,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: _obj = cls.model_validate({ "affected": [AdvisoryMAffected.from_dict(_item) for _item in obj["affected"]] if obj.get("affected") is not None else None, - "cpeApplicability": [AdvisoryMCPEApplicability.from_dict(_item) for _item in obj["cpeApplicability"]] if obj.get("cpeApplicability") is not None else None, + "cpeApplicability": [AdvisoryCustomCPE.from_dict(_item) for _item in obj["cpeApplicability"]] if obj.get("cpeApplicability") is not None else None, "credits": [AdvisoryCredit.from_dict(_item) for _item in obj["credits"]] if obj.get("credits") is not None else None, "descriptions": [AdvisoryMDescriptions.from_dict(_item) for _item in obj["descriptions"]] if obj.get("descriptions") is not None else None, "impacts": [AdvisoryImpact.from_dict(_item) for _item in obj["impacts"]] if obj.get("impacts") is not None else None, diff --git a/vulncheck_sdk/models/advisory_ma_cert.py b/vulncheck_sdk/models/advisory_ma_cert.py index 1aa2e8aa..6aa9b5ff 100644 --- a/vulncheck_sdk/models/advisory_ma_cert.py +++ b/vulncheck_sdk/models/advisory_ma_cert.py @@ -38,8 +38,9 @@ class AdvisoryMACert(BaseModel): risks_fr: Optional[StrictStr] = None solution_fr: Optional[StrictStr] = None title_fr: Optional[StrictStr] = None + updated_at: Optional[StrictStr] = None url: Optional[StrictStr] = None - __properties: ClassVar[List[str]] = ["affected_systems_fr", "assessment_fr", "cve", "date_added", "impact_fr", "reference", "references", "risk_fr", "risks_fr", "solution_fr", "title_fr", "url"] + __properties: ClassVar[List[str]] = ["affected_systems_fr", "assessment_fr", "cve", "date_added", "impact_fr", "reference", "references", "risk_fr", "risks_fr", "solution_fr", "title_fr", "updated_at", "url"] model_config = ConfigDict( populate_by_name=True, @@ -103,6 +104,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "risks_fr": obj.get("risks_fr"), "solution_fr": obj.get("solution_fr"), "title_fr": obj.get("title_fr"), + "updated_at": obj.get("updated_at"), "url": obj.get("url") }) return _obj diff --git a/vulncheck_sdk/models/advisory_malicious_vs_code_exts.py b/vulncheck_sdk/models/advisory_malicious_vs_code_exts.py new file mode 100644 index 00000000..6fbaa09b --- /dev/null +++ b/vulncheck_sdk/models/advisory_malicious_vs_code_exts.py @@ -0,0 +1,100 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, Field, StrictStr +from typing import Any, ClassVar, Dict, List, Optional +from typing import Optional, Set +from typing_extensions import Self + +class AdvisoryMaliciousVSCodeExts(BaseModel): + """ + advisory.MaliciousVSCodeExts + """ # noqa: E501 + date_added: Optional[StrictStr] = None + name: Optional[StrictStr] = None + publisher: Optional[StrictStr] = None + type: Optional[StrictStr] = None + updated_at: Optional[StrictStr] = Field(default=None, description="the data in this feed comes from manual curation. so this will likely be omitted.") + url: Optional[StrictStr] = None + version: Optional[StrictStr] = None + __properties: ClassVar[List[str]] = ["date_added", "name", "publisher", "type", "updated_at", "url", "version"] + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of AdvisoryMaliciousVSCodeExts from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of AdvisoryMaliciousVSCodeExts from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "date_added": obj.get("date_added"), + "name": obj.get("name"), + "publisher": obj.get("publisher"), + "type": obj.get("type"), + "updated_at": obj.get("updated_at"), + "url": obj.get("url"), + "version": obj.get("version") + }) + return _obj + + diff --git a/vulncheck_sdk/models/advisory_ni.py b/vulncheck_sdk/models/advisory_ni.py index 8124f688..caf5220c 100644 --- a/vulncheck_sdk/models/advisory_ni.py +++ b/vulncheck_sdk/models/advisory_ni.py @@ -32,8 +32,9 @@ class AdvisoryNI(BaseModel): ovewrview: Optional[StrictStr] = None references: Optional[List[StrictStr]] = None title: Optional[StrictStr] = None + updated_at: Optional[StrictStr] = None url: Optional[StrictStr] = None - __properties: ClassVar[List[str]] = ["cve", "date_added", "ovewrview", "references", "title", "url"] + __properties: ClassVar[List[str]] = ["cve", "date_added", "ovewrview", "references", "title", "updated_at", "url"] model_config = ConfigDict( populate_by_name=True, @@ -91,6 +92,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "ovewrview": obj.get("ovewrview"), "references": obj.get("references"), "title": obj.get("title"), + "updated_at": obj.get("updated_at"), "url": obj.get("url") }) return _obj diff --git a/vulncheck_sdk/models/advisory_panasonic.py b/vulncheck_sdk/models/advisory_panasonic.py index 65ceb55c..9bfd15f0 100644 --- a/vulncheck_sdk/models/advisory_panasonic.py +++ b/vulncheck_sdk/models/advisory_panasonic.py @@ -31,8 +31,9 @@ class AdvisoryPanasonic(BaseModel): date_added: Optional[StrictStr] = None summary: Optional[StrictStr] = None title: Optional[StrictStr] = None + updated_at: Optional[StrictStr] = None url: Optional[StrictStr] = None - __properties: ClassVar[List[str]] = ["cve", "date_added", "summary", "title", "url"] + __properties: ClassVar[List[str]] = ["cve", "date_added", "summary", "title", "updated_at", "url"] model_config = ConfigDict( populate_by_name=True, @@ -89,6 +90,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "date_added": obj.get("date_added"), "summary": obj.get("summary"), "title": obj.get("title"), + "updated_at": obj.get("updated_at"), "url": obj.get("url") }) return _obj diff --git a/vulncheck_sdk/models/advisory_qualys.py b/vulncheck_sdk/models/advisory_qualys.py index 2fa877eb..9edb3c0e 100644 --- a/vulncheck_sdk/models/advisory_qualys.py +++ b/vulncheck_sdk/models/advisory_qualys.py @@ -31,8 +31,9 @@ class AdvisoryQualys(BaseModel): date_added: Optional[StrictStr] = None exploits: Optional[List[StrictStr]] = None title: Optional[StrictStr] = None + updated_at: Optional[StrictStr] = None url: Optional[StrictStr] = None - __properties: ClassVar[List[str]] = ["cve", "date_added", "exploits", "title", "url"] + __properties: ClassVar[List[str]] = ["cve", "date_added", "exploits", "title", "updated_at", "url"] model_config = ConfigDict( populate_by_name=True, @@ -89,6 +90,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "date_added": obj.get("date_added"), "exploits": obj.get("exploits"), "title": obj.get("title"), + "updated_at": obj.get("updated_at"), "url": obj.get("url") }) return _obj diff --git a/vulncheck_sdk/models/advisory_samba.py b/vulncheck_sdk/models/advisory_samba.py index 1f6dacad..a81305d9 100644 --- a/vulncheck_sdk/models/advisory_samba.py +++ b/vulncheck_sdk/models/advisory_samba.py @@ -33,7 +33,9 @@ class AdvisorySamba(BaseModel): issues: Optional[StrictStr] = None patches: Optional[List[StrictStr]] = None references: Optional[List[StrictStr]] = None - __properties: ClassVar[List[str]] = ["affected", "cve", "date_added", "issues", "patches", "references"] + updated_at: Optional[StrictStr] = None + url: Optional[StrictStr] = None + __properties: ClassVar[List[str]] = ["affected", "cve", "date_added", "issues", "patches", "references", "updated_at", "url"] model_config = ConfigDict( populate_by_name=True, @@ -91,7 +93,9 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "date_added": obj.get("date_added"), "issues": obj.get("issues"), "patches": obj.get("patches"), - "references": obj.get("references") + "references": obj.get("references"), + "updated_at": obj.get("updated_at"), + "url": obj.get("url") }) return _obj diff --git a/vulncheck_sdk/models/advisory_ssd_advisory.py b/vulncheck_sdk/models/advisory_ssd_advisory.py index ae3e9eaf..2d7c7176 100644 --- a/vulncheck_sdk/models/advisory_ssd_advisory.py +++ b/vulncheck_sdk/models/advisory_ssd_advisory.py @@ -37,7 +37,8 @@ class AdvisorySSDAdvisory(BaseModel): response_ref: Optional[StrictStr] = None summary: Optional[StrictStr] = None title: Optional[StrictStr] = None - __properties: ClassVar[List[str]] = ["analysis", "credit", "cve", "date_added", "link", "poc", "published", "response_ref", "summary", "title"] + updated_at: Optional[StrictStr] = None + __properties: ClassVar[List[str]] = ["analysis", "credit", "cve", "date_added", "link", "poc", "published", "response_ref", "summary", "title", "updated_at"] model_config = ConfigDict( populate_by_name=True, @@ -99,7 +100,8 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "published": obj.get("published"), "response_ref": obj.get("response_ref"), "summary": obj.get("summary"), - "title": obj.get("title") + "title": obj.get("title"), + "updated_at": obj.get("updated_at") }) return _obj diff --git a/vulncheck_sdk/models/advisory_ti.py b/vulncheck_sdk/models/advisory_ti.py index 74d33622..a818ae52 100644 --- a/vulncheck_sdk/models/advisory_ti.py +++ b/vulncheck_sdk/models/advisory_ti.py @@ -32,8 +32,9 @@ class AdvisoryTI(BaseModel): incident_id: Optional[StrictStr] = None summary: Optional[StrictStr] = None title: Optional[StrictStr] = None + updated_at: Optional[StrictStr] = None url: Optional[StrictStr] = None - __properties: ClassVar[List[str]] = ["cve", "date_added", "incident_id", "summary", "title", "url"] + __properties: ClassVar[List[str]] = ["cve", "date_added", "incident_id", "summary", "title", "updated_at", "url"] model_config = ConfigDict( populate_by_name=True, @@ -91,6 +92,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "incident_id": obj.get("incident_id"), "summary": obj.get("summary"), "title": obj.get("title"), + "updated_at": obj.get("updated_at"), "url": obj.get("url") }) return _obj diff --git a/vulncheck_sdk/models/advisory_trane_technology.py b/vulncheck_sdk/models/advisory_trane_technology.py index 40d18488..11d399bd 100644 --- a/vulncheck_sdk/models/advisory_trane_technology.py +++ b/vulncheck_sdk/models/advisory_trane_technology.py @@ -33,8 +33,9 @@ class AdvisoryTraneTechnology(BaseModel): id: Optional[StrictStr] = None product: Optional[StrictStr] = None summary: Optional[StrictStr] = None + updated_at: Optional[StrictStr] = None url: Optional[StrictStr] = None - __properties: ClassVar[List[str]] = ["brand", "cve", "date_added", "id", "product", "summary", "url"] + __properties: ClassVar[List[str]] = ["brand", "cve", "date_added", "id", "product", "summary", "updated_at", "url"] model_config = ConfigDict( populate_by_name=True, @@ -93,6 +94,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "id": obj.get("id"), "product": obj.get("product"), "summary": obj.get("summary"), + "updated_at": obj.get("updated_at"), "url": obj.get("url") }) return _obj diff --git a/vulncheck_sdk/models/advisory_with_secure.py b/vulncheck_sdk/models/advisory_with_secure.py index 74aeb4bd..a544038e 100644 --- a/vulncheck_sdk/models/advisory_with_secure.py +++ b/vulncheck_sdk/models/advisory_with_secure.py @@ -31,8 +31,9 @@ class AdvisoryWithSecure(BaseModel): date_added: Optional[StrictStr] = None summary: Optional[StrictStr] = None title: Optional[StrictStr] = None + updated_at: Optional[StrictStr] = None url: Optional[StrictStr] = None - __properties: ClassVar[List[str]] = ["cve", "date_added", "summary", "title", "url"] + __properties: ClassVar[List[str]] = ["cve", "date_added", "summary", "title", "updated_at", "url"] model_config = ConfigDict( populate_by_name=True, @@ -89,6 +90,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "date_added": obj.get("date_added"), "summary": obj.get("summary"), "title": obj.get("title"), + "updated_at": obj.get("updated_at"), "url": obj.get("url") }) return _obj diff --git a/vulncheck_sdk/models/api_initial_access_artifact.py b/vulncheck_sdk/models/api_initial_access_artifact.py index b06964bf..7f1d0f4d 100644 --- a/vulncheck_sdk/models/api_initial_access_artifact.py +++ b/vulncheck_sdk/models/api_initial_access_artifact.py @@ -35,6 +35,7 @@ class ApiInitialAccessArtifact(BaseModel): censys_legacy_raw_queries: Optional[List[StrictStr]] = Field(default=None, description="CensysLegacyRawQueries are raw legacy queries for examining potential Internet-exposed devices & applications with Censys.", alias="censysLegacyRawQueries") censys_queries: Optional[List[StrictStr]] = Field(default=None, description="CensysQueries are queries for examining potential Internet-exposed devices & applications with Censys in URL form.", alias="censysQueries") censys_raw_queries: Optional[List[StrictStr]] = Field(default=None, description="CensysRawQueries are raw queries for examining potential Internet-exposed devices & applications with Censys.", alias="censysRawQueries") + chain: Optional[List[StrictStr]] = Field(default=None, description="Chain can represent the chain of exploitation.") clone_sshurl: Optional[StrictStr] = Field(default=None, description="CloneSSHURL is the git URL to clone the artifact with.", alias="cloneSSHURL") date_added: Optional[StrictStr] = Field(default=None, description="DateAdded is when this artifact entry was first added to the InitialAccess data set.", alias="dateAdded") driftnet_queries: Optional[List[StrictStr]] = Field(default=None, description="DriftnetQueries are queries for examining Internet exposed services with Driftnet.", alias="driftnetQueries") @@ -49,6 +50,7 @@ class ApiInitialAccessArtifact(BaseModel): nmap_script: Optional[StrictBool] = Field(default=None, description="NmapScript indicates whether or not an nmap script for scanning environment exists in this artifact.", alias="nmapScript") pcap: Optional[StrictBool] = Field(default=None, description="PCAP indicates whether of not a package capture of the exploit PoC exploiting a vulnerable system exists in this artifact.") product: Optional[List[StrictStr]] = Field(default=None, description="Product are the software that has the vulnerability.") + related: Optional[List[StrictStr]] = Field(default=None, description="Related is a set of related cves.") shodan_queries: Optional[List[StrictStr]] = Field(default=None, description="ShodanQueries are queries for examining potential Internet-exposed devices & applications with Shodan in URL form.", alias="shodanQueries") shodan_raw_queries: Optional[List[StrictStr]] = Field(default=None, description="ShodanRawQueries are raw queries for examining potential Internet-exposed devices & applications with Shodan.", alias="shodanRawQueries") sigma_rule: Optional[StrictBool] = Field(default=None, description="SigmaRule indicates whether or not a Sigma rule designed to detect the exploitation of the vulnerability over the network exists in this artifact.", alias="sigmaRule") @@ -63,7 +65,7 @@ class ApiInitialAccessArtifact(BaseModel): zeroday: Optional[StrictBool] = Field(default=None, description="Zeroday indicates whether or not it is a VulnCheck zeroday.") zoom_eye_queries: Optional[List[StrictStr]] = Field(default=None, description="ZoomEyeQueries are raw queries for examining potential Internet-exposed devices & applications with ZoomEye.", alias="zoomEyeQueries") zoom_eye_raw_queries: Optional[List[StrictStr]] = Field(default=None, alias="zoomEyeRawQueries") - __properties: ClassVar[List[str]] = ["artifactName", "artifactsURL", "baiduQueries", "baiduRawQueries", "censysLegacyQueries", "censysLegacyRawQueries", "censysQueries", "censysRawQueries", "cloneSSHURL", "dateAdded", "driftnetQueries", "driftnetRawQueries", "exploit", "fofaQueries", "fofaRawQueries", "googleQueries", "googleRawQueries", "greynoiseQueries", "mitreAttackTechniques", "nmapScript", "pcap", "product", "shodanQueries", "shodanRawQueries", "sigmaRule", "snortRule", "suricataRule", "targetDocker", "targetEncryptedComms", "targetService", "vendor", "versionScanner", "yara", "zeroday", "zoomEyeQueries", "zoomEyeRawQueries"] + __properties: ClassVar[List[str]] = ["artifactName", "artifactsURL", "baiduQueries", "baiduRawQueries", "censysLegacyQueries", "censysLegacyRawQueries", "censysQueries", "censysRawQueries", "chain", "cloneSSHURL", "dateAdded", "driftnetQueries", "driftnetRawQueries", "exploit", "fofaQueries", "fofaRawQueries", "googleQueries", "googleRawQueries", "greynoiseQueries", "mitreAttackTechniques", "nmapScript", "pcap", "product", "related", "shodanQueries", "shodanRawQueries", "sigmaRule", "snortRule", "suricataRule", "targetDocker", "targetEncryptedComms", "targetService", "vendor", "versionScanner", "yara", "zeroday", "zoomEyeQueries", "zoomEyeRawQueries"] model_config = ConfigDict( populate_by_name=True, @@ -124,6 +126,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "censysLegacyRawQueries": obj.get("censysLegacyRawQueries"), "censysQueries": obj.get("censysQueries"), "censysRawQueries": obj.get("censysRawQueries"), + "chain": obj.get("chain"), "cloneSSHURL": obj.get("cloneSSHURL"), "dateAdded": obj.get("dateAdded"), "driftnetQueries": obj.get("driftnetQueries"), @@ -138,6 +141,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "nmapScript": obj.get("nmapScript"), "pcap": obj.get("pcap"), "product": obj.get("product"), + "related": obj.get("related"), "shodanQueries": obj.get("shodanQueries"), "shodanRawQueries": obj.get("shodanRawQueries"), "sigmaRule": obj.get("sigmaRule"), diff --git a/vulncheck_sdk/models/backup_backup_response.py b/vulncheck_sdk/models/backup_backup_response.py new file mode 100644 index 00000000..b9a9619d --- /dev/null +++ b/vulncheck_sdk/models/backup_backup_response.py @@ -0,0 +1,96 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, StrictBool, StrictStr +from typing import Any, ClassVar, Dict, List, Optional +from typing import Optional, Set +from typing_extensions import Self + +class BackupBackupResponse(BaseModel): + """ + backup.BackupResponse + """ # noqa: E501 + available: Optional[StrictBool] = None + feed: Optional[StrictStr] = None + url: Optional[StrictStr] = None + url_direct: Optional[StrictStr] = None + url_expires: Optional[StrictStr] = None + __properties: ClassVar[List[str]] = ["available", "feed", "url", "url_direct", "url_expires"] + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of BackupBackupResponse from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of BackupBackupResponse from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "available": obj.get("available"), + "feed": obj.get("feed"), + "url": obj.get("url"), + "url_direct": obj.get("url_direct"), + "url_expires": obj.get("url_expires") + }) + return _obj + + diff --git a/vulncheck_sdk/models/backup_feed_item.py b/vulncheck_sdk/models/backup_feed_item.py new file mode 100644 index 00000000..2f2139a5 --- /dev/null +++ b/vulncheck_sdk/models/backup_feed_item.py @@ -0,0 +1,94 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, StrictBool, StrictStr +from typing import Any, ClassVar, Dict, List, Optional +from typing import Optional, Set +from typing_extensions import Self + +class BackupFeedItem(BaseModel): + """ + backup.FeedItem + """ # noqa: E501 + available: Optional[StrictBool] = None + backup_written_at: Optional[StrictStr] = None + href: Optional[StrictStr] = None + name: Optional[StrictStr] = None + __properties: ClassVar[List[str]] = ["available", "backup_written_at", "href", "name"] + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of BackupFeedItem from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of BackupFeedItem from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "available": obj.get("available"), + "backup_written_at": obj.get("backup_written_at"), + "href": obj.get("href"), + "name": obj.get("name") + }) + return _obj + + diff --git a/vulncheck_sdk/models/backup_list_backups_response.py b/vulncheck_sdk/models/backup_list_backups_response.py new file mode 100644 index 00000000..2b37b30c --- /dev/null +++ b/vulncheck_sdk/models/backup_list_backups_response.py @@ -0,0 +1,96 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict +from typing import Any, ClassVar, Dict, List, Optional +from vulncheck_sdk.models.backup_feed_item import BackupFeedItem +from typing import Optional, Set +from typing_extensions import Self + +class BackupListBackupsResponse(BaseModel): + """ + backup.ListBackupsResponse + """ # noqa: E501 + data: Optional[List[BackupFeedItem]] = None + __properties: ClassVar[List[str]] = ["data"] + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of BackupListBackupsResponse from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + # override the default output from pydantic by calling `to_dict()` of each item in data (list) + _items = [] + if self.data: + for _item_data in self.data: + if _item_data: + _items.append(_item_data.to_dict()) + _dict['data'] = _items + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of BackupListBackupsResponse from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "data": [BackupFeedItem.from_dict(_item) for _item in obj["data"]] if obj.get("data") is not None else None + }) + return _obj + + diff --git a/vulncheck_sdk/models/render_response_with_metadata_array_advisory_malicious_vs_code_exts_paginate_pagination.py b/vulncheck_sdk/models/render_response_with_metadata_array_advisory_malicious_vs_code_exts_paginate_pagination.py new file mode 100644 index 00000000..ddea6195 --- /dev/null +++ b/vulncheck_sdk/models/render_response_with_metadata_array_advisory_malicious_vs_code_exts_paginate_pagination.py @@ -0,0 +1,104 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt +from typing import Any, ClassVar, Dict, List, Optional, Union +from vulncheck_sdk.models.advisory_malicious_vs_code_exts import AdvisoryMaliciousVSCodeExts +from vulncheck_sdk.models.paginate_pagination import PaginatePagination +from typing import Optional, Set +from typing_extensions import Self + +class RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination(BaseModel): + """ + render.ResponseWithMetadata-array_advisory_MaliciousVSCodeExts-paginate_Pagination + """ # noqa: E501 + benchmark: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, alias="_benchmark") + meta: Optional[PaginatePagination] = Field(default=None, alias="_meta") + data: Optional[List[AdvisoryMaliciousVSCodeExts]] = None + __properties: ClassVar[List[str]] = ["_benchmark", "_meta", "data"] + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + # override the default output from pydantic by calling `to_dict()` of meta + if self.meta: + _dict['_meta'] = self.meta.to_dict() + # override the default output from pydantic by calling `to_dict()` of each item in data (list) + _items = [] + if self.data: + for _item_data in self.data: + if _item_data: + _items.append(_item_data.to_dict()) + _dict['data'] = _items + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "_benchmark": obj.get("_benchmark"), + "_meta": PaginatePagination.from_dict(obj["_meta"]) if obj.get("_meta") is not None else None, + "data": [AdvisoryMaliciousVSCodeExts.from_dict(_item) for _item in obj["data"]] if obj.get("data") is not None else None + }) + return _obj + +