Skip to content

Commit

Permalink
Merge branch '4.10.0' into enhacement/7027-changed-mitre-description
Browse files Browse the repository at this point in the history
  • Loading branch information
JuanGarriuz authored Oct 1, 2024
2 parents ca898b1 + 663fc9e commit 968bc5f
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 @@ -16,6 +16,7 @@ All notable changes to the Wazuh app project will be documented in this file.
- 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 MITRE ATT%CK overview description [#7032] (https://github.com/wazuh/wazuh-dashboard-plugins/pull/7032)
- 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'} | ${'[email protected]\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 968bc5f

Please sign in to comment.