> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Vulnerabilities

List all vulnerabilities based on selected filters.

<Note>
  External Documentation

  To learn more, visit the [Vanta documentation](https://developer.vanta.com/reference/listvulnerabilities).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter                    | Description                                                           |
  | ---------------------------- | --------------------------------------------------------------------- |
  | After Due Date               | Filter vulnerabilities due after a specific timestamp.                |
  | Before Due Date              | Filter vulnerabilities due before a specific timestamp.               |
  | External Vulnerability ID    | Filter vulnerabilities based on a specific external vulnerability ID. |
  | Is Deactivated               | Select to filter vulnerabilities by deactivation status.              |
  | Is Fix Available             | Select to filter vulnerabilities that have an available fix.          |
  | Return All Pages             | Automatically fetch all resources, page by page.                      |
  | Severity                     | Filter vulnerabilities by severity.                                   |
  | Vulnerabilities Without SLAs | Select to filter vulnerabilities without an SLA due date.             |
  | Vulnerability Name           | Filter vulnerabilities by name.                                       |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter           | Description                                                                                                                                                  |
  | ------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ |
  | Integration ID      | Filter vulnerabilities by the vulnerability scanner that detected them.                                                                                      |
  | Package Identifier  | Filter vulnerabilities from a specific package by its ID.                                                                                                    |
  | Page Cursor         | A cursor that marks the starting point for fetching the next page of results. Use the `endCursor` value from the `pageInfo` object in the previous response. |
  | Page Size           | The maximum number of items returned in a single execution.                                                                                                  |
  | Vulnerable Asset ID | Filter vulnerabilities by a specific asset ID.                                                                                                               |
</div>

## Example Output

```json theme={"dark"}
{
	"results": {
		"pageInfo": {
			"hasNextPage": true,
			"hasPreviousPage": false,
			"startCursor": "YXJyYXljb25uZWN0aW9uOjA=",
			"endCursor": "YXJyYXljb25uZWN0aW9uOjE="
		},
		"data": [
			{
				"id": "a2f7e1b9d0c3f4e5a6c7b8d9",
				"name": "CVE-2021-12345",
				"description": "MariaDB before 10.6.2 allows an application crash because of mishandling of a pushdown from a HAVING clause to a WHERE clause.",
				"integrationId": "Inspector",
				"packageIdentifier": "package",
				"vulnerabilityType": "COMMON",
				"targetId": "targetId",
				"firstDetectedDate": "2021-01-01T00:00:00.000Z",
				"sourceDetectedDate": "2021-01-01T00:00:00.000Z",
				"lastDetectedDate": "2021-01-01T00:00:00.000Z",
				"severity": "CRITICAL",
				"cvssSeverityScore": 9.8,
				"scannerScore": 100,
				"isFixable": true,
				"remediateByDate": "2021-01-01T00:00:00.000Z",
				"relatedVulns": [
					"CVE-2021-12345"
				],
				"relatedUrls": [
					"https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-12345"
				],
				"externalURL": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-12345",
				"scanSource": "Not provided",
				"deactivateMetadata": {
					"deactivatedBy": "b2f7e1b9d0c3f4e5a6c7b123",
					"deactivatedOnDate": "2021-01-01T00:00:00.000Z",
					"deactivationReason": "fix is too hard to carry out",
					"deactivatedUntilDate": null,
					"isVulnDeactivatedIndefinitely": true
				}
			}
		]
	}
}
```

## Workflow Library Example

[List Vulnerabilities with Vanta and Send Results Via Email](https://library.blinkops.com/workflows/list-vulnerabilities-with-vanta-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/list-vulnerabilities-with-vanta-and-send-results-via-email/canvas" />
</div>
