-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4444 from wazuh/update-scanning-tools-docs
Update scanning tools documentation
Showing
5 changed files
with
77 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Scans | ||
|
||
This directory contains scripts used to scan and verify Wazuh Python code and its dependencies. | ||
|
||
### Getting started | ||
|
||
In order to run the scripts, you should install the `wazuh_testing` package and the dependencies listed in the requirements file. | ||
|
||
These are the steps to do so: | ||
|
||
> Your terminal should be at the root of the `wazuh-qa` repository. | ||
1. Create and activate a virtual environment | ||
|
||
```console | ||
python3 -m venv venv | ||
source venv/bin/activate | ||
``` | ||
|
||
2. Install the dependencies | ||
|
||
```console | ||
pip install -r requirements.txt | ||
``` | ||
|
||
3. Build the `wazuh_testing` package | ||
|
||
```console | ||
pip install deps/wazuh_testing/ | ||
``` | ||
|
||
That's all it takes, you can now run the [code analysis](./code_analysis/README.md) and [dependencies](./dependencies/README.md) vulnerability scanning tools. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters