From ecff0a608cfd8e8f5e46c29cc0b141ea16dd2b92 Mon Sep 17 00:00:00 2001 From: Guido Modarelli Date: Mon, 30 Sep 2024 10:50:33 -0300 Subject: [PATCH 1/3] Update malware detection description in Wazuh modules --- plugins/main/common/wazuh-modules.ts | 2 +- plugins/main/public/utils/applications.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/main/common/wazuh-modules.ts b/plugins/main/common/wazuh-modules.ts index 341300f65d..7b779b2ec1 100644 --- a/plugins/main/common/wazuh-modules.ts +++ b/plugins/main/common/wazuh-modules.ts @@ -26,7 +26,7 @@ export const WAZUH_MODULES = { title: 'Malware detection', appId: 'malware-detection', description: - 'Verify that your systems are configured according to your security policies baseline.', + 'Check indicators of compromise triggered by malware infections or cyberattacks.', }, vuls: { title: 'Vulnerability detection', diff --git a/plugins/main/public/utils/applications.ts b/plugins/main/public/utils/applications.ts index 2333823b68..3c14fad9a1 100644 --- a/plugins/main/public/utils/applications.ts +++ b/plugins/main/public/utils/applications.ts @@ -112,7 +112,7 @@ export const malwareDetection = { }), description: i18n.translate('wz-app-malware-detection-description', { defaultMessage: - 'Verify that your systems are configured according to your security policies baseline.', + 'Check indicators of compromise triggered by malware infections or cyberattacks.', }), euiIconType: 'indexRollupApp', order: 201, From d23a3188ce45e8350551e5bf11ca140deac1041d Mon Sep 17 00:00:00 2001 From: Guido Modarelli Date: Mon, 30 Sep 2024 10:55:16 -0300 Subject: [PATCH 2/3] Update malware feature description --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a25674f56..aa376214f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ All notable changes to the Wazuh app project will be documented in this file. - Update malware detection group values in data sources [#6963](https://github.com/wazuh/wazuh-dashboard-plugins/issues/6963) - Changed the registration id of the Settings application for compatibility with OpenSearch Dashboard 2.16.0 [#6938](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6938) - Changed Malware detection dashboard visualizations [#6964](https://github.com/wazuh/wazuh-dashboard-plugins/issues/6964) +- Changed malware feature description [#7036](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7036) ### Fixed From 47d89aa3eaf81fea27ac87055769268d6e190105 Mon Sep 17 00:00:00 2001 From: Guido Modarelli Date: Mon, 30 Sep 2024 12:03:08 -0300 Subject: [PATCH 3/3] Update md5 value for a specific test case --- plugins/main/server/routes/wazuh-reporting.test.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/plugins/main/server/routes/wazuh-reporting.test.ts b/plugins/main/server/routes/wazuh-reporting.test.ts index c5ef7494d0..21760bafe5 100644 --- a/plugins/main/server/routes/wazuh-reporting.test.ts +++ b/plugins/main/server/routes/wazuh-reporting.test.ts @@ -229,7 +229,7 @@ describe('[endpoint] PUT /utils/configuration', () => { // If any of the parameters is changed this variable should be updated with the new md5 it.each` footer | header | responseStatusCode | expectedMD5 | tab - ${null} | ${null} | ${200} | ${'2a8dfb6e1fa377ce6a235bd5b4b701b5'} | ${'pm'} + ${null} | ${null} | ${200} | ${'dc7edb68490376cdb70535f420ba82d3'} | ${'pm'} ${'Custom\nFooter'} | ${'info@company.com\nFake Avenue 123'} | ${200} | ${'9003caabb5a3ef69b4b7e56e8c549011'} | ${'general'} ${''} | ${''} | ${200} | ${'66bd70790000b5016f42775653a0f169'} | ${'fim'} ${'Custom Footer'} | ${null} | ${200} | ${'ed1b880b6141fde5c9109178ea112646'} | ${'aws'} @@ -327,8 +327,6 @@ describe('[endpoint] PUT /utils/configuration', () => { .send(reportBody); // .expect(200); - console.log({ responseReport }); - const fileName = responseReport.body?.message.match(/([A-Z-0-9]*\.pdf)/gi)[0]; const userPath = md5(USER_NAME);