Skip to content

Commit

Permalink
Update malware feature description (#7036)
Browse files Browse the repository at this point in the history
* Update malware detection description in Wazuh modules

* Update malware feature description

* Update md5 value for a specific test case
  • Loading branch information
guidomodarelli authored Oct 1, 2024
1 parent 05ebac5 commit 663fc9e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion plugins/main/common/wazuh-modules.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion plugins/main/public/utils/applications.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
4 changes: 1 addition & 3 deletions plugins/main/server/routes/wazuh-reporting.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'}
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit 663fc9e

Please sign in to comment.