From 6da3ccab4877f03629ab7f05b298b24917187e00 Mon Sep 17 00:00:00 2001 From: MarianG Date: Thu, 28 Mar 2024 02:18:39 +0100 Subject: [PATCH] fix: use a copy of the issue_row object for the _temp-Finding variable because otherwise changes in _temp will reflect to issue_row which is a bad idea (#9792) --- dojo/tools/qualys/parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dojo/tools/qualys/parser.py b/dojo/tools/qualys/parser.py index da02a2c265d..145869611c7 100644 --- a/dojo/tools/qualys/parser.py +++ b/dojo/tools/qualys/parser.py @@ -101,7 +101,7 @@ def parse_finding(host, tree): # Scan details for vuln_details in host.iterfind("VULN_INFO_LIST/VULN_INFO"): - _temp = issue_row + _temp = issue_row.copy() # Port _gid = vuln_details.find("QID").attrib["id"] _port = vuln_details.findtext("PORT")