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.
PUT /api/ss/library/:id HTTP/1.1Host: demo.attackforge.comX-SSAPI-KEY: APIKeyContent-Type: application/jsonConnection: close
id (string)
Identifier for the vulnerability.
Example:
PUT /api/ss/library/5d5b27724a83a708c46f3f52 HTTP/1.1
title (string) (optional)
Title for the vulnerability.
Example:
{"title": "..."}
category (string) (optional)
Category for the vulnerability.
Example:
{"category": "..."}
description (string) (optional)
Description for the vulnerability.
Example:
{"description": "..."}
severity (number) (optional)
Severity for the vulnerability. Must be a number between 1 to 10.
Example:
{"severity": 10}
likelihood_of_exploitation (number) (optional)
Likelihood of Exploitation for the vulnerability. Must be a number between 1 to 10.
Example:
{"likelihood_of_exploitation": 10}
priority (string) (optional)
Priority for the vulnerability. Must be one of the following: Critical, High, Medium, Low, Info
Example:
{"priority": "Critical"}
attack_scenario (string) (optional)
Attack Scenario for the vulnerability.
Example:
{"attack_scenario": "..."}
remediation_recommendation (string) (optional)
Remediation Recommendation for the vulnerability.
Example:
{"remediation_recommendation": "..."}
impact_on_confidentiality (string) (optional)
Impact on Confidentiality for the vulnerability. Must be one of the following: High, Medium, Low, None
Example:
{"impact_on_confidentiality": "High"}
impact_on_integrity (string) (optional)
Impact on Integrity for the vulnerability. Must be one of the following: High, Medium, Low, None
Example:
{"impact_on_integrity": "High"}
impact_on_availability (string) (optional)
Impact on Availability for the vulnerability. Must be one of the following: High, Medium, Low, None
Example:
{"impact_on_availability": "High"}
tags (array of strings) (optional)
Tags for the vulnerability.
Example:
{"tags": ["...", "...", "..."]}
is_deleted (boolean) (optional)
Whether vulnerability is deleted or not.
Example:
{"is_deleted": false}
The following example is a cURL request to update a vulnerability in the library by its identifier (Id).
Include API Token instead of stars in 'X-SSAPI-KEY: ***************************************' parameter.
curl -X PUT 'https://demo.attackforge.com/api/ss/library/5d5b27724a83a708c46f3f52' -H 'Host: demo.attackforge.com' -H 'X-SSAPI-KEY: ***************************************' -H 'Content-Type: application/json' -H 'Connection: close' -d '{"title": "SQL Injection","category": "Injection","description": "Lorem Ipsum...","severity": 10,"likelihood_of_exploitation": 10,"priority": "Critical","attack_scenario": "Lorem Ipsum...","remediation_recommendation": "Lorem Ipsum...","impact_on_confidentiality": "High","impact_on_integrity": "High","impact_on_availability": "High","tags": ["CWE-89", "Injection"],"is_deleted": false}'
Response contains a status.
{"status": "Vulnerability Updated"}