Skip to content

Commit ba1e086

Browse files
committed
feat: add IriusRisk parser stub for auto-discovery
Authored by T. Walker - DefectDojo
1 parent 8bf84b9 commit ba1e086

2 files changed

Lines changed: 14 additions & 0 deletions

File tree

dojo/tools/iriusrisk/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

dojo/tools/iriusrisk/parser.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
class IriusriskParser:
2+
3+
def get_scan_types(self):
4+
return ["IriusRisk Threats Scan"]
5+
6+
def get_label_for_scan_types(self, scan_type):
7+
return scan_type
8+
9+
def get_description_for_scan_types(self, scan_type):
10+
return "Import IriusRisk threat model CSV exports."
11+
12+
def get_findings(self, filename, test):
13+
return []

0 commit comments

Comments
 (0)