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

Modify the feed address to avoid its downloading and updating #5700

Closed
2 tasks done
juliamagan opened this issue Aug 26, 2024 · 7 comments · Fixed by #5739
Closed
2 tasks done

Modify the feed address to avoid its downloading and updating #5700

juliamagan opened this issue Aug 26, 2024 · 7 comments · Fixed by #5739
Assignees
Labels

Comments

@juliamagan
Copy link
Member

juliamagan commented Aug 26, 2024

Description

With VD's E2E tests, it has been shown that the tests can take a long time if the feed in the package is out of date with the one in the CTI. In addition, if vulnerabilities change, they can give erroneous results when verifying the expected vulnerabilities.

The idea is to modify where the feed is downloaded from to a non-existent URL, e.g. localhost, to prevent the feed from being downloaded and updated. In this way, the test will use the feed that comes with the package and we will avoid wasting time updating it.

Tasks

  • Test that the suggested change works as expected.
  • If it works, implement this change to E2E.
@wazuhci wazuhci moved this to Backlog in Release 4.9.1 Aug 26, 2024
@wazuhci wazuhci moved this from Backlog to In progress in Release 4.9.1 Sep 4, 2024
@santipadilla
Copy link
Member

santipadilla commented Sep 5, 2024

Update

Currently, by default the configuration does not specify a URL from which to download the vulnerability feed updates, but it does specify an update interval, which suggests it defaults to some predefined source.

  • We would need to disable the automatic feed updates by setting the update interval to 0 or by redirecting it to a non-existent URL. (It is not possible since it must be a minimum of 60 minutes.)

  • We add an offline-url parameter pointing to a local or dummy path to explicitly define the behavior. (It will not find the url and it will fail)

The VD configuration block will look like this:

<vulnerability-detection>
  <enabled>yes</enabled>
  <index-status>yes</index-status>
  <feed-update-interval>0</feed-update-interval> (It is not possible since it must be a minimum of 60 minutes.)
  <offline-url>file://nonexistentpath</offline-url> (It will not find the url and it will fail)
</vulnerability-detection>

@santipadilla
Copy link
Member

santipadilla commented Sep 6, 2024

Testing

OS
vagrant@AIOwazuh:~$ cat /etc/*release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=22.04
DISTRIB_CODENAME=jammy
DISTRIB_DESCRIPTION="Ubuntu 22.04.3 LTS"
PRETTY_NAME="Ubuntu 22.04.3 LTS"
NAME="Ubuntu"
VERSION_ID="22.04"
VERSION="22.04.3 LTS (Jammy Jellyfish)"
VERSION_CODENAME=jammy
ID=ubuntu
ID_LIKE=debian
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
UBUNTU_CODENAME=jammy
Wazuh version
root@AIOwazuh:/home/vagrant# /var/ossec/bin/wazuh-control info
WAZUH_VERSION="v4.9.0"
WAZUH_REVISION="40907"
WAZUH_TYPE="server"
Invalid path
  <vulnerability-detection>
    <enabled>yes</enabled>
    <index-status>yes</index-status>
    <feed-update-interval>60</feed-update-interval>
    <offline-url>file://nonexistentpath</offline-url>
  </vulnerability-detection>
2024/09/09 08:44:51 wazuh-modulesd:content-updater: WARNING: File 'file://nonexistentpath' doesn't exist.
Localhost
  <vulnerability-detection>
    <enabled>yes</enabled>
    <index-status>yes</index-status>
    <feed-update-interval>60m</feed-update-interval>
    <offline-url>https://localhost</offline-url>
  </vulnerability-detection>
2024/09/09 08:24:11 wazuh-modulesd:content-updater: WARNING: Error '-1' when downloading file: SSL peer certificate or SSH remote key was not OK.
Deactivate feed update interval
  <vulnerability-detection>
    <enabled>yes</enabled>
    <index-status>yes</index-status>
    <feed-update-interval>0</feed-update-interval>
  </vulnerability-detection>
2024/09/09 08:28:01 wazuh-modulesd:vulnerability-scanner: WARNING: The 'feed-update-interval' option at module 'vulnerability-detection' must be at least 1 hour. Automatically set to 60 minutes.

@santipadilla
Copy link
Member

santipadilla commented Sep 9, 2024

Update

After testing and talking with the team in charge of vulnerability detection in this thread. It fails when trying to find the non-existent file. Once VD fails, it continues to function correctly using the package feed.

Configuration
<vulnerability-detection>
  <enabled>yes</enabled>
  <index-status>yes</index-status>
  <feed-update-interval>10h</feed-update-interval>
  <offline-url>https://localhost</offline-url>
</vulnerability-detection>
Debug of offline-url error
2024/09/09 08:51:00 wazuh-modulesd:content-updater[71300] actionOrchestrator.hpp:127 at ActionOrchestrator(): DEBUG: Creating 'vulnerability_feed_manager' Content Updater orchestration
2024/09/09 08:51:00 wazuh-modulesd:content-updater[71300] executionContext.hpp:218 at handleRequest(): DEBUG: ExecutionContext - Starting process
2024/09/09 08:51:00 wazuh-modulesd:content-updater[71300] executionContext.hpp:180 at createOutputFolder(): DEBUG: Removing previous output folder 'queue/vd_updater/tmp'
2024/09/09 08:51:00 wazuh-modulesd:content-updater[71300] executionContext.hpp:185 at createOutputFolder(): DEBUG: Creating output folders at 'queue/vd_updater/tmp'
2024/09/09 08:51:00 wazuh-modulesd:content-updater[71300] factoryContentUpdater.hpp:44 at create(): DEBUG: FactoryContentUpdater - Starting process
2024/09/09 08:51:00 wazuh-modulesd:content-updater[71300] factoryDownloader.hpp:46 at create(): DEBUG: Creating 'offline' downloader
2024/09/09 08:51:00 wazuh-modulesd:content-updater[71300] factoryDecompressor.hpp:73 at create(): DEBUG: Creating 'raw' decompressor
2024/09/09 08:51:00 wazuh-modulesd:content-updater[71300] factoryVersionUpdater.hpp:41 at create(): DEBUG: Creating 'false' version updater
2024/09/09 08:51:00 wazuh-modulesd:content-updater[71300] factoryCleaner.hpp:41 at create(): DEBUG: Content cleaner created
2024/09/09 08:51:00 wazuh-modulesd:content-updater[71300] actionOrchestrator.hpp:137 at ActionOrchestrator(): DEBUG: Content updater orchestration created
2024/09/09 08:51:00 wazuh-modulesd:content-updater[71300] action.hpp:118 at runActionScheduled(): DEBUG: Starting scheduled action for 'vulnerability_feed_manager'
2024/09/09 08:51:00 wazuh-modulesd:content-updater[71300] action.hpp:210 at runAction(): DEBUG: Action for 'vulnerability_feed_manager' started
2024/09/09 08:51:00 wazuh-modulesd:content-updater[71300] actionOrchestrator.hpp:242 at runContentUpdate(): DEBUG: Running 'vulnerability_feed_manager' content update
2024/09/09 08:51:00 wazuh-modulesd:content-updater[71300] offlineDownloader.hpp:184 at handleRequest(): DEBUG: OfflineDownloader - Starting process
2024/09/09 08:51:00 wazuh-modulesd:content-updater[71300] offlineDownloader.hpp:95 at downloadFile(): DEBUG: Downloading file from 'https://localhost' into 'queue/vd_updater/tmp/contents/localhost'
2024/09/09 08:51:00 sca[71300] wm_sca.c:1280 at wm_sca_do_scan(): DEBUG: Result for rule 'not f:/etc/gdm3': 1content-updater[71300]
2024/09/09 08:51:00 wazuh-modulesd:content-updater[71300] offlineDownloader.hpp:90 at operator()(): WARNING: Error '-1' when downloading file: SSL peer certificate or SSH remote key was not OK.
2024/09/09 08:51:00 wazuh-modulesd:content-updater[71300] skipStep.hpp:48 at handleRequest(): DEBUG: SkipStep - Starting process
2024/09/09 08:51:00 sca[71300] wm_sca.c:2041 at wm_sca_pattern_matches(): DEBUG: Testing minterm (r:_chrony\.+chronyd)(root           6       2  0 08:12 ?        00:00:00 [netns]) -> 0
2024/09/09 08:51:00 wazuh-modulesd:content-updater[71300] pubSubPublisher.hpp:61 at handleRequest(): DEBUG: PubSubPublisher - Starting process
2024/09/09 08:51:00 sca[71300] wm_sca.c:2044 at wm_sca_pattern_matches(): DEBUG: Pattern test result: (r:_chrony\.+chronyd)(root           6       2  0 08:12 ?        00:00:00 [netns]) -> 0
2024/09/09 08:51:00 wazuh-modulesd:content-updater[71300] pubSubPublisher.hpp:49 at publish(): DEBUG: No data to publish
2024/09/09 08:51:00 wazuh-modulesd:content-updater[71300] skipStep.hpp:48 at handleRequest(): DEBUG: SkipStep - Starting process
2024/09/09 08:51:00 wazuh-modulesd:content-updater[71300] cleanUpContent.hpp:63 at handleRequest(): DEBUG: CleanUpContent - Starting process
2024/09/09 08:51:00 wazuh-modulesd:content-updater[71300] action.hpp:221 at runAction(): DEBUG: Action for 'vulnerability_feed_manager' finished

ossec.log.zip

VD working after offline-url error

imagen

Seeing that it works, it will be implemented and tested in the VD E2E test.

@santipadilla
Copy link
Member

santipadilla commented Sep 11, 2024

Update

Changes made in this branch: enhancement/5700-use-package-feed-in-VD-test
In this PR: #5739

Running tests with CTI feed used so far comparing them with package feed tests.

@santipadilla
Copy link
Member

santipadilla commented Sep 12, 2024

Update


@santipadilla
Copy link
Member

santipadilla commented Sep 12, 2024

Update

We check that everything goes as expected by activating the debug mode in the VD test in this build.

Configuration
        <vulnerability-detection>

                <enabled>yes</enabled>


                <index-status>yes</index-status>


                <feed-update-interval>10h</feed-update-interval>


                <offline-url>https://localhost</offline-url>


        </vulnerability-detection>

Decompression
root@ip-X-X-X-X:/home/qa# grep -i "decompression" /var/ossec/logs/ossec.log
2024/09/12 12:38:17 wazuh-modulesd:vulnerability-scanner[82704] vulnerabilityScannerFacade.cpp:61 at decompressDatabase(): INFO: Starting database file decompression.
2024/09/12 12:38:17 wazuh-modulesd:vulnerability-scanner[82704] vulnerabilityScannerFacade.cpp:62 at decompressDatabase(): DEBUG: Starting XZ file decompression.
2024/09/12 12:39:09 wazuh-modulesd:vulnerability-scanner[82704] vulnerabilityScannerFacade.cpp:84 at decompressDatabase(): DEBUG: Starting TAR file decompression.
2024/09/12 12:41:55 wazuh-modulesd:vulnerability-scanner[82704] vulnerabilityScannerFacade.cpp:95 at decompressDatabase(): INFO: Database decompression finished.
Offline-url error and no download of CTI feed
root@ip-X-X-X-X:/home/qa# grep -i "content-updater" /var/ossec/logs/ossec.log
2024/09/12 12:41:57 wazuh-modulesd:content-updater[82704] actionOrchestrator.hpp:127 at ActionOrchestrator(): DEBUG: Creating 'vulnerability_feed_manager' Content Updater orchestration
2024/09/12 12:41:57 wazuh-modulesd:content-updater[82704] executionContext.hpp:218 at handleRequest(): DEBUG: ExecutionContext - Starting process
2024/09/12 12:41:57 wazuh-modulesd:content-updater[82704] executionContext.hpp:185 at createOutputFolder(): DEBUG: Creating output folders at 'queue/vd_updater/tmp'
2024/09/12 12:41:57 wazuh-modulesd:content-updater[82704] factoryContentUpdater.hpp:44 at create(): DEBUG: FactoryContentUpdater - Starting process
2024/09/12 12:41:57 wazuh-modulesd:content-updater[82704] factoryDownloader.hpp:46 at create(): DEBUG: Creating 'offline' downloader
2024/09/12 12:41:57 wazuh-modulesd:content-updater[82704] factoryDecompressor.hpp:73 at create(): DEBUG: Creating 'raw' decompressor
2024/09/12 12:41:57 wazuh-modulesd:content-updater[82704] factoryVersionUpdater.hpp:41 at create(): DEBUG: Creating 'false' version updater
2024/09/12 12:41:57 wazuh-modulesd:content-updater[82704] factoryCleaner.hpp:41 at create(): DEBUG: Content cleaner created
2024/09/12 12:41:57 wazuh-modulesd:content-updater[82704] actionOrchestrator.hpp:137 at ActionOrchestrator(): DEBUG: Content updater orchestration created
2024/09/12 12:41:57 wazuh-modulesd:content-updater[82704] action.hpp:118 at runActionScheduled(): DEBUG: Starting scheduled action for 'vulnerability_feed_manager'
2024/09/12 12:41:57 wazuh-modulesd:content-updater[82704] action.hpp:210 at runAction(): DEBUG: Action for 'vulnerability_feed_manager' started
2024/09/12 12:41:57 wazuh-modulesd:content-updater[82704] actionOrchestrator.hpp:242 at runContentUpdate(): DEBUG: Running 'vulnerability_feed_manager' content update
2024/09/12 12:41:57 wazuh-modulesd:content-updater[82704] offlineDownloader.hpp:184 at handleRequest(): DEBUG: OfflineDownloader - Starting process
2024/09/12 12:41:57 wazuh-modulesd:content-updater[82704] offlineDownloader.hpp:95 at downloadFile(): DEBUG: Downloading file from 'https://localhost' into 'queue/vd_updater/tmp/contents/localhost'
2024/09/12 12:41:57 wazuh-modulesd:content-updater[82704] offlineDownloader.hpp:90 at operator()(): WARNING: Error '-1' when downloading file: Couldn't connect to server.
2024/09/12 12:41:57 wazuh-modulesd:content-updater[82704] skipStep.hpp:48 at handleRequest(): DEBUG: SkipStep - Starting process
2024/09/12 12:41:57 wazuh-modulesd:content-updater[82704] pubSubPublisher.hpp:61 at handleRequest(): DEBUG: PubSubPublisher - Starting process
2024/09/12 12:41:57 wazuh-modulesd:content-updater[82704] pubSubPublisher.hpp:49 at publish(): DEBUG: No data to publish
2024/09/12 12:41:57 wazuh-modulesd:content-updater[82704] skipStep.hpp:48 at handleRequest(): DEBUG: SkipStep - Starting process
2024/09/12 12:41:57 wazuh-modulesd:content-updater[82704] cleanUpContent.hpp:63 at handleRequest(): DEBUG: CleanUpContent - Starting process
2024/09/12 12:41:57 wazuh-modulesd:content-updater[82704] action.hpp:221 at runAction(): DEBUG: Action for 'vulnerability_feed_manager' finished
Feed
root@ip-X-X-X-X:/home/qa# ls -lh /var/ossec/queue/vd/feed
total 5.2G
-rw-r--r-- 1 root root  65M Sep 12 12:41 000119.sst
-rw-r--r-- 1 root root 226K Sep 12 12:41 000123.sst
-rw-r--r-- 1 root root 163K Sep 12 12:41 000125.sst
-rw-r--r-- 1 root root 275K Sep 12 12:41 000127.sst
-rw-r--r-- 1 root root 1.4M Sep 12 12:39 000134.sst
-rw-r--r-- 1 root root  38K Sep 12 12:41 000136.sst
-rw-r--r-- 1 root root 252K Sep 12 12:41 000138.sst
-rw-r--r-- 1 root root  26K Sep 12 12:41 000140.sst
-rw-r--r-- 1 root root 131K Sep 12 12:41 000142.sst
-rw-r--r-- 1 root root 822K Sep 12 12:39 000145.sst
-rw-r--r-- 1 root root 5.9K Sep 12 12:41 000147.sst
-rw-r--r-- 1 root root 3.5K Sep 12 12:40 000151.sst
-rw-r--r-- 1 root root 684K Sep 12 12:39 000156.sst
-rw-r--r-- 1 root root  13K Sep 12 12:41 000158.sst
-rw-r--r-- 1 root root 1.9K Sep 12 12:39 000160.sst
-rw-r--r-- 1 root root 2.3K Sep 12 12:40 000162.sst
-rw-r--r-- 1 root root 7.3K Sep 12 12:41 000164.sst
-rw-r--r-- 1 root root 2.4K Sep 12 12:40 000166.sst
-rw-r--r-- 1 root root  11K Sep 12 12:41 000168.sst
-rw-r--r-- 1 root root 2.1K Sep 12 12:39 000170.sst
-rw-r--r-- 1 root root  65M Sep 12 12:41 000173.sst
-rw-r--r-- 1 root root  60M Sep 12 12:41 000174.sst
-rw-r--r-- 1 root root 1.3K Sep 12 12:40 000176.sst
-rw-r--r-- 1 root root 522K Sep 12 12:39 000181.sst
-rw-r--r-- 1 root root 355K Sep 12 12:40 000183.sst
-rw-r--r-- 1 root root 550K Sep 12 12:41 000185.sst
-rw-r--r-- 1 root root 1.1K Sep 12 12:41 000189.sst
-rw-r--r-- 1 root root  65M Sep 12 12:41 000193.sst
-rw-r--r-- 1 root root  30M Sep 12 12:39 000194.sst
-rw-r--r-- 1 root root 356K Sep 12 12:41 000197.sst
-rw-r--r-- 1 root root  23K Sep 12 12:41 000202.sst
-rw-r--r-- 1 root root  11K Sep 12 12:40 000205.sst
-rw-r--r-- 1 root root 2.4K Sep 12 12:41 000213.sst
-rw-r--r-- 1 root root 471K Sep 12 12:41 000216.sst
-rw-r--r-- 1 root root 2.2K Sep 12 12:41 000223.sst
-rw-r--r-- 1 root root 1.8K Sep 12 12:39 000227.sst
-rw-r--r-- 1 root root 439K Sep 12 12:39 000230.sst
-rw-r--r-- 1 root root 245K Sep 12 12:39 000232.sst
-rw-r--r-- 1 root root  65M Sep 12 12:39 000236.sst
-rw-r--r-- 1 root root  65M Sep 12 12:40 000237.sst
-rw-r--r-- 1 root root 4.0K Sep 12 12:41 000239.sst
-rw-r--r-- 1 root root 699K Sep 12 12:39 000240.sst
-rw-r--r-- 1 root root  16K Sep 12 12:41 000245.sst
-rw-r--r-- 1 root root 9.6K Sep 12 12:41 000247.sst
-rw-r--r-- 1 root root  17K Sep 12 12:41 000249.sst
-rw-r--r-- 1 root root 310K Sep 12 12:41 000253.sst
-rw-r--r-- 1 root root  41K Sep 12 12:41 000258.sst
-rw-r--r-- 1 root root 7.2K Sep 12 12:41 000262.sst
-rw-r--r-- 1 root root 1.7K Sep 12 12:39 000265.sst
-rw-r--r-- 1 root root 589K Sep 12 12:40 000266.sst
-rw-r--r-- 1 root root  65M Sep 12 12:41 000274.sst
-rw-r--r-- 1 root root 2.4K Sep 12 12:40 000277.sst
-rw-r--r-- 1 root root 3.7K Sep 12 12:41 000279.sst
-rw-r--r-- 1 root root 2.5K Sep 12 12:39 000284.sst
-rw-r--r-- 1 root root 560K Sep 12 12:41 000289.sst
-rw-r--r-- 1 root root 2.6K Sep 12 12:41 000293.sst
-rw-r--r-- 1 root root 280K Sep 12 12:39 000294.sst
-rw-r--r-- 1 root root  65M Sep 12 12:41 000298.sst
-rw-r--r-- 1 root root  65M Sep 12 12:41 000299.sst
-rw-r--r-- 1 root root  27K Sep 12 12:41 000302.sst
-rw-r--r-- 1 root root  20K Sep 12 12:41 000307.sst
-rw-r--r-- 1 root root 946K Sep 12 12:41 000308.sst
-rw-r--r-- 1 root root 345K Sep 12 12:41 000317.sst
-rw-r--r-- 1 root root 3.2K Sep 12 12:41 000324.sst
-rw-r--r-- 1 root root 273K Sep 12 12:40 000327.sst
-rw-r--r-- 1 root root 2.2M Sep 12 12:40 000328.sst
-rw-r--r-- 1 root root 830K Sep 12 12:39 000332.sst
-rw-r--r-- 1 root root  26K Sep 12 12:39 000342.sst
-rw-r--r-- 1 root root  20K Sep 12 12:40 000348.sst
-rw-r--r-- 1 root root  17K Sep 12 12:39 000350.sst
-rw-r--r-- 1 root root  12K Sep 12 12:40 000353.sst
-rw-r--r-- 1 root root 2.3M Sep 12 12:41 000355.sst
-rw-r--r-- 1 root root  14K Sep 12 12:40 000363.sst
-rw-r--r-- 1 root root  65M Sep 12 12:41 000369.sst
-rw-r--r-- 1 root root  65M Sep 12 12:41 000370.sst
-rw-r--r-- 1 root root  17K Sep 12 12:39 000374.sst
-rw-r--r-- 1 root root 3.8K Sep 12 12:39 000382.sst
-rw-r--r-- 1 root root 4.0K Sep 12 12:41 000384.sst
-rw-r--r-- 1 root root 249K Sep 12 12:41 000385.sst
-rw-r--r-- 1 root root 438K Sep 12 12:41 000391.sst
-rw-r--r-- 1 root root  34K Sep 12 12:40 000398.sst
-rw-r--r-- 1 root root 5.9K Sep 12 12:41 000406.sst
-rw-r--r-- 1 root root 2.4K Sep 12 12:41 000408.sst
-rw-r--r-- 1 root root  33K Sep 12 12:40 000414.sst
-rw-r--r-- 1 root root 4.4M Sep 12 12:40 000419.sst
-rw-r--r-- 1 root root 3.1M Sep 12 12:41 000422.sst
-rw-r--r-- 1 root root  56K Sep 12 12:40 000425.sst
-rw-r--r-- 1 root root 1.9M Sep 12 12:41 000427.sst
-rw-r--r-- 1 root root  65M Sep 12 12:41 000429.sst
-rw-r--r-- 1 root root  65M Sep 12 12:41 000430.sst
-rw-r--r-- 1 root root 235K Sep 12 12:41 000434.sst
-rw-r--r-- 1 root root 276K Sep 12 12:41 000443.sst
-rw-r--r-- 1 root root 2.2K Sep 12 12:41 000449.sst
-rw-r--r-- 1 root root  16K Sep 12 12:40 000451.sst
-rw-r--r-- 1 root root 488K Sep 12 12:40 000452.sst
-rw-r--r-- 1 root root 4.3K Sep 12 12:41 000462.sst
-rw-r--r-- 1 root root 1.8K Sep 12 12:41 000465.sst
-rw-r--r-- 1 root root  13K Sep 12 12:39 000469.sst
-rw-r--r-- 1 root root  46K Sep 12 12:40 000471.sst
-rw-r--r-- 1 root root 2.8K Sep 12 12:39 000476.sst
-rw-r--r-- 1 root root  65M Sep 12 12:40 000491.sst
-rw-r--r-- 1 root root  65M Sep 12 12:40 000492.sst
-rw-r--r-- 1 root root 230K Sep 12 12:40 000494.sst
-rw-r--r-- 1 root root 2.5K Sep 12 12:40 000504.sst
-rw-r--r-- 1 root root 1.6K Sep 12 12:40 000511.sst
-rw-r--r-- 1 root root 425K Sep 12 12:40 000513.sst
-rw-r--r-- 1 root root 4.2M Sep 12 12:39 000515.sst
-rw-r--r-- 1 root root 5.0K Sep 12 12:40 000530.sst
-rw-r--r-- 1 root root 4.8K Sep 12 12:41 000534.sst
-rw-r--r-- 1 root root  69K Sep 12 12:41 000536.sst
-rw-r--r-- 1 root root 227K Sep 12 12:40 000561.sst
-rw-r--r-- 1 root root 706K Sep 12 12:39 000562.sst
-rw-r--r-- 1 root root 133K Sep 12 12:41 000563.sst
-rw-r--r-- 1 root root  65M Sep 12 12:40 000566.sst
-rw-r--r-- 1 root root  65M Sep 12 12:41 000567.sst
-rw-r--r-- 1 root root  11K Sep 12 12:40 000574.sst
-rw-r--r-- 1 root root 2.8K Sep 12 12:39 000577.sst
-rw-r--r-- 1 root root 4.6K Sep 12 12:39 000580.sst
-rw-r--r-- 1 root root 4.2K Sep 12 12:41 000602.sst
-rw-r--r-- 1 root root 6.0K Sep 12 12:40 000607.sst
-rw-r--r-- 1 root root 134K Sep 12 12:40 000611.sst
-rw-r--r-- 1 root root 1.3K Sep 12 12:41 000614.sst
-rw-r--r-- 1 root root 3.2K Sep 12 12:40 000617.sst
-rw-r--r-- 1 root root  12M Sep 12 12:40 000618.sst
-rw-r--r-- 1 root root 105K Sep 12 12:41 000619.sst
-rw-r--r-- 1 root root 139K Sep 12 12:41 000629.sst
-rw-r--r-- 1 root root 9.8M Sep 12 12:41 000634.sst
-rw-r--r-- 1 root root 5.4K Sep 12 12:41 000645.sst
-rw-r--r-- 1 root root  65M Sep 12 12:40 000648.sst
-rw-r--r-- 1 root root  15K Sep 12 12:39 000651.sst
-rw-r--r-- 1 root root 5.8K Sep 12 12:40 000662.sst
-rw-r--r-- 1 root root 6.9K Sep 12 12:40 000664.sst
-rw-r--r-- 1 root root  86K Sep 12 12:40 000667.sst
-rw-r--r-- 1 root root  93K Sep 12 12:40 000670.sst
-rw-r--r-- 1 root root 3.9K Sep 12 12:40 000685.sst
-rw-r--r-- 1 root root 1.6K Sep 12 12:39 000686.sst
-rw-r--r-- 1 root root 149K Sep 12 12:41 000687.sst
-rw-r--r-- 1 root root 4.3K Sep 12 12:39 000699.sst
-rw-r--r-- 1 root root  13K Sep 12 12:41 000704.sst
-rw-r--r-- 1 root root  65M Sep 12 12:40 000706.sst
-rw-r--r-- 1 root root  65M Sep 12 12:41 000707.sst
-rw-r--r-- 1 root root 1.5K Sep 12 12:41 000719.sst
-rw-r--r-- 1 root root 3.1K Sep 12 12:41 000720.sst
-rw-r--r-- 1 root root 1.5K Sep 12 12:41 000721.sst
-rw-r--r-- 1 root root 111K Sep 12 12:40 000724.sst
-rw-r--r-- 1 root root 410K Sep 12 12:40 000725.sst
-rw-r--r-- 1 root root 216K Sep 12 12:41 000729.sst
-rw-r--r-- 1 root root 3.5K Sep 12 12:40 000731.sst
-rw-r--r-- 1 root root 3.4K Sep 12 12:40 000733.sst
-rw-r--r-- 1 root root 136K Sep 12 12:41 000742.sst
-rw-r--r-- 1 root root 1.7K Sep 12 12:39 000747.sst
-rw-r--r-- 1 root root 9.4K Sep 12 12:41 000773.sst
-rw-r--r-- 1 root root  36K Sep 12 12:41 000774.sst
-rw-r--r-- 1 root root 5.9M Sep 12 12:41 000777.sst
-rw-r--r-- 1 root root 2.5K Sep 12 12:41 000781.sst
-rw-r--r-- 1 root root 8.0K Sep 12 12:41 000799.sst
-rw-r--r-- 1 root root 3.8K Sep 12 12:41 000801.sst
-rw-r--r-- 1 root root  17M Sep 12 12:39 000804.sst
-rw-r--r-- 1 root root 2.7K Sep 12 12:39 000805.sst
-rw-r--r-- 1 root root 2.3K Sep 12 12:41 000808.sst
-rw-r--r-- 1 root root 1.9K Sep 12 12:41 000810.sst
-rw-r--r-- 1 root root  32M Sep 12 12:41 000812.sst
-rw-r--r-- 1 root root  65M Sep 12 12:41 000813.sst
-rw-r--r-- 1 root root  65M Sep 12 12:41 000814.sst
-rw-r--r-- 1 root root  20M Sep 12 12:39 000815.sst
-rw-r--r-- 1 root root  68K Sep 12 12:41 000825.sst
-rw-r--r-- 1 root root 1.9K Sep 12 12:41 000830.sst
-rw-r--r-- 1 root root 2.3M Sep 12 12:41 000843.sst
-rw-r--r-- 1 root root 4.3M Sep 12 12:41 000848.sst
-rw-r--r-- 1 root root 2.2K Sep 12 12:41 000850.sst
-rw-r--r-- 1 root root 173K Sep 12 12:40 000857.sst
-rw-r--r-- 1 root root 8.0K Sep 12 12:39 000867.sst
-rw-r--r-- 1 root root  21K Sep 12 12:41 000868.sst
-rw-r--r-- 1 root root 5.6K Sep 12 12:40 000871.sst
-rw-r--r-- 1 root root 6.3K Sep 12 12:40 000874.sst
-rw-r--r-- 1 root root  20K Sep 12 12:39 000877.sst
-rw-r--r-- 1 root root  20K Sep 12 12:40 000880.sst
-rw-r--r-- 1 root root  13K Sep 12 12:40 000881.sst
-rw-r--r-- 1 root root 2.4K Sep 12 12:41 000883.sst
-rw-r--r-- 1 root root 2.8K Sep 12 12:41 000884.sst
-rw-r--r-- 1 root root 387K Sep 12 12:41 000893.sst
-rw-r--r-- 1 root root  87K Sep 12 12:40 000898.sst
-rw-r--r-- 1 root root  65M Sep 12 12:40 000900.sst
-rw-r--r-- 1 root root  65M Sep 12 12:41 000901.sst
-rw-r--r-- 1 root root 6.4K Sep 12 12:41 000915.sst
-rw-r--r-- 1 root root 2.0K Sep 12 12:41 000929.sst
-rw-r--r-- 1 root root 1.3K Sep 12 12:40 000930.sst
-rw-r--r-- 1 root root 1.3K Sep 12 12:41 000934.sst
-rw-r--r-- 1 root root 1.1K Sep 12 12:39 000935.sst
-rw-r--r-- 1 root root  21K Sep 12 12:40 000937.sst
-rw-r--r-- 1 root root  20K Sep 12 12:41 000940.sst
-rw-r--r-- 1 root root  15K Sep 12 12:39 000942.sst
-rw-r--r-- 1 root root 2.4M Sep 12 12:40 000944.sst
-rw-r--r-- 1 root root  35K Sep 12 12:41 000946.sst
-rw-r--r-- 1 root root 1.3K Sep 12 12:40 000948.sst
-rw-r--r-- 1 root root 1.1K Sep 12 12:41 000949.sst
-rw-r--r-- 1 root root  68K Sep 12 12:40 000952.sst
-rw-r--r-- 1 root root 195K Sep 12 12:40 000958.sst
-rw-r--r-- 1 root root  59K Sep 12 12:40 000966.sst
-rw-r--r-- 1 root root  65M Sep 12 12:40 000973.sst
-rw-r--r-- 1 root root  65M Sep 12 12:40 000974.sst
-rw-r--r-- 1 root root  20K Sep 12 12:40 001000.sst
-rw-r--r-- 1 root root 9.0K Sep 12 12:41 001005.sst
-rw-r--r-- 1 root root 1.7M Sep 12 12:40 001013.sst
-rw-r--r-- 1 root root  52K Sep 12 12:39 001016.sst
-rw-r--r-- 1 root root  14K Sep 12 12:40 001069.sst
-rw-r--r-- 1 root root  41M Sep 12 12:40 001077.sst
-rw-r--r-- 1 root root  39K Sep 12 12:41 001083.sst
-rw-r--r-- 1 root root 174K Sep 12 12:39 001084.sst
-rw-r--r-- 1 root root 1.9M Sep 12 12:40 001089.sst
-rw-r--r-- 1 root root  74K Sep 12 12:39 001103.sst
-rw-r--r-- 1 root root  65M Sep 12 12:41 001121.sst
-rw-r--r-- 1 root root  65M Sep 12 12:41 001122.sst
-rw-r--r-- 1 root root  12K Sep 12 12:39 001133.sst
-rw-r--r-- 1 root root 211K Sep 12 12:41 001134.sst
-rw-r--r-- 1 root root  33K Sep 12 12:40 001140.sst
-rw-r--r-- 1 root root 2.2M Sep 12 12:40 001144.sst
-rw-r--r-- 1 root root 183K Sep 12 12:41 001145.sst
-rw-r--r-- 1 root root 7.7K Sep 12 12:41 001146.sst
-rw-r--r-- 1 root root 1.7M Sep 12 12:41 001155.sst
-rw-r--r-- 1 root root  19K Sep 12 12:41 001162.sst
-rw-r--r-- 1 root root  65M Sep 12 12:39 001181.sst
-rw-r--r-- 1 root root  65M Sep 12 12:41 001182.sst
-rw-r--r-- 1 root root  97K Sep 12 12:40 001198.sst
-rw-r--r-- 1 root root  28K Sep 12 12:39 001199.sst
-rw-r--r-- 1 root root 5.1K Sep 12 12:40 001214.sst
-rw-r--r-- 1 root root 1.1M Sep 12 12:41 001220.sst
-rw-r--r-- 1 root root 1.3K Sep 12 12:41 001236.sst
-rw-r--r-- 1 root root  65M Sep 12 12:41 001242.sst
-rw-r--r-- 1 root root 284K Sep 12 12:39 001245.sst
-rw-r--r-- 1 root root 210K Sep 12 12:40 001255.sst
-rw-r--r-- 1 root root 5.3K Sep 12 12:40 001267.sst
-rw-r--r-- 1 root root 2.7K Sep 12 12:41 001268.sst
-rw-r--r-- 1 root root 316K Sep 12 12:41 001269.sst
-rw-r--r-- 1 root root 1.1M Sep 12 12:41 001300.sst
-rw-r--r-- 1 root root  65M Sep 12 12:41 001322.sst
-rw-r--r-- 1 root root 1.8K Sep 12 12:41 001337.sst
-rw-r--r-- 1 root root  63K Sep 12 12:40 001339.sst
-rw-r--r-- 1 root root 182K Sep 12 12:41 001369.sst
-rw-r--r-- 1 root root 1.5K Sep 12 12:41 001374.sst
-rw-r--r-- 1 root root 969K Sep 12 12:39 001389.sst
-rw-r--r-- 1 root root 147K Sep 12 12:40 001394.sst
-rw-r--r-- 1 root root 2.8K Sep 12 12:41 001395.sst
-rw-r--r-- 1 root root  15K Sep 12 12:40 001396.sst
-rw-r--r-- 1 root root 405K Sep 12 12:41 001397.sst
-rw-r--r-- 1 root root 2.3M Sep 12 12:41 001398.sst
-rw-r--r-- 1 root root 4.3K Sep 12 12:40 001401.sst
-rw-r--r-- 1 root root 1.4K Sep 12 12:41 001402.sst
-rw-r--r-- 1 root root 1.2K Sep 12 12:40 001405.sst
-rw-r--r-- 1 root root 1.5M Sep 12 12:41 001406.sst
-rw-r--r-- 1 root root 1.4K Sep 12 12:39 001436.sst
-rw-r--r-- 1 root root  36M Sep 12 12:40 001468.sst
-rw-r--r-- 1 root root  65M Sep 12 12:41 001476.sst
-rw-r--r-- 1 root root  65M Sep 12 12:40 001477.sst
-rw-r--r-- 1 root root  65M Sep 12 12:41 001478.sst
-rw-r--r-- 1 root root  49M Sep 12 12:41 001479.sst
-rw-r--r-- 1 root root  65M Sep 12 12:40 001482.sst
-rw-r--r-- 1 root root  64M Sep 12 12:41 001483.sst
-rw-r--r-- 1 root root  65M Sep 12 12:41 001485.sst
-rw-r--r-- 1 root root  65M Sep 12 12:41 001486.sst
-rw-r--r-- 1 root root  65M Sep 12 12:40 001487.sst
-rw-r--r-- 1 root root  20M Sep 12 12:40 001489.sst
-rw-r--r-- 1 root root 744K Sep 12 12:41 001497.sst
-rw-r--r-- 1 root root  65M Sep 12 12:41 001500.sst
-rw-r--r-- 1 root root  61M Sep 12 12:41 001502.sst
-rw-r--r-- 1 root root  14K Sep 12 12:39 001506.sst
-rw-r--r-- 1 root root 4.7K Sep 12 12:41 001511.sst
-rw-r--r-- 1 root root  65M Sep 12 12:40 001515.sst
-rw-r--r-- 1 root root  65M Sep 12 12:41 001516.sst
-rw-r--r-- 1 root root  62M Sep 12 12:41 001517.sst
-rw-r--r-- 1 root root  65M Sep 12 12:40 001520.sst
-rw-r--r-- 1 root root 2.2K Sep 12 12:40 001521.sst
-rw-r--r-- 1 root root 8.6M Sep 12 12:41 001523.sst
-rw-r--r-- 1 root root  65M Sep 12 12:40 001532.sst
-rw-r--r-- 1 root root  33M Sep 12 12:41 001533.sst
-rw-r--r-- 1 root root 5.4M Sep 12 12:41 001536.sst
-rw-r--r-- 1 root root  65M Sep 12 12:40 001537.sst
-rw-r--r-- 1 root root  65M Sep 12 12:39 001538.sst
-rw-r--r-- 1 root root 4.6M Sep 12 12:40 001540.sst
-rw-r--r-- 1 root root  11M Sep 12 12:39 001542.sst
-rw-r--r-- 1 root root  65M Sep 12 12:41 001544.sst
-rw-r--r-- 1 root root  65M Sep 12 12:41 001545.sst
-rw-r--r-- 1 root root  65M Sep 12 12:39 001546.sst
-rw-r--r-- 1 root root  11M Sep 12 12:41 001547.sst
-rw-r--r-- 1 root root 1.4M Sep 12 12:41 001548.sst
-rw-r--r-- 1 root root 1.4M Sep 12 12:41 001549.sst
-rw-r--r-- 1 root root 4.7M Sep 12 12:40 001551.sst
-rw-r--r-- 1 root root 361K Sep 12 12:41 001556.sst
-rw-r--r-- 1 root root 4.8M Sep 12 12:41 001558.sst
-rw-r--r-- 1 root root  74K Sep 12 12:40 001563.sst
-rw-r--r-- 1 root root 4.0M Sep 12 12:41 001564.sst
-rw-r--r-- 1 root root 4.3M Sep 12 12:40 001565.sst
-rw-r--r-- 1 root root  11M Sep 12 12:40 001567.sst
-rw-r--r-- 1 root root 2.0M Sep 12 12:41 001568.sst
-rw-r--r-- 1 root root  65M Sep 12 12:40 001572.sst
-rw-r--r-- 1 root root  65M Sep 12 12:40 001573.sst
-rw-r--r-- 1 root root  65M Sep 12 12:40 001574.sst
-rw-r--r-- 1 root root  65M Sep 12 12:40 001575.sst
-rw-r--r-- 1 root root  65M Sep 12 12:39 001578.sst
-rw-r--r-- 1 root root  65M Sep 12 12:39 001579.sst
-rw-r--r-- 1 root root  65M Sep 12 12:39 001580.sst
-rw-r--r-- 1 root root  11M Sep 12 12:41 001581.sst
-rw-r--r-- 1 root root 8.6M Sep 12 12:41 001584.sst
-rw-r--r-- 1 root root 5.9M Sep 12 12:41 001585.sst
-rw-r--r-- 1 root root 1.4M Sep 12 12:40 001586.sst
-rw-r--r-- 1 root root 1.3K Sep 12 12:40 001592.sst
-rw-r--r-- 1 root root  14K Sep 12 12:41 001593.sst
-rw-r--r-- 1 root root  42M Sep 12 12:40 001596.sst
-rw-r--r-- 1 root root 270K Sep 12 12:41 001598.sst
-rw-r--r-- 1 root root 130K Sep 12 12:40 001600.sst
-rw-r--r-- 1 root root 6.8M Sep 12 12:41 001602.sst
-rw-r--r-- 1 root root 3.6M Sep 12 12:41 001605.sst
-rw-r--r-- 1 root root 302K Sep 12 12:39 001606.sst
-rw-r--r-- 1 root root 7.0M Sep 12 12:40 001607.sst
-rw-r--r-- 1 root root 506K Sep 12 12:41 001608.sst
-rw-r--r-- 1 root root 7.1M Sep 12 12:41 001609.sst
-rw-r--r-- 1 root root 1.3M Sep 12 12:41 001610.sst
-rw-r--r-- 1 root root 1.6M Sep 12 12:41 001611.sst
-rw-r--r-- 1 root root  37M Sep 12 12:41 001613.sst
-rw-r--r-- 1 root root 5.5M Sep 12 12:39 001614.sst
-rw-r--r-- 1 root root  27K Sep 12 12:40 001615.sst
-rw-r--r-- 1 root root  59K Sep 12 12:40 001617.sst
-rw-r--r-- 1 root root  54K Sep 12 12:40 001620.sst
-rw-r--r-- 1 root root 197K Sep 12 12:39 001621.sst
-rw-r--r-- 1 root root 123K Sep 12 12:39 001622.sst
-rw-r--r-- 1 root root  16M Sep 12 12:40 001624.sst
-rw-r--r-- 1 root root 605K Sep 12 12:41 001625.sst
-rw-r--r-- 1 root root 2.7M Sep 12 12:41 001626.sst
-rw-r--r-- 1 root root 8.7M Sep 12 12:41 001629.sst
-rw-r--r-- 1 root root 7.9K Sep 12 12:40 001630.sst
-rw-r--r-- 1 root root 882K Sep 12 12:40 001632.sst
-rw-r--r-- 1 root root 248K Sep 12 12:40 001633.sst
-rw-r--r-- 1 root root  70K Sep 12 12:41 001634.sst
-rw-r--r-- 1 root root  65M Sep 12 12:41 001636.sst
-rw-r--r-- 1 root root  15M Sep 12 12:41 001638.sst
-rw-r--r-- 1 root root  65M Sep 12 12:41 001639.sst
-rw-r--r-- 1 root root  29M Sep 12 12:40 001640.sst
-rw-r--r-- 1 root root  37M Sep 12 12:41 001641.sst
-rw-r--r-- 1 root root 2.5K Sep 12 12:40 001642.sst
-rw-r--r-- 1 root root 1.4K Sep 12 12:39 001643.sst
-rw-r--r-- 1 root root 3.4K Sep 12 12:41 001645.sst
-rw-r--r-- 1 root root 242K Sep 12 12:40 001647.sst
-rw-r--r-- 1 root root 9.2M Sep 12 12:40 001648.sst
-rw-r--r-- 1 root root 1.4M Sep 12 12:40 001649.sst
-rw-r--r-- 1 root root  65M Sep 12 12:41 001651.sst
-rw-r--r-- 1 root root  65M Sep 12 12:40 001653.sst
-rw-r--r-- 1 root root  65M Sep 12 12:39 001654.sst
-rw-r--r-- 1 root root 9.9M Sep 12 12:39 001655.sst
-rw-r--r-- 1 root root  16M Sep 12 12:39 001657.sst
-rw-r--r-- 1 root root 3.3M Sep 12 12:41 001658.sst
-rw-r--r-- 1 root root  85K Sep 12 12:39 001659.sst
-rw-r--r-- 1 root root  42K Sep 12 12:40 001660.sst
-rw-r--r-- 1 root root 260K Sep 12 12:40 001661.sst
-rw-r--r-- 1 root root 6.2M Sep 12 12:41 001664.sst
-rw-r--r-- 1 root root 2.9M Sep 12 12:41 001666.sst
-rw-r--r-- 1 root root 238K Sep 12 12:39 001667.sst
-rw-r--r-- 1 root root 5.6M Sep 12 12:40 001668.sst
-rw-r--r-- 1 root root 1.4M Sep 12 12:41 001670.sst
-rw-r--r-- 1 root root  27K Sep 12 12:40 001674.sst
-rw-r--r-- 1 root root 7.3K Sep 12 12:40 001675.sst
-rw-r--r-- 1 root root 2.2M Sep 12 12:40 001676.sst
-rw-r--r-- 1 root root 234K Sep 12 12:41 001677.sst
-rw-r--r-- 1 root root 923K Sep 12 12:40 001678.sst
-rw-r--r-- 1 root root  49K Sep 12 12:39 001679.sst
-rw-r--r-- 1 root root 215K Sep 12 12:41 001680.sst
-rw-r--r-- 1 root root 2.9K Sep 12 12:41 001681.sst
-rw-r--r-- 1 root root 5.9M Sep 12 12:41 001682.sst
-rw-r--r-- 1 root root 258K Sep 12 12:39 001683.sst
-rw-r--r-- 1 root root 7.1M Sep 12 12:40 001684.sst
-rw-r--r-- 1 root root  25K Sep 12 12:40 001686.sst
-rw-r--r-- 1 root root 2.5K Sep 12 12:40 001687.sst
-rw-r--r-- 1 root root  13K Sep 12 12:41 001688.sst
-rw-r--r-- 1 root root 451K Sep 12 12:41 001689.sst
-rw-r--r-- 1 root root  10M Sep 12 12:41 001690.sst
-rw-r--r-- 1 root root 2.9M Sep 12 12:41 001691.sst
-rw-r--r-- 1 root root  18K Sep 12 12:40 001692.sst
-rw-r--r-- 1 root root 5.2K Sep 12 12:39 001693.sst
-rw-r--r-- 1 root root 7.5M Sep 12 12:41 001694.sst
-rw-r--r-- 1 root root  19K Sep 12 12:40 001695.sst
-rw-r--r-- 1 root root 328K Sep 12 12:40 001697.sst
-rw-r--r-- 1 root root  58K Sep 12 12:39 001699.sst
-rw-r--r-- 1 root root  19K Sep 12 12:41 001701.sst
-rw-r--r-- 1 root root 189K Sep 12 12:40 001702.sst
-rw-r--r-- 1 root root 7.9K Sep 12 12:40 001703.sst
-rw-r--r-- 1 root root 1.4K Sep 12 12:41 001704.sst
-rw-r--r-- 1 root root  23K Sep 12 12:40 001706.sst
-rw-r--r-- 1 root root 7.1K Sep 12 12:40 001707.sst
-rw-r--r-- 1 root root 3.5K Sep 12 12:41 001709.sst
-rw-r--r-- 1 root root 1.4K Sep 12 12:39 001711.sst
-rw-r--r-- 1 root root  11K Sep 12 12:39 001712.sst
-rw-r--r-- 1 root root 5.2K Sep 12 12:41 001713.sst
-rw-r--r-- 1 root root    0 Sep 12 12:41 001716.log
-rw-r--r-- 1 root root 2.9K Sep 12 12:41 001720.sst
-rw-r--r-- 1 root root 3.4K Sep 12 12:41 001721.sst
-rw-r--r-- 1 root root 118M Sep 12 12:41 001722.sst
-rw-r--r-- 1 root root 3.0K Sep 12 12:41 001723.sst
-rw-r--r-- 1 root root  91M Sep 12 12:41 001724.sst
-rw-r--r-- 1 root root  17K Sep 12 12:42 001726.sst
-rw-r--r-- 1 root root  15M Sep 12 12:42 001727.sst
-rw-r--r-- 1 root root  43M Sep 12 12:42 001728.sst
-rw-r--r-- 1 root root 1.4M Sep 12 12:42 001729.sst
-rw-r--r-- 1 root root 503K Sep 12 12:42 001730.sst
-rw-r--r-- 1 root root  25M Sep 12 12:42 001731.sst
-rw-r--r-- 1 root root  65M Sep 12 12:42 001732.sst
-rw-r--r-- 1 root root 974K Sep 12 12:42 001733.sst
-rw-r--r-- 1 root root   16 Sep 12 12:41 CURRENT
-rw-r--r-- 1 root root   36 Sep 12 12:40 IDENTITY
-rw-r--r-- 1 root root    0 Sep 12 12:40 LOCK
-rw-r--r-- 1 root root    0 Sep 12 12:41 LOG
-rw-r--r-- 1 root root  62K Sep 12 12:42 MANIFEST-001717
-rw-r--r-- 1 root root 265K Sep 12 12:40 OPTIONS-001358
-rw-r--r-- 1 root root 265K Sep 12 12:41 OPTIONS-001719

Known issues:

@santipadilla santipadilla linked a pull request Sep 13, 2024 that will close this issue
2 tasks
@wazuhci wazuhci moved this from In progress to Pending review in Release 4.9.1 Sep 13, 2024
@wazuhci wazuhci moved this from Pending review to In review in Release 4.9.1 Sep 13, 2024
@rafabailon
Copy link
Member

LGTM

@wazuhci wazuhci moved this from In review to Pending final review in Release 4.9.1 Sep 13, 2024
@wazuhci wazuhci moved this from Pending final review to In final review in Release 4.9.1 Sep 17, 2024
@wazuhci wazuhci moved this from In final review to On hold in Release 4.9.1 Sep 17, 2024
@wazuhci wazuhci moved this from On hold to In progress in Release 4.9.1 Sep 17, 2024
@wazuhci wazuhci moved this from In progress to Pending final review in Release 4.9.1 Sep 17, 2024
@wazuhci wazuhci moved this from Pending final review to Done in Release 4.9.1 Sep 17, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
No open projects
Status: Done
Development

Successfully merging a pull request may close this issue.

3 participants