CreateVulnerabilityWithLibrary
This method can be used for the following: Create a vulnerability on a project you have access to, by project identifier (Id) and vulnerability library identifier (Id).
Parameters
The following URL, Headers and Parameters are required for requests to this API endpoint. Where a parameter is optional, it will be indicated. Otherwise treat all parameters as mandatory.
Headers
Query
projectId (string)
Identifier for the project.
Example:
vulnerabilityLibraryId (string)
Identifier for the writeup.
Example:
library (string) (optional)
Search this library when matching vulnerabilityLibraryId. Must be either "Imported Vulnerabilities", "Main Vulnerabilities", "Project Vulnerabilities" or key for a custom library (if custom libraries are used). Default is Main Vulnerabilities Library.
Example:
created (string) (optional)
Overwrite the created timestamp for the vulnerability. Must be UTC string e.g. 2021-06-03T23:15:33.008Z.
Example:
asset_library_ids (array of strings) (optional)
Asset libraries to map affected asset(s) against.
Example:
affected_asset_id (string) (optional)
Id of the affected asset.
Example:
affected_asset_name (string) (optional)
Name of the affected asset.
Example:
affected_assets (array of objects) (optional)
Assign multiple assets to vulnerability.
Example:
priority (string)
Priority for the vulnerability. Must be one of the following: Critical, High, Medium, Low, Info
Example:
likelihood_of_exploitation (number)
Likelihood of Exploitation for the vulnerability. Must be a number between 1 to 10.
Example:
steps_to_reproduce (string)
Steps to Reproduce the vulnerability (POC).
Example:
tags (array of strings) (optional)
Tags for the vulnerability.
Example:
notes (array of objects) (optional)
Notes for the vulnerability. Type is optional. Type must be either PLAINTEXT or RICHTEXT.
Example:
is_zeroday (boolean) (optional)
Whether vulnerability is a zeroday (0-day) or not.
Example:
is_visible (boolean) (optional)
Whether vulnerability is visible to the project team (true) or only team members with Edit access (false).
Example:
linked_testcases (array of strings) (optional)
Test case Ids to link to the vulnerability.
Example:
custom_fields (array of objects) (optional)
Custom fields. Must include a key and value. Key must be unique and letters, numbers and underscores only.
For more information visit https://support.attackforge.com/attackforge-enterprise/getting-started/custom-fields-and-forms#using-custom-fields-with-apis
Example:
custom_tags (array of objects) (optional)
Custom tags. Must include a name and value. Name must be unique and letters, number and underscores only.
Example:
Example
The following example is a cURL request to create a vulnerability on a project by the project identifier (Id) and an issue from the Vulnerability Library by its identifier (Id).
Request
Include API Token instead of stars in 'X-SSAPI-KEY: ***************************************' parameter.
Response
Response contains a vulnerability object.
Last updated