We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a18b8bb commit 850a8cdCopy full SHA for 850a8cd
app.py
@@ -22,7 +22,7 @@ def calculate_cvss():
22
elif vector.startswith("CVSS:4."):
23
score = CVSS4(vector).scores()[0] # Base Score
24
else:
25
- return jsonify({"error": "Unsupported or invalsid CVSS version"}), 400
+ return jsonify({"error": "Unsupported or invalid CVSS vector string"}), 400
26
27
return jsonify({"cvss_vector": vector, "cvss_score": score, "api_version": version})
28
except Exception as e:
0 commit comments