From 55c1953c0f109529965f0482a4518ddd26552cdc Mon Sep 17 00:00:00 2001 From: Raphael Ahrens Date: Sat, 28 Oct 2023 22:14:44 +0200 Subject: [PATCH] Corrected the Overide example The example of the override feature has not been kept up to date and it include an error when setting the CVSS. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f9b0e90..a738345 100644 --- a/README.md +++ b/README.md @@ -279,8 +279,8 @@ user_to_web = Dataflow(user, web, "User enters comments (*)", protocol="HTTP", d user_to_web.overrides = [ Finding( # Overflow Buffers - id="INP02", - CVSS="9.3", + threat_id="INP02", + cvss="9.3", response="""**To Mitigate**: run a memory sanitizer to validate the binary""", ) ]