From abf924dcc435031b28e7388b6eff92ab7255f190 Mon Sep 17 00:00:00 2001 From: Esco Date: Fri, 22 Mar 2024 09:37:50 +0100 Subject: [PATCH 1/2] SafeAttachmentPolicy Standard SafeAttachmentPolicy Standard --- src/data/standards.json | 70 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) diff --git a/src/data/standards.json b/src/data/standards.json index 95cc1a746259..38a9a98325d8 100644 --- a/src/data/standards.json +++ b/src/data/standards.json @@ -736,6 +736,76 @@ "impact": "Medium Impact", "impactColour": "warning" }, + { + "name": "standards.SafeAttachmentPolicy", + "cat": "Defender Standards", + "tag": ["lowimpact", "CIS"], + "helpText": "Creates a Safe Attachment Policy", + "addedComponent": [ + { + "type": "input", + "name": "standards.SafeAttachmentPolicy.Name", + "label": "Safe Attachment Policy Name" + }, + { + "type": "boolean", + "label": "Enable", + "name": "standards.SafeAttachmentPolicy.Enable", + "default": true + }, + { + "type": "Select", + "label": "Action", + "name": "standards.SafeAttachmentPolicy.Action", + "values": [ + { + "label": "Allow", + "value": "Allow" + }, + { + "label": "Block", + "value": "Block" + }, + { + "label": "DynamicDelivery", + "value": "DynamicDelivery" + } + ] + }, + { + "type": "Select", + "label": "QuarantineTag", + "name": "standards.SafeAttachmentPolicy.QuarantineTag", + "values": [ + { + "label": "AdminOnlyAccessPolicy", + "value": "AdminOnlyAccessPolicy" + }, + { + "label": "DefaultFullAccessPolicy", + "value": "DefaultFullAccessPolicy" + }, + { + "label": "DefaultFullAccessWithNotificationPolicy", + "value": "DefaultFullAccessWithNotificationPolicy" + } + ] + }, + { + "type": "boolean", + "label": "Redirect", + "name": "standards.SafeAttachmentPolicy.Redirect" + }, + { + "type": "input", + "name": "standards.SafeAttachmentPolicy.RedirectAddress", + "label": "Redirect Address" + } + ], + "label": "Safe Attachment Policy", + "impact": "Low Impact", + "impactColour": "info" + }, { "name": "standards.intuneDeviceRetirementDays", "cat": "Intune Standards", From d55d4fc3ef3b0af58caadf186b5afab069a8a867 Mon Sep 17 00:00:00 2001 From: Esco Date: Mon, 25 Mar 2024 13:23:34 +0100 Subject: [PATCH 2/2] Updated SafeAttachmentPolicy according to feedback --- src/data/standards.json | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/src/data/standards.json b/src/data/standards.json index 38a9a98325d8..cd087a5b7457 100644 --- a/src/data/standards.json +++ b/src/data/standards.json @@ -740,19 +740,8 @@ "name": "standards.SafeAttachmentPolicy", "cat": "Defender Standards", "tag": ["lowimpact", "CIS"], - "helpText": "Creates a Safe Attachment Policy", + "helpText": "This creates a Safe Attachment policy", "addedComponent": [ - { - "type": "input", - "name": "standards.SafeAttachmentPolicy.Name", - "label": "Safe Attachment Policy Name" - }, - { - "type": "boolean", - "label": "Enable", - "name": "standards.SafeAttachmentPolicy.Enable", - "default": true - }, { "type": "Select", "label": "Action", @@ -802,7 +791,7 @@ "label": "Redirect Address" } ], - "label": "Safe Attachment Policy", + "label": "Default Safe Attachment Policy", "impact": "Low Impact", "impactColour": "info" },