From fa6c5df4502b78374cf6c46a7e30ff0fa7d79aa3 Mon Sep 17 00:00:00 2001 From: Jacob Boddey Date: Fri, 5 Jul 2024 18:10:37 +0100 Subject: [PATCH] Update risk profile description --- framework/python/src/common/risk_profile.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/framework/python/src/common/risk_profile.py b/framework/python/src/common/risk_profile.py index bfa15a697..6afb229ac 100644 --- a/framework/python/src/common/risk_profile.py +++ b/framework/python/src/common/risk_profile.py @@ -347,7 +347,11 @@ def _generate_risk_banner(self):

{'high' if self.risk == 'High' else 'limited'} Risk

- The device assessed with a high security risk profile due to its dedicated functionality, lack of sensitive data storage, and closed network operation. + { + 'The device has been assessed to be high risk due to the nature of the answers provided about the device functionality.' + if self.risk == 'High' else + 'The device has been assessed to be limited risk due to the nature of the answers provided about the device functionality.' + }
'''