Skip to content

Commit ee24895

Browse files
committed
🎉 Add fix_available to KrakenDAudit
1 parent 044b42a commit ee24895

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

dojo/settings/settings.dist.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1343,7 +1343,7 @@ def saml2_attrib_map_format(din):
13431343
"Invicti Scan": ["title", "description", "severity"],
13441344
"Checkmarx CxFlow SAST": ["vuln_id_from_tool", "file_path", "line"],
13451345
"HackerOne Cases": ["title", "severity"],
1346-
"KrakenD Audit Scan": ["description", "mitigation", "severity"],
1346+
"KrakenD Audit Scan": ["description", "severity"],
13471347
"Red Hat Satellite": ["description", "severity"],
13481348
"Qualys Hacker Guardian Scan": ["title", "severity", "description"],
13491349
"Cyberwatch scan (Galeax)": ["title", "description", "severity"],

dojo/tools/krakend_audit/parser.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ def get_findings(self, file, test):
2929
mitigation=message,
3030
static_finding=True,
3131
dynamic_finding=False,
32+
fix_available=True,
3233
)
3334
findings.append(finding)
3435
return findings

0 commit comments

Comments
 (0)