We presently have just CVSS as a vulnerability severity indicator. Some datasets classify vulnerability as a textual indicator, High, Low, etc.
We can add:
vulnerability_score=models.TextField(max_length=50, help_text="Severity of the vulnerability")
This will ensure that we can save both Textual & Non-CVSS severity indicators, that any dataset provides.
We presently have just
CVSSas a vulnerability severity indicator. Some datasets classify vulnerability as a textual indicator,High,Low, etc.We can add:
This will ensure that we can save both
Textual&Non-CVSSseverity indicators, that any dataset provides.