From 1278c64b987361c6111fce67ac4c93a6f9201dd9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20Kj=C3=A6rg=C3=A5rd?= Date: Mon, 5 Feb 2024 19:56:43 +0100 Subject: [PATCH 1/5] Add disable legacy basic authentication for SharePoint --- src/data/standards.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/data/standards.json b/src/data/standards.json index b5fbfbfeab28..11a544283bd0 100644 --- a/src/data/standards.json +++ b/src/data/standards.json @@ -693,6 +693,15 @@ "impact": "Medium Impact", "impactColour": "warning" }, + { + "name": "standards.DisableSharePointLegacyAuth", + "cat": "SharePoint Standards", + "helpText": "Disables the ability to authenticate with SharePoint using legacy authentication methods. Any applications that use legacy authentication will need to be updated to use modern authentication.", + "addedComponent": [], + "label": "Disable legacy basic authentication for SharePoint", + "impact": "Medium Impact", + "impactColour": "warning" + }, { "name": "standards.sharingCapability", "cat": "SharePoint Standards", From 3d7c92d2ff1a1941543df7e4f9558855ccdaa3ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20Kj=C3=A6rg=C3=A5rd?= Date: Mon, 5 Feb 2024 22:40:03 +0100 Subject: [PATCH 2/5] Add disable users from installing add-ins in Outlook standard --- src/data/standards.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/data/standards.json b/src/data/standards.json index c039f008aa29..06dc2c56f7db 100644 --- a/src/data/standards.json +++ b/src/data/standards.json @@ -414,7 +414,7 @@ "helpText": "Enables the In-Place Online Archive for all UserMailboxes with a valid license.", "addedComponent": [], "label": "Enable Online Archive for all users", - "impact": "Medium Impact", + "impact": "Low Impact", "impactColour": "info" }, { @@ -582,6 +582,15 @@ "impact": "Low Impact", "impactColour": "info" }, + { + "name": "standards.DisableOutlookAddins", + "cat": "Exchange Standards", + "helpText": "Disables the ability for users to install add-ins in Outlook. This is to prevent users from installing malicious add-ins.", + "addedComponent": [], + "label": "Disable users from installing add-ins in Outlook", + "impact": "Medium Impact", + "impactColour": "warning" + }, { "name": "standards.SafeSendersDisable", "cat": "Exchange Standards", From d28134e1bd7b197ef849579eb03f5c69c288519c Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Tue, 6 Feb 2024 18:57:42 +0100 Subject: [PATCH 3/5] fixes flatten issue --- src/components/tables/CippTable.jsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/components/tables/CippTable.jsx b/src/components/tables/CippTable.jsx index 81dcd5e92507..a7b3581aae7f 100644 --- a/src/components/tables/CippTable.jsx +++ b/src/components/tables/CippTable.jsx @@ -573,7 +573,11 @@ export default function CippTable({ return output } filtered = filtered.map((item) => flatten(item)) - const dataFlat = data.map((item) => flatten(item)) + if (Array.isArray(data)) { + const dataFlat = data.map((item) => flatten(item)) + } else { + const dataFlat = [] + } if (!disablePDFExport) { if (dynamicColumns === true) { From 7d8df63c09d21bd7de9a88aac317cba6e073285d Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Tue, 6 Feb 2024 19:00:54 +0100 Subject: [PATCH 4/5] array fix --- src/components/tables/CippTable.jsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/components/tables/CippTable.jsx b/src/components/tables/CippTable.jsx index a7b3581aae7f..32f89ad71795 100644 --- a/src/components/tables/CippTable.jsx +++ b/src/components/tables/CippTable.jsx @@ -573,10 +573,13 @@ export default function CippTable({ return output } filtered = filtered.map((item) => flatten(item)) + + let dataFlat + if (Array.isArray(data)) { - const dataFlat = data.map((item) => flatten(item)) + dataFlat = data.map((item) => flatten(item)) } else { - const dataFlat = [] + dataFlat = [] } if (!disablePDFExport) { From fbe07edb718a648a6e969c58a6649a150f2bda33 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Tue, 6 Feb 2024 19:01:31 +0100 Subject: [PATCH 5/5] up version --- public/version_latest.txt | 2 +- version_latest.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/public/version_latest.txt b/public/version_latest.txt index acf69b48b843..3bff059174b8 100644 --- a/public/version_latest.txt +++ b/public/version_latest.txt @@ -1 +1 @@ -5.1.0 \ No newline at end of file +5.1.1 \ No newline at end of file diff --git a/version_latest.txt b/version_latest.txt index acf69b48b843..3bff059174b8 100644 --- a/version_latest.txt +++ b/version_latest.txt @@ -1 +1 @@ -5.1.0 \ No newline at end of file +5.1.1 \ No newline at end of file