Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new packages to some cases in E2E VD tests #5349

Merged
merged 3 commits into from
May 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ All notable changes to this project will be documented in this file.

### Fixed

- Fix test cases in Vulnerability Detection E2E test by adding new packages ([#5349](https:/wazuh/wazuh-qa/pull/5349)) \- (Tests)
- Fix macOS alert collection for E2E Vulnerability Detection tests ([#5337](https:/wazuh/wazuh-qa/pull/5337)) \- (Framework)
- Fix packages in Windows and macOS upgrade cases ([#5223](https:/wazuh/wazuh-qa/pull/5223)) \- (Framework + Tests)
- Fix vulnerabilities and add new packages to Vulnerability Detector E2E tests ([#5234](https:/wazuh/wazuh-qa/pull/5234)) \- (Tests)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -892,6 +892,41 @@
"uninstall_name": "systeminformation",
"use_npm": true
},
"axios-0.6.0": {
"package_name": "axios",
"package_version": "0.6.0",
"CVE": [
"CVE-2019-10742",
"CVE-2021-3749",
"CVE-2020-28168"
],
"urls": {
"macos": {
"amd64": "[email protected]",
"arm64v8": "[email protected]"
}
},
"uninstall_name": "axios",
"use_npm": true
},
"axios-0.10.0": {
"package_name": "axios",
"package_version": "0.10.0",
"CVE": [
"CVE-2020-28168",
"CVE-2021-3749",
"CVE-2023-45857",
"CVE-2019-10742"
],
"urls": {
"macos": {
"amd64": "[email protected]",
"arm64v8": "[email protected]"
}
},
"uninstall_name": "axios",
"use_npm": true
},
"http-proxy-0.7.0": {
"package_name": "http-proxy",
"package_version": "0.7.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,12 @@
id: upgrade_package_add_vulnerability
description: |
Upgrade of a vulnerable package which include a new vulnerability
preconditions:
operation: install_package
package:
macos:
amd64: axios-0.6.0
arm64v8: axios-0.6.0
body:
operation: update_package
package:
Expand All @@ -101,8 +107,8 @@
windows:
amd64: node-v17.1.0
macos:
amd64: systeminformation-4.34.23
arm64v8: systeminformation-4.34.23
amd64: axios-0.6.0
arm64v8: axios-0.6.0
to:
centos:
amd64: grafana-9.1.1-1
Expand All @@ -113,14 +119,20 @@
windows:
amd64: node-v18.0.0
macos:
amd64: systeminformation-5.0.0
arm64v8: systeminformation-5.0.0
amd64: axios-0.10.0
arm64v8: axios-0.10.0

- case: 'Upgrade: Maintain and new vulnerability '
id: upgrade_package_maintain_add_vulnerability
description: >
Upgrade of a vulnerable package which maintain vulnerabilities
and include new ones
preconditions:
operation: install_package
package:
macos:
amd64: systeminformation-4.34.23
arm64v8: systeminformation-4.34.23
body:
operation: update_package
package:
Expand Down
Loading