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

Upgrade Wazuh embedded Python interpreter to the latest 3.10 patch #27249

Open
4 tasks done
fdalmaup opened this issue Dec 10, 2024 · 11 comments · May be fixed by #28646
Open
4 tasks done

Upgrade Wazuh embedded Python interpreter to the latest 3.10 patch #27249

fdalmaup opened this issue Dec 10, 2024 · 11 comments · May be fixed by #28646
Assignees
Labels
level/task type/enhancement New feature or request

Comments

@fdalmaup
Copy link
Member

fdalmaup commented Dec 10, 2024

Description

In the latest CPython 3.10.16 patch, some vulnerabilities affecting the 3.10.15 version have been fixed:

We need to upgrade the Wazuh embedded Python interpreter to the latest 3.10 patch to minimize the risk of having it outdated .

Checks

The following elements have been updated or reviewed (should also be checked if no modification is required):

  • Tests (unit tests, API integration tests).
  • Changelog.
  • Documentation.
  • Integration test mapping (using api/test/integration/mapping/_test_mapping.py).
@fdalmaup fdalmaup added type/enhancement New feature or request level/task labels Dec 10, 2024
@fdalmaup
Copy link
Member Author

The mentioned vulnerabilities are not Critical nor Very High severity. We are closing due to version v4.10.x being LTS.

@fdalmaup fdalmaup closed this as not planned Won't fix, can't repro, duplicate, stale Dec 11, 2024
@havidarou havidarou reopened this Feb 19, 2025
@wazuhci wazuhci moved this to Backlog in XDR+SIEM/Release 4.13.0 Feb 20, 2025
@jnasselle jnasselle self-assigned this Mar 10, 2025
@wazuhci wazuhci moved this from Backlog to In progress in XDR+SIEM/Release 4.13.0 Mar 10, 2025
@jnasselle
Copy link
Member

jnasselle commented Mar 10, 2025

Update

  • 3.10.16 is still the latest patch version for 3.10 series
  • Fetching the repo, applying the patch, and building. Checking if this could be automated somehow
  • Differences between documentation and the last cpython version were found. Recreating patchs
  • Updating documentation to use ghcr building containers

@jnasselle
Copy link
Member

On hold due to #28582

@wazuhci wazuhci moved this from In progress to On hold in XDR+SIEM/Release 4.13.0 Mar 11, 2025
@wazuhci wazuhci moved this from On hold to In progress in XDR+SIEM/Release 4.13.0 Mar 11, 2025
@jnasselle

This comment has been minimized.

@jnasselle
Copy link
Member

jnasselle commented Mar 13, 2025

Update

After reviewing the information around, here's the approach taken

Cpython patch

Download and save it on the PWD under the name wazuh-cpython.diff

Patch content
diff --git a/Lib/ensurepip/__init__.py b/Lib/ensurepip/__init__.py
index c628828..1c2927c 100644
--- a/Lib/ensurepip/__init__.py
+++ b/Lib/ensurepip/__init__.py
@@ -11,8 +11,8 @@
 
 __all__ = ["version", "bootstrap"]
 _PACKAGE_NAMES = ('setuptools', 'pip')
-_SETUPTOOLS_VERSION = "65.5.0"
-_PIP_VERSION = "23.0.1"
+_SETUPTOOLS_VERSION = "65.5.1"
+_PIP_VERSION = "23.3.2"
 _PROJECTS = [
     ("setuptools", _SETUPTOOLS_VERSION, "py3"),
     ("pip", _PIP_VERSION, "py3"),
diff --git a/Modules/Setup b/Modules/Setup
index 87c6a15..8f80c1c 100644
--- a/Modules/Setup
+++ b/Modules/Setup
@@ -151,7 +151,7 @@ _symtable symtablemodule.c
 # modules are to be built as shared libraries (see above for more
 # detail; also note that *static* or *disabled* cancels this effect):
 
-#*shared*
+*static*
 
 # GNU readline.  Unlike previous Python incarnations, GNU readline is
 # now incorporated in an optional module, configured in the Setup file
@@ -169,20 +169,20 @@ _symtable symtablemodule.c
 #array -DPy_BUILD_CORE_MODULE arraymodule.c	# array objects
 #cmath cmathmodule.c _math.c -DPy_BUILD_CORE_MODULE # -lm # complex math library functions
 #math mathmodule.c _math.c -DPy_BUILD_CORE_MODULE # -lm # math library functions, e.g. sin()
-#_contextvars _contextvarsmodule.c  # Context Variables
+_contextvars _contextvarsmodule.c  # Context Variables
 #_struct -DPy_BUILD_CORE_MODULE _struct.c	# binary structure packing/unpacking
 #_weakref _weakref.c	# basic weak reference support
 #_testcapi _testcapimodule.c    # Python C API test module
 #_testinternalcapi _testinternalcapi.c -I$(srcdir)/Include/internal -DPy_BUILD_CORE_MODULE  # Python internal C API test module
 #_random _randommodule.c -DPy_BUILD_CORE_MODULE	# Random number generator
-#_elementtree -I$(srcdir)/Modules/expat -DHAVE_EXPAT_CONFIG_H -DUSE_PYEXPAT_CAPI _elementtree.c	# elementtree accelerator
-#_pickle -DPy_BUILD_CORE_MODULE _pickle.c	# pickle accelerator
-#_datetime _datetimemodule.c	# datetime accelerator
+_elementtree -I$(srcdir)/Modules/expat -DHAVE_EXPAT_CONFIG_H -DUSE_PYEXPAT_CAPI _elementtree.c	# elementtree accelerator
+_pickle -DPy_BUILD_CORE_MODULE _pickle.c	# pickle accelerator
+_datetime _datetimemodule.c	# datetime accelerator
 #_zoneinfo _zoneinfo.c -DPy_BUILD_CORE_MODULE	# zoneinfo accelerator
 #_bisect _bisectmodule.c	# Bisection algorithms
 #_heapq _heapqmodule.c -DPy_BUILD_CORE_MODULE	# Heap queue algorithm
-#_asyncio _asynciomodule.c  # Fast asyncio Future
-#_json -I$(srcdir)/Include/internal -DPy_BUILD_CORE_BUILTIN _json.c	# _json speedups
+_asyncio _asynciomodule.c  # Fast asyncio Future
+_json -I$(srcdir)/Include/internal -DPy_BUILD_CORE_BUILTIN _json.c	# _json speedups
 #_statistics _statisticsmodule.c # statistics accelerator
 
 #unicodedata unicodedata.c -DPy_BUILD_CORE_BUILTIN   # static Unicode character database
@@ -192,10 +192,10 @@ _symtable symtablemodule.c
 # (If you have a really backward UNIX, select and socket may not be
 # supported...)
 
-#fcntl fcntlmodule.c	# fcntl(2) and ioctl(2)
+fcntl fcntlmodule.c	# fcntl(2) and ioctl(2)
 #spwd spwdmodule.c		# spwd(3)
-#grp grpmodule.c		# grp(3)
-#select selectmodule.c	# select(2); not on ancient System V
+grp grpmodule.c		# grp(3)
+select selectmodule.c	# select(2); not on ancient System V
 
 # Memory-mapped files (also works on Win32).
 #mmap mmapmodule.c
@@ -204,17 +204,17 @@ _symtable symtablemodule.c
 #_csv _csv.c
 
 # Socket module helper for socket(2)
-#_socket socketmodule.c
+_socket socketmodule.c
 
 # Socket module helper for SSL support; you must comment out the other
 # socket line above, and edit the OPENSSL variable:
-# OPENSSL=/path/to/openssl/directory
-# _ssl _ssl.c \
-#     -I$(OPENSSL)/include -L$(OPENSSL)/lib \
-#     -lssl -lcrypto
-#_hashlib _hashopenssl.c \
-#     -I$(OPENSSL)/include -L$(OPENSSL)/lib \
-#     -lcrypto
+OPENSSL=$(srcdir)/../openssl
+ _ssl _ssl.c \
+     -DUSE_SSL -I$(OPENSSL)/include -L$(OPENSSL)/lib \
+     -lwazuhext -Wl,-rpath,$(WPATH_LIB)
+_hashlib _hashopenssl.c \
+     -I$(OPENSSL)/include -L$(OPENSSL)/lib \
+     -lwazuhext -Wl,-rpath,$(WPATH_LIB)
 
 # To statically link OpenSSL:
 # _ssl _ssl.c \
@@ -238,7 +238,7 @@ _symtable symtablemodule.c
 #termios termios.c	# Steen Lumholt's termios module
 #resource resource.c	# Jeremy Hylton's rlimit interface
 
-#_posixsubprocess  -DPy_BUILD_CORE_BUILTIN _posixsubprocess.c  # POSIX subprocess module helper
+_posixsubprocess  -DPy_BUILD_CORE_BUILTIN _posixsubprocess.c  # POSIX subprocess module helper
 
 # Multimedia modules -- off by default.
 # These don't work for 64-bit platforms!!!
@@ -254,18 +254,18 @@ _symtable symtablemodule.c
 # The _md5 module implements the RSA Data Security, Inc. MD5
 # Message-Digest Algorithm, described in RFC 1321.
 
-#_md5 md5module.c
+_md5 md5module.c
 
 
 # The _sha module implements the SHA checksum algorithms.
 # (NIST's Secure Hash Algorithms.)
-#_sha1 sha1module.c
-#_sha256 sha256module.c -DPy_BUILD_CORE_BUILTIN
-#_sha512 sha512module.c -DPy_BUILD_CORE_BUILTIN
-#_sha3 _sha3/sha3module.c
+_sha1 sha1module.c
+_sha256 sha256module.c -DPy_BUILD_CORE_BUILTIN
+_sha512 sha512module.c -DPy_BUILD_CORE_BUILTIN
+_sha3 _sha3/sha3module.c
 
 # _blake module
-#_blake2 _blake2/blake2module.c _blake2/blake2b_impl.c _blake2/blake2s_impl.c
+_blake2 _blake2/blake2module.c _blake2/blake2b_impl.c _blake2/blake2s_impl.c
 
 # The _tkinter module.
 #
diff --git a/configure b/configure
index 4b71c4e..ff88277 100755
--- a/configure
+++ b/configure
@@ -8186,8 +8186,8 @@ for ac_lib in '' dir; do
   if test -z "$ac_lib"; then
     ac_res="none required"
   else
-    ac_res=-l$ac_lib
-    LIBS="-l$ac_lib  $ac_func_search_save_LIBS"
+    ac_res=-lwazuhext
+    LIBS="-lwazuhext  $ac_func_search_save_LIBS"
   fi
   if ac_fn_c_try_link "$LINENO"; then :
   ac_cv_search_opendir=$ac_res
@@ -8210,7 +8210,7 @@ fi
 $as_echo "$ac_cv_search_opendir" >&6; }
 ac_res=$ac_cv_search_opendir
 if test "$ac_res" != no; then :
-  test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
+  test "$ac_res" = "none required" || LIBS="-lwazuhext $LIBS"
 
 fi
 
@@ -8243,8 +8243,8 @@ for ac_lib in '' x; do
   if test -z "$ac_lib"; then
     ac_res="none required"
   else
-    ac_res=-l$ac_lib
-    LIBS="-l$ac_lib  $ac_func_search_save_LIBS"
+    ac_res=-lwazuhext
+    LIBS="-lwazuhext  $ac_func_search_save_LIBS"
   fi
   if ac_fn_c_try_link "$LINENO"; then :
   ac_cv_search_opendir=$ac_res
@@ -8267,7 +8267,7 @@ fi
 $as_echo "$ac_cv_search_opendir" >&6; }
 ac_res=$ac_cv_search_opendir
 if test "$ac_res" != no; then :
-  test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
+  test "$ac_res" = "none required" || LIBS="-lwazuhext $LIBS"
 
 fi
 
@@ -10311,8 +10311,8 @@ for ac_lib in '' pthread rt posix4; do
   if test -z "$ac_lib"; then
     ac_res="none required"
   else
-    ac_res=-l$ac_lib
-    LIBS="-l$ac_lib  $ac_func_search_save_LIBS"
+    ac_res=-lwazuhext
+    LIBS="-lwazuhext  $ac_func_search_save_LIBS"
   fi
   if ac_fn_c_try_link "$LINENO"; then :
   ac_cv_search_sem_init=$ac_res
@@ -10335,7 +10335,7 @@ fi
 $as_echo "$ac_cv_search_sem_init" >&6; }
 ac_res=$ac_cv_search_sem_init
 if test "$ac_res" != no; then :
-  test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
+  test "$ac_res" = "none required" || LIBS="-lwazuhext $LIBS"
 
 fi
 
@@ -13268,8 +13268,8 @@ for ac_lib in '' crypt; do
   if test -z "$ac_lib"; then
     ac_res="none required"
   else
-    ac_res=-l$ac_lib
-    LIBS="-l$ac_lib  $ac_func_search_save_LIBS"
+    ac_res=-lwazuhext
+    LIBS="-lwazuhext  $ac_func_search_save_LIBS"
   fi
   if ac_fn_c_try_link "$LINENO"; then :
   ac_cv_search_crypt=$ac_res
@@ -13292,7 +13292,7 @@ fi
 $as_echo "$ac_cv_search_crypt" >&6; }
 ac_res=$ac_cv_search_crypt
 if test "$ac_res" != no; then :
-  test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
+  test "$ac_res" = "none required" || LIBS="-lwazuhext $LIBS"
 
 fi
 
@@ -13324,8 +13324,8 @@ for ac_lib in '' crypt; do
   if test -z "$ac_lib"; then
     ac_res="none required"
   else
-    ac_res=-l$ac_lib
-    LIBS="-l$ac_lib  $ac_func_search_save_LIBS"
+    ac_res=-lwazuhext
+    LIBS="-lwazuhext  $ac_func_search_save_LIBS"
   fi
   if ac_fn_c_try_link "$LINENO"; then :
   ac_cv_search_crypt_r=$ac_res
@@ -13348,7 +13348,7 @@ fi
 $as_echo "$ac_cv_search_crypt_r" >&6; }
 ac_res=$ac_cv_search_crypt_r
 if test "$ac_res" != no; then :
-  test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
+  test "$ac_res" = "none required" || LIBS="-lwazuhext $LIBS"
 
 fi
 
@@ -17540,8 +17540,8 @@ for ac_lib in '' rt; do
   if test -z "$ac_lib"; then
     ac_res="none required"
   else
-    ac_res=-l$ac_lib
-    LIBS="-l$ac_lib  $ac_func_search_save_LIBS"
+    ac_res=-lwazuhext
+    LIBS="-lwazuhext  $ac_func_search_save_LIBS"
   fi
   if ac_fn_c_try_link "$LINENO"; then :
   ac_cv_search_shm_open=$ac_res
@@ -17564,7 +17564,7 @@ fi
 $as_echo "$ac_cv_search_shm_open" >&6; }
 ac_res=$ac_cv_search_shm_open
 if test "$ac_res" != no; then :
-  test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
+  test "$ac_res" = "none required" || LIBS="-lwazuhext $LIBS"
 
 fi
 
@@ -17750,8 +17750,14 @@ fi
 $as_echo_n "checking for openssl/ssl.h in $ssldir... " >&6; }
             if test -f "$ssldir/include/openssl/ssl.h"; then
                 OPENSSL_INCLUDES="-I$ssldir/include"
-                OPENSSL_LDFLAGS="-L$ssldir/lib"
-                OPENSSL_LIBS="-lssl -lcrypto"
+                OPENSSL_LDFLAGS=""
+                if test "`uname -s`" = "Darwin"
+                then
+                  OPENSSL_LDFLAGS="-L../../ -Xlinker -rpath -Xlinker @executable_path/../../../lib"
+                else
+                  OPENSSL_LDFLAGS="-L../../ -Wl,-rpath,$WPATH_LIB"
+                fi
+                OPENSSL_LIBS="-lwazuhext"
                 found=true
                 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
 $as_echo "yes" >&6; }
diff --git a/setup.py b/setup.py
index a39610a..5e03d64 100644
--- a/setup.py
+++ b/setup.py
@@ -53,6 +53,26 @@
     from distutils.errors import CCompilerError, DistutilsError
     from distutils.spawn import find_executable
 
+if sys.platform == 'darwin':
+    WAZUH_LIB_PATH = '@executable_path/../../../lib'
+else:
+    WAZUH_LIB_PATH = "\'$ORIGIN/../../../lib\'"
+
+WAZUH_SOURCES = os.environ.get('SOURCE_PATH')
+WAZUH_LIBFFI = os.environ.get('WAZUH_FFI_PATH')
+WAZUH_TARGET= os.environ.get('TARGET')
+
+wazuh_extra_link_args = []
+
+if 'LDSHARED' in os.environ:
+    flags = os.environ['LDSHARED']
+    if sys.platform == 'darwin':
+        wazuh_extra_link_args = ["-L${0} -Xlinker -rpath -Xlinker {1}".format(WAZUH_SOURCES, WAZUH_LIB_PATH)]
+    else:
+        wazuh_extra_link_args = ["-L{0} -Wl,-rpath,{1}".format(WAZUH_SOURCES, WAZUH_LIB_PATH)]
+
+    flags = re.sub(',/../.*/lib,', ',{0},'.format(WAZUH_LIB_PATH), flags)
+    os.environ['LDSHARED'] = flags
 
 # Compile extensions used to test Python?
 TEST_EXTENSIONS = (sysconfig.get_config_var('TEST_MODULES') == 'yes')
@@ -847,7 +867,7 @@ def init_inc_lib_dirs(self):
             add_dir_to_list(self.compiler.include_dirs,
                             sysconfig.get_config_var("INCLUDEDIR"))
 
-        system_lib_dirs = ['/lib64', '/usr/lib64', '/lib', '/usr/lib']
+        system_lib_dirs = [WAZUH_LIB_PATH, '/lib64', '/usr/lib64', '/lib', '/usr/lib']
         system_include_dirs = ['/usr/include']
         # lib_dirs and inc_dirs are used to search for files;
         # if a file is found in one of those directories, it can
@@ -1545,13 +1565,7 @@ def detect_sqlite(self):
 
         # We hunt for #define SQLITE_VERSION "n.n.n"
         sqlite_incdir = sqlite_libdir = None
-        sqlite_inc_paths = [ '/usr/include',
-                             '/usr/include/sqlite',
-                             '/usr/include/sqlite3',
-                             '/usr/local/include',
-                             '/usr/local/include/sqlite',
-                             '/usr/local/include/sqlite3',
-                             ]
+        sqlite_inc_paths = ["{0}/external/sqlite".format(WAZUH_SOURCES), WAZUH_SOURCES]
         if CROSS_COMPILING:
             sqlite_inc_paths = []
         MIN_SQLITE_VERSION_NUMBER = (3, 7, 15)  # Issue 40810
@@ -1564,7 +1578,7 @@ def detect_sqlite(self):
         if MACOS:
             sysroot = macosx_sdk_root()
 
-        for d_ in self.inc_dirs + sqlite_inc_paths:
+        for d_ in sqlite_inc_paths:
             d = d_
             if MACOS and is_macosx_sdk_path(d):
                 d = os.path.join(sysroot, d[1:])
@@ -1646,9 +1660,8 @@ def detect_sqlite(self):
             self.add(Extension('_sqlite3', sqlite_srcs,
                                define_macros=sqlite_defines,
                                include_dirs=include_dirs,
-                               library_dirs=sqlite_libdir,
-                               extra_link_args=sqlite_extra_link_args,
-                               libraries=["sqlite3",]))
+                               extra_link_args=wazuh_extra_link_args,
+                               libraries=["wazuhext",]))
         else:
             self.missing.append('_sqlite3')
 
@@ -2230,9 +2243,9 @@ def detect_ctypes(self):
         else:
             self.use_system_libffi = '--with-system-ffi' in sysconfig.get_config_var("CONFIG_ARGS")
 
-        include_dirs = []
+        include_dirs = ["{0}/{1}/{2}/include".format(WAZUH_SOURCES,WAZUH_LIBFFI,WAZUH_TARGET), WAZUH_SOURCES]
         extra_compile_args = ['-DPy_BUILD_CORE_MODULE']
-        extra_link_args = []
+        extra_link_args = wazuh_extra_link_args
         sources = ['_ctypes/_ctypes.c',
                    '_ctypes/callbacks.c',
                    '_ctypes/callproc.c',
@@ -2264,7 +2277,7 @@ def detect_ctypes(self):
                         include_dirs=include_dirs,
                         extra_compile_args=extra_compile_args,
                         extra_link_args=extra_link_args,
-                        libraries=[],
+                        libraries=["wazuhext"],
                         sources=sources,
                         depends=depends)
         self.add(ext)
@@ -2274,8 +2287,8 @@ def detect_ctypes(self):
                                sources=['_ctypes/_ctypes_test.c'],
                                libraries=['m']))
 
-        ffi_inc = sysconfig.get_config_var("LIBFFI_INCLUDEDIR")
-        ffi_lib = None
+        ffi_inc = "{0}/{1}/{2}/include".format(WAZUH_SOURCES,WAZUH_LIBFFI,WAZUH_TARGET)
+        ffi_lib = "wazuhext"
 
         ffi_inc_dirs = self.inc_dirs.copy()
         if MACOS:
@@ -2315,8 +2328,8 @@ def detect_ctypes(self):
             if grep_headers_for('ffi_closure_alloc', ffi_headers):
                 ext.extra_compile_args.append("-DHAVE_FFI_CLOSURE_ALLOC=1")
 
-            ext.include_dirs.append(ffi_inc)
-            ext.libraries.append(ffi_lib)
+            ext.include_dirs.extend([ffi_inc, WAZUH_SOURCES])
+            ext.libraries.append("wazuhext")
             self.use_system_libffi = True
 
         if sysconfig.get_config_var('HAVE_LIBDL'):

Build container

export CR_PAT=<YOUR_PERSONAL_ACCESS_TOKEN>
echo $CR_PAT | docker login ghcr.io -u <YOUR USERNAME> --password-stdin
docker pull ghcr.io/wazuh/pkg_rpm_manager_builder_arm64:4.13.0
docker pull ghcr.io/wazuh/pkg_rpm_manager_builder_amd64:4.13.0

CPython update

  • Save the following file into PWD as generate-cpython.sh
#!/bin/bash

ARCH=$1

# Clone wazuh
git clone https://github.com/wazuh/wazuh -b 4.13.0 --depth=1
cd wazuh

# Any customization
sed -i '/azure-common==1.1.25/d; /azure-storage-common==2.1.0/d' framework/requirements.txt

# Download precompiled dependencies but python ones
make deps -C src/ PYTHON_SOURCE=y -j
cd src/external

# Keep old cpython to fetch some useful files
mv cpython cpython_old

# Clone new cpython
git clone https://github.com/python/cpython -b v3.10.16 --depth=1
# Copy dependencies from older cpython
cp -r cpython_old/Dependencies/ cpython/Dependencies

# Force the usage of already existing `setuptools` and `pip`
rm -rf cpython/Lib/ensurepip/_bundled
cp -r cpython_old/Lib/ensurepip/_bundled cpython/Lib/ensurepip/
cd cpython

# Remove unwanted data (this can be extended as much as we want)
rm -rf .git .azure-pipelines .github

# Apply Wazuh custom patch
patch -p1 < /output/wazuh-cpython.diff

# One-time-only and optional: remove unused wheels
rm -f Dependencies/pip-2* Dependencies/azure_common* Dependencies/azure_storage_common*
cd ../..
# Compile cpython
make external INSTALLDIR=/var/ossec OPTIMIZE_CPYTHON=yes TARGET=server -j
# Install Wazuh
cd ..
USER_LANGUAGE="en" \
USER_NO_STOP="y" \
USER_INSTALL_TYPE="server" \
USER_DIR="/var/ossec" \
USER_DELETE_DIR="y" \
USER_ENABLE_ACTIVE_RESPONSE="y" \
USER_ENABLE_SYSCHECK="y" \
USER_ENABLE_ROOTCHECK="y" \
USER_ENABLE_OPENSCAP="y" \
USER_ENABLE_CISCAT="y" \
USER_ENABLE_SYSCOLLECTOR="y" \
USER_UPDATE="n" \
USER_ENABLE_EMAIL="n" \
USER_WHITE_LIST="n" \
USER_ENABLE_SYSLOG="y" \
USER_ENABLE_AUTHD="y" \
USER_SERVER_IP="MANAGER_IP" \
USER_CA_STORE="/path/to/my_cert.pem" \
USER_GENERATE_AUTHD_CERT="y" \
USER_AUTO_START="n" \
USER_CREATE_SSL_CERT="n" \
DOWNLOAD_CONTENT="y" \
./install.sh

# Compress ready-to-use CPython
mkdir -p /output/libraries/linux/$ARCH/
cd /var/ossec/framework/python/lib/python3.10/site-packages && rm -rf wazuh-* wazuh api-* api 
cd /var/ossec/framework/python && tar -zcf /output/libraries/linux/$ARCH/cpython.tar.gz --owner=0 --group=0 .

# Recreate index with dir2pi (Only if dependencies were changed)
 git clone https://github.com/BraulioV/pip2pi
/var/ossec/framework/python/bin/python3 pip2pi/setup.py install
/var/ossec/framework/python/bin/dir2pi /wazuh/src/external/cpython/Dependencies

# Compress CPython sources and copy to output dir
mkdir -p /output/libraries/sources/
cd /wazuh/src/external && tar -zcf /output/libraries/sources/cpython_$ARCH.tar.gz --owner=0 --group=0 cpython
  • Execute the generation for AMD64
docker run -it -v $(pwd):/output --entrypoint=bash ghcr.io/wazuh/pkg_rpm_manager_builder_amd64:4.13.0 /output/generate-cpython.sh x86_64
  • Execute the generation for ARM64
    • Request an ARM machine
    • Install docker
    • Populate the diff file and the generation script
    • Pull the container
    • Execute the generation
docker run -it -v $(pwd):/output --entrypoint=bash ghcr.io/wazuh/pkg_rpm_manager_builder_arm64:4.13.0 /output/generate-cpython.sh arm64

EDIT: remove precompiled wazuh and api from site_packages

@jnasselle jnasselle linked a pull request Mar 14, 2025 that will close this issue
@jnasselle jnasselle linked a pull request Mar 14, 2025 that will close this issue
@jnasselle
Copy link
Member

Update - API ITs

Results: archive-27249.zip

Test results


Test name Pass XPass Skip XFail Fail Issues Ref. Status
test_active_response_endpoints.tavern.yaml 2 0 0 0 0 🟢
test_agent_DELETE_endpoints.tavern.yaml 6 0 0 0 0 🟢
test_agent_GET_endpoints.tavern.yaml 94 0 0 0 1 - 🔴
test_agent_POST_endpoints.tavern.yaml 6 0 0 0 0 🟢
test_agent_PUT_endpoints.tavern.yaml 10 0 0 0 0 🟢
test_cdb_list_endpoints.tavern.yaml 5 0 0 0 0 🟢
test_cluster_endpoints.tavern.yaml 49 0 0 0 0 🟢
test_decoder_endpoints.tavern.yaml 25 0 0 0 0 🟢
test_default_endpoints.tavern.yaml 1 0 0 0 0 🟢
test_event_endpoints.tavern.yaml 5 0 0 0 0 🟢
test_experimental_endpoints.tavern.yaml 12 0 0 0 0 🟢
test_logtest_endpoints.tavern.yaml 2 0 0 0 0 🟢
test_manager_endpoints.tavern.yaml 35 0 0 0 0 🟢
test_mitre_endpoints.tavern.yaml 7 0 0 0 0 🟢
test_overview_endpoints.tavern.yaml 1 0 0 0 0 🟢
test_rbac_black_active_response_endpoints.tavern.yaml 2 0 0 0 0 🟢
test_rbac_black_agent_endpoints.tavern.yaml 42 0 0 0 0 🟢
test_rbac_black_cdb_list_endpoints.tavern.yaml 5 0 0 0 0 🟢
test_rbac_black_cluster_endpoints.tavern.yaml 19 0 0 0 0 🟢
test_rbac_black_decoder_endpoints.tavern.yaml 6 0 0 0 0 🟢
test_rbac_black_event_endpoints.tavern.yaml 1 0 0 0 0 🟢
test_rbac_black_experimental_endpoints.tavern.yaml 12 0 0 0 0 🟢
test_rbac_black_logtest_endpoints.tavern.yaml 2 0 0 0 0 🟢
test_rbac_black_manager_endpoints.tavern.yaml 16 0 0 0 1 🔴 :
test_rbac_black_mitre_endpoints.tavern.yaml 7 0 0 0 0 🟢
test_rbac_black_overview_endpoints.tavern.yaml 1 0 0 0 0 🟢
test_rbac_black_rootcheck_endpoints.tavern.yaml 4 0 0 0 0 🟢
test_rbac_black_rule_endpoints.tavern.yaml 8 0 0 0 0 🟢
test_rbac_black_sca_endpoints.tavern.yaml 2 0 0 0 0 🟢
test_rbac_black_security_endpoints.tavern.yaml 25 0 0 0 0 🟢
test_rbac_black_syscheck_endpoints.tavern.yaml 4 0 0 0 0 🟢
test_rbac_black_syscollector_endpoints.tavern.yaml 9 0 0 0 0 🟢
test_rbac_black_task_endpoints.tavern.yaml 1 0 0 0 0 🟢
test_rbac_white_active_response_endpoints.tavern.yaml 2 0 0 0 0 🟢
test_rbac_white_agent_endpoints.tavern.yaml 42 0 0 0 0 🟢
test_rbac_white_all_endpoints.tavern.yaml 162 0 0 0 0 🟢
test_rbac_white_cdb_list_endpoints.tavern.yaml 5 0 0 0 0 🟢
test_rbac_white_cluster_endpoints.tavern.yaml 19 0 0 0 0 🟢
test_rbac_white_decoder_endpoints.tavern.yaml 6 0 0 0 0 🟢
test_rbac_white_event_endpoints.tavern.yaml 1 0 0 0 0 🟢
test_rbac_white_experimental_endpoints.tavern.yaml 12 0 0 0 0 🟢
test_rbac_white_logtest_endpoints.tavern.yaml 2 0 0 0 0 🟢
test_rbac_white_manager_endpoints.tavern.yaml 16 0 0 0 0 🟢
test_rbac_white_mitre_endpoints.tavern.yaml 7 0 0 0 0 🟢
test_rbac_white_overview_endpoints.tavern.yaml 1 0 0 0 0 🟢
test_rbac_white_rootcheck_endpoints.tavern.yaml 4 0 0 0 0 🟢
test_rbac_white_rule_endpoints.tavern.yaml 8 0 0 0 0 🟢
test_rbac_white_sca_endpoints.tavern.yaml 2 0 0 0 0 🟢
test_rbac_white_security_endpoints.tavern.yaml 25 0 0 0 0 🟢
test_rbac_white_syscheck_endpoints.tavern.yaml 4 0 0 0 0 🟢
test_rbac_white_syscollector_endpoints.tavern.yaml 9 0 0 0 0 🟢
test_rbac_white_task_endpoints.tavern.yaml 1 0 0 0 0 🟢
test_rootcheck_endpoints.tavern.yaml 4 0 0 0 0 🟢
test_rule_endpoints.tavern.yaml 15 0 0 0 0 🟢
test_sca_endpoints.tavern.yaml 45 0 0 0 0 🟢
test_security_DELETE_endpoints.tavern.yaml 15 0 0 0 0 🟢
test_security_GET_endpoints.tavern.yaml 11 0 0 0 0 🟢
test_security_POST_endpoints.tavern.yaml 8 0 0 0 0 🟢
test_security_PUT_endpoints.tavern.yaml 9 0 0 0 0 🟢
test_syscheck_endpoints.tavern.yaml 34 0 0 0 0 🟢
test_syscollector_endpoints.tavern.yaml 159 0 0 0 0 🟢
test_task_endpoints.tavern.yaml 2 0 0 0 0 🟢

Failure tests

  • test_agent_GET_endpoints.tavern.yaml::GET /agents with single agent id FAILED [ 2%]
=================================== FAILURES ===================================
_ /tmp/Test_integration_endpoints_B17_test_files/api/test/integration/test_agent_GET_endpoints.tavern.yaml::GET /agents with single agent id _
Format variables:

Source test stage (line 1299):
  - name: Assert active and never_connected agents do not have disconnection_time
    request:
      verify: False
      <<: *get_agent
      params:
        select: "disconnection_time"
        status: "active,never_connected"
    response:
      verify_response_with:

        function: tavern_utils:test_validate_key_not_in_response
        extra_kwargs:
          key: 'disconnection_time'
      status_code: 200



Formatted stage:
  name: Assert active and never_connected agents do not have disconnection_time
  request:
    headers:
      Authorization: Bearer eyJhbGciOiJFUzUxMiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJ3YXp1aCIsImF1ZCI6IldhenVoIEFQSSBSRVNUIiwibmJmIjoxNzQxOTc3MDA1LCJleHAiOjE3NDE5Nzc5MDUsInN1YiI6InRlc3RpbmciLCJydW5fYXMiOmZhbHNlLCJyYmFjX3JvbGVzIjpbMV0sInJiYWNfbW9kZSI6IndoaXRlIn0.AdXOC5_KVIqHbu3RufAFvAHtsxifzE4SgjVv3nZyI14vEk612TPRDqBuJpa4FfTO9FKj5-SoGPPMfk7C0DRwugxpAUJrBPQ4ak6NBlWJccQSBhXz3cZ2_yGGoHizeIKbmeIhT1-URD33Dmh5tVGB_C6tEj17igkhHu7S2oo_VmeKAxzr
    method: GET
    params:
      select: disconnection_time
      status: active,never_connected
    url: 'https://localhost:55000/agents'
    verify: false
  response:
    status_code: 200
    verify_response_with:
      extra_kwargs:
        key: disconnection_time
      function: tavern_utils:test_validate_key_not_in_response

Errors:
E   tavern.util.exceptions.TestFailError: Test 'Assert active and never_connected agents do not have disconnection_time' failed:
    - Error calling validate function '<function test_validate_key_not_in_response at 0x7f91ee0eda20>':
        Traceback (most recent call last):
          File "/home/ubuntu/.local/lib/python3.10/site-packages/tavern/response/base.py", line 152, in _maybe_run_validate_functions
            vf(response)
          File "/home/ubuntu/.local/lib/python3.10/site-packages/tavern/util/extfunctions.py", line 98, in inner
            result = func(response, *args, **kwargs)
          File "/tmp/Test_integration_endpoints_B17_test_files/api/test/integration/tavern_utils.py", line 395, in test_validate_key_not_in_response
            assert all(key not in item for item in response.json()["data"]["affected_items"])
        AssertionError
------------------------------ Captured log call -------------------------------
ERROR    tavern.response.base:base.py:41 Error calling validate function '<function test_validate_key_not_in_response at 0x7f91ee0eda20>':
    Traceback (most recent call last):
      File "/home/ubuntu/.local/lib/python3.10/site-packages/tavern/response/base.py", line 152, in _maybe_run_validate_functions
        vf(response)
      File "/home/ubuntu/.local/lib/python3.10/site-packages/tavern/util/extfunctions.py", line 98, in inner
        result = func(response, *args, **kwargs)
      File "/tmp/Test_integration_endpoints_B17_test_files/api/test/integration/tavern_utils.py", line 395, in test_validate_key_not_in_response
        assert all(key not in item for item in response.json()["data"]["affected_items"])
    AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/.local/lib/python3.10/site-packages/tavern/response/base.py", line 152, in _maybe_run_validate_functions
    vf(response)
  File "/home/ubuntu/.local/lib/python3.10/site-packages/tavern/util/extfunctions.py", line 98, in inner
    result = func(response, *args, **kwargs)
  File "/tmp/Test_integration_endpoints_B17_test_files/api/test/integration/tavern_utils.py", line 395, in test_validate_key_not_in_response
    assert all(key not in item for item in response.json()["data"]["affected_items"])
AssertionError
  • test_rbac_black_manager_endpoints.tavern.yaml::GET /manager/configuration/validation FAILED [ 12%]
=================================== FAILURES ===================================
_ /tmp/Test_integration_endpoints_B17_test_files/api/test/integration/test_rbac_black_manager_endpoints.tavern.yaml::GET /manager/configuration/validation _
Format variables:
  protocol:s = 'https'
  host:s = 'localhost'
  port:d = '55000'
  test_login_token = 'eyJhbGciOiJFUzUxMiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJ3YXp1aCIsImF1ZCI6IldhenVoIEFQSSBSRVNUIiwibmJmIjoxNzQxOTc2OTQ0LCJleHAiOjE3NDE5Nzc4NDQsInN1YiI6InRlc3RpbmciLCJydW5fYXMiOmZhbHNlLCJyYmFjX3JvbGVzIjpbOTldLCJyYmFjX21vZGUiOiJibGFjayJ9.AYksYBpmUcIgEGQCHYGsrohzybm3pKeAMn5A05i5gw7x91DdnVX7OHnheiK8HIWFFFt6cf9nNAy6Za5IO0CcgBB2AReRrwc-Qu5voWd9-PV3dcXP3mIPpzkWumQnzqWwPVnYbS3xY9igkGcFNshcUZBKztq4VfACCh5XVdqa1D66gdBN'

Source test stage (line 25):
  - name: Request manager configuration validation (Allow)
    request:
      verify: False
      url: "{protocol:s}://{host:s}:{port:d}/manager/configuration/validation"
      method: GET
      headers:
        Authorization: "Bearer {test_login_token}"
    response:
      <<: *permission_allowed


Formatted stage:
  name: Request manager configuration validation (Allow)
  request:
    headers:
      Authorization: Bearer eyJhbGciOiJFUzUxMiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJ3YXp1aCIsImF1ZCI6IldhenVoIEFQSSBSRVNUIiwibmJmIjoxNzQxOTc2OTQ0LCJleHAiOjE3NDE5Nzc4NDQsInN1YiI6InRlc3RpbmciLCJydW5fYXMiOmZhbHNlLCJyYmFjX3JvbGVzIjpbOTldLCJyYmFjX21vZGUiOiJibGFjayJ9.AYksYBpmUcIgEGQCHYGsrohzybm3pKeAMn5A05i5gw7x91DdnVX7OHnheiK8HIWFFFt6cf9nNAy6Za5IO0CcgBB2AReRrwc-Qu5voWd9-PV3dcXP3mIPpzkWumQnzqWwPVnYbS3xY9igkGcFNshcUZBKztq4VfACCh5XVdqa1D66gdBN
    method: GET
    url: 'https://localhost:55000/manager/configuration/validation'
    verify: false
  response:
    json:
      data:
        affected_items: !anything ''
        total_failed_items: 0
      error: !anyint ''
    status_code: 200

Errors:
E   tavern.util.exceptions.TestFailError: Test 'Request manager configuration validation (Allow)' failed:
    - Status code was 500, expected 200
    - Structure of returned data was different than expected  - Extra keys in response: {'detail', 'title', 'dapi_errors'} - Keys missing from response: {'data'} (expected = '{'error': <tavern.util.loader.IntSentinel object at 0x7fdc97df4130>, 'data': {'affected_items': <tavern.util.loader.AnythingSentinel object at 0x7fdc98690700>, 'total_failed_items': 0}}' (type = <class 'dict'>), actual = '{'title': 'Wazuh Internal Error', 'detail': 'Timeout executing API request', 'dapi_errors': {'master-node': {'error': 'Timeout executing API request', 'logfile': 'WAZUH_HOME/logs/api.log'}}, 'error': 3021}' (type = <class 'dict'>))
------------------------------ Captured log call -------------------------------
ERROR    tavern.response.base:base.py:43 Status code was 500, expected 200
ERROR    tavern.response.base:base.py:41 Structure of returned data was different than expected  - Extra keys in response: {'detail', 'title', 'dapi_errors'} - Keys missing from response: {'data'} (expected = '{'error': <tavern.util.loader.IntSentinel object at 0x7fdc97df4130>, 'data': {'affected_items': <tavern.util.loader.AnythingSentinel object at 0x7fdc98690700>, 'total_failed_items': 0}}' (type = <class 'dict'>), actual = '{'title': 'Wazuh Internal Error', 'detail': 'Timeout executing API request', 'dapi_errors': {'master-node': {'error': 'Timeout executing API request', 'logfile': 'WAZUH_HOME/logs/api.log'}}, 'error': 3021}' (type = <class 'dict'>))
Traceback (most recent call last):
  File "/home/ubuntu/.local/lib/python3.10/site-packages/tavern/util/dict_util.py", line 406, in check_keys_match_recursive
    assert actual_val == expected_val
AssertionError: assert {'dapi_errors...ternal Error'} == {'data': {'af...7fdc97df4130>}
  Differing items:
  {'error': 3021} != {'error': <tavern.util.loader.IntSentinel object at 0x7fdc97df4130>}
  Left contains 3 more items:
  {'dapi_errors': {'master-node': {'error': 'Timeout executing API request',
                                   'logfile': 'WAZUH_HOME/logs/api.log'}},
   'detail': 'Timeout executing API request',
   'title': 'Wazuh Internal Error'}...
  
  ...Full output truncated (14 lines hidden), use '-vv' to show

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/home/ubuntu/.local/lib/python3.10/site-packages/tavern/response/base.py", line 97, in recurse_check_key_match
    check_keys_match_recursive(expected_block, block, [], strict)
  File "/home/ubuntu/.local/lib/python3.10/site-packages/tavern/util/dict_util.py", line 449, in check_keys_match_recursive
    raise exceptions.KeyMismatchError(full_msg) from e
tavern.util.exceptions.KeyMismatchError: Structure of returned data was different than expected  - Extra keys in response: {'detail', 'title', 'dapi_errors'} - Keys missing from response: {'data'} (expected = '{'error': <tavern.util.loader.IntSentinel object at 0x7fdc97df4130>, 'data': {'affected_items': <tavern.util.loader.AnythingSentinel object at 0x7fdc98690700>, 'total_failed_items': 0}}' (type = <class 'dict'>), actual = '{'title': 'Wazuh Internal Error', 'detail': 'Timeout executing API request', 'dapi_errors': {'master-node': {'error': 'Timeout executing API request', 'logfile': 'WAZUH_HOME/logs/api.log'}}, 'error': 3021}' (type = <class 'dict'>))

Just to test, some test also fails. Results 4.13.0: archive413.zip

@jnasselle
Copy link
Member

jnasselle commented Mar 14, 2025

Version check

Installation with sources - x86_64 🟢
make -C src/ -j  INSTALLDIR=/var/ossec PYTHON_SOURCE=y OPTIMIZE_CPYTHON=y TARGET=server deps
./install.sh
.
.
.
running install_scripts
copying build/scripts-3.10/2to3-3.10 -> /var/ossec/framework/python/bin
copying build/scripts-3.10/pydoc3.10 -> /var/ossec/framework/python/bin
copying build/scripts-3.10/idle3.10 -> /var/ossec/framework/python/bin
changing mode of /var/ossec/framework/python/bin/2to3-3.10 to 755
changing mode of /var/ossec/framework/python/bin/pydoc3.10 to 755
changing mode of /var/ossec/framework/python/bin/idle3.10 to 755
rm /var/ossec/framework/python/lib/python3.10/lib-dynload/_sysconfigdata__linux_x86_64-linux-gnu.py
rm -r /var/ossec/framework/python/lib/python3.10/lib-dynload/__pycache__
Creating directory /var/ossec/framework/python/share/man
Creating directory /var/ossec/framework/python/share/man/man1
/usr/bin/install -c -m 644 ./Misc/python.man \
        /var/ossec/framework/python/share/man/man1/python3.10.1
if test ! -d /var/ossec/framework/python/lib/pkgconfig; then \
        echo "Creating directory /var/ossec/framework/python/lib/pkgconfig"; \
        /usr/bin/install -c -d -m 755 /var/ossec/framework/python/lib/pkgconfig; \
fi
if test -f /var/ossec/framework/python/bin/python3 -o -h /var/ossec/framework/python/bin/python3; \
then rm -f /var/ossec/framework/python/bin/python3; \
else true; \
fi
(cd /var/ossec/framework/python/bin; ln -s python3.10 python3)
if test "3.10" != "3.10"; then \
        rm -f /var/ossec/framework/python/bin/python3.10-config; \
        (cd /var/ossec/framework/python/bin; ln -s python3.10-config python3.10-config); \
        rm -f /var/ossec/framework/python/lib/pkgconfig/python-3.10.pc; \
        (cd /var/ossec/framework/python/lib/pkgconfig; ln -s python-3.10.pc python-3.10.pc); \
        rm -f /var/ossec/framework/python/lib/pkgconfig/python-3.10-embed.pc; \
        (cd /var/ossec/framework/python/lib/pkgconfig; ln -s python-3.10-embed.pc python-3.10-embed.pc); \
fi
rm -f /var/ossec/framework/python/bin/python3-config
(cd /var/ossec/framework/python/bin; ln -s python3.10-config python3-config)
rm -f /var/ossec/framework/python/lib/pkgconfig/python3.pc
(cd /var/ossec/framework/python/lib/pkgconfig; ln -s python-3.10.pc python3.pc)
rm -f /var/ossec/framework/python/lib/pkgconfig/python3-embed.pc
(cd /var/ossec/framework/python/lib/pkgconfig; ln -s python-3.10-embed.pc python3-embed.pc)
rm -f /var/ossec/framework/python/bin/idle3
(cd /var/ossec/framework/python/bin; ln -s idle3.10 idle3)
rm -f /var/ossec/framework/python/bin/pydoc3
(cd /var/ossec/framework/python/bin; ln -s pydoc3.10 pydoc3)
rm -f /var/ossec/framework/python/bin/2to3
(cd /var/ossec/framework/python/bin; ln -s 2to3-3.10 2to3)
if test "x" != "x" ; then \
        rm -f /var/ossec/framework/python/bin/python3-32; \
        (cd /var/ossec/framework/python/bin; ln -s python3.10-32 python3-32) \
fi
if test "x" != "x" ; then \
        rm -f /var/ossec/framework/python/bin/python3-intel64; \
        (cd /var/ossec/framework/python/bin; ln -s python3.10-intel64 python3-intel64) \
fi
rm -f /var/ossec/framework/python/share/man/man1/python3.1
(cd /var/ossec/framework/python/share/man/man1; ln -s python3.10.1 python3.1)
if test "xupgrade" != "xno"  ; then \
        case upgrade in \
                upgrade) ensurepip="--upgrade" ;; \
                install|*) ensurepip="" ;; \
        esac; \
        LD_LIBRARY_PATH=/wazuh/src/external/cpython:/wazuh/src ./python -E -m ensurepip \
                $ensurepip --root=/ ; \
fi
Looking in links: /tmp/tmpspvh1wh6
Processing /tmp/tmpspvh1wh6/setuptools-65.5.1-py3-none-any.whl
Processing /tmp/tmpspvh1wh6/pip-23.3.2-py3-none-any.whl
Installing collected packages: setuptools, pip
  WARNING: The scripts pip3 and pip3.10 are installed in '/var/ossec/framework/python/bin' which is not on PATH.
  Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
Successfully installed pip-23.3.2 setuptools-65.5.1
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
make[1]: Leaving directory '/root/repos/wazuh/src/external/cpython'
find /var/ossec/framework/python -name "*libpython3.10.so.1.0" -exec ln -f {} /var/ossec/lib/libpython3.10.so.1.0 \;
/var/ossec/framework/python/bin/python3 -m pip install --upgrade pip --index-url=file:///root/repos/wazuh/src/external/cpython//Dependencies/simple
Looking in indexes: file:///root/repos/wazuh/src/external/cpython//Dependencies/simple
Requirement already satisfied: pip in /var/ossec/framework/python/lib/python3.10/site-packages (23.3.2)
WARNING: Location 'file:///root/repos/wazuh/src/external/cpython//Dependencies/simple/pip/' is ignored: it is neither a file nor a directory.
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
LD_LIBRARY_PATH="/var/ossec/lib" LDFLAGS="-L/var/ossec/lib" /var/ossec/framework/python/bin/pip3 install -r ../framework/requirements.txt  --index-url=file:///root/repos/wazuh/src/external/cpython//Dependencies/simple
Looking in indexes: file:///root/repos/wazuh/src/external/cpython//Dependencies/simple
Processing ./external/cpython/Dependencies/simple/anyio/anyio-4.1.0-py3-none-any.whl (from -r ../framework/requirements.txt (line 1))
Processing ./external/cpython/Dependencies/simple/asgiref/asgiref-3.7.2-py3-none-any.whl (from -r ../framework/requirements.txt (line 2))
Processing ./external/cpython/Dependencies/simple/attrs/attrs-23.1.0-py3-none-any.whl (from -r ../framework/requirements.txt (line 3))
Processing ./external/cpython/Dependencies/simple/azure-core/azure_core-1.30.2-py3-none-any.whl (from -r ../framework/requirements.txt (line 4))
Processing ./external/cpython/Dependencies/simple/azure-storage-blob/azure_storage_blob-12.20.0-py3-none-any.whl (from -r ../framework/requirements.txt (line 5))
Processing ./external/cpython/Dependencies/simple/boto3/boto3-1.34.135-py3-none-any.whl (from -r ../framework/requirements.txt (line 6))
Processing ./external/cpython/Dependencies/simple/botocore/botocore-1.34.135-py3-none-any.whl (from -r ../framework/requirements.txt (line 7))
Processing ./external/cpython/Dependencies/simple/cachetools/cachetools-4.1.0-py3-none-any.whl (from -r ../framework/requirements.txt (line 8))
Processing ./external/cpython/Dependencies/simple/certifi/certifi-2024.7.4-py3-none-any.whl (from -r ../framework/requirements.txt (line 9))
Processing ./external/cpython/Dependencies/simple/cffi/cffi-1.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from -r ../framework/requirements.txt (line 10))
Processing ./external/cpython/Dependencies/simple/chardet/chardet-3.0.4-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 11))
Processing ./external/cpython/Dependencies/simple/charset-normalizer/charset_normalizer-2.0.4-py3-none-any.whl (from -r ../framework/requirements.txt (line 12))
Processing ./external/cpython/Dependencies/simple/click/click-8.1.3-py3-none-any.whl (from -r ../framework/requirements.txt (line 13))
Processing ./external/cpython/Dependencies/simple/clickclick/clickclick-20.10.2-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 14))
Processing ./external/cpython/Dependencies/simple/connexion/connexion-3.1.0-py3-none-any.whl (from -r ../framework/requirements.txt (line 15))
Processing ./external/cpython/Dependencies/simple/content-size-limit-asgi/content_size_limit_asgi-0.1.5-py3-none-any.whl (from -r ../framework/requirements.txt (line 16))
Processing ./external/cpython/Dependencies/simple/cryptography/cryptography-44.0.1-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from -r ../framework/requirements.txt (line 17))
Processing ./external/cpython/Dependencies/simple/cython/Cython-0.29.36-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 18))
Processing ./external/cpython/Dependencies/simple/defusedxml/defusedxml-0.6.0-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 19))
Processing ./external/cpython/Dependencies/simple/docker/docker-7.1.0-py3-none-any.whl (from -r ../framework/requirements.txt (line 20))
Processing ./external/cpython/Dependencies/simple/docker-pycreds/docker_pycreds-0.4.0-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 21))
Processing ./external/cpython/Dependencies/simple/docutils/docutils-0.15.2-py3-none-any.whl (from -r ../framework/requirements.txt (line 22))
Processing ./external/cpython/Dependencies/simple/exceptiongroup/exceptiongroup-1.2.0-py3-none-any.whl (from -r ../framework/requirements.txt (line 23))
Processing ./external/cpython/Dependencies/simple/frozenlist/frozenlist-1.2.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (from -r ../framework/requirements.txt (line 24))
Processing ./external/cpython/Dependencies/simple/future/future-0.18.3-py3-none-any.whl (from -r ../framework/requirements.txt (line 25))
Processing ./external/cpython/Dependencies/simple/google-api-core/google_api_core-1.30.0-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 26))
Processing ./external/cpython/Dependencies/simple/googleapis-common-protos/googleapis_common_protos-1.51.0-py3-none-any.whl (from -r ../framework/requirements.txt (line 27))
Processing ./external/cpython/Dependencies/simple/google-auth/google_auth-1.28.0-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 28))
Processing ./external/cpython/Dependencies/simple/google-cloud-core/google_cloud_core-1.7.1-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 29))
Processing ./external/cpython/Dependencies/simple/google-cloud-pubsub/google_cloud_pubsub-2.7.1-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 30))
Processing ./external/cpython/Dependencies/simple/google-cloud-storage/google_cloud_storage-1.39.0-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 31))
Processing ./external/cpython/Dependencies/simple/google-crc32c/google_crc32c-1.1.2-py3-none-any.whl (from -r ../framework/requirements.txt (line 32))
Processing ./external/cpython/Dependencies/simple/google-resumable-media/google_resumable_media-1.3.1-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 33))
Processing ./external/cpython/Dependencies/simple/greenlet/greenlet-2.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from -r ../framework/requirements.txt (line 34))
Processing ./external/cpython/Dependencies/simple/grpc-google-iam-v1/grpc_google_iam_v1-0.12.3-py3-none-any.whl (from -r ../framework/requirements.txt (line 35))
Processing ./external/cpython/Dependencies/simple/grpcio/grpcio-1.58.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from -r ../framework/requirements.txt (line 36))
Processing ./external/cpython/Dependencies/simple/httpcore/httpcore-1.0.2-py3-none-any.whl (from -r ../framework/requirements.txt (line 37))
Processing ./external/cpython/Dependencies/simple/httpx/httpx-0.26.0-py3-none-any.whl (from -r ../framework/requirements.txt (line 38))
Processing ./external/cpython/Dependencies/simple/h11/h11-0.14.0-py3-none-any.whl (from -r ../framework/requirements.txt (line 39))
Processing ./external/cpython/Dependencies/simple/idna/idna-3.7-py3-none-any.whl (from -r ../framework/requirements.txt (line 40))
Processing ./external/cpython/Dependencies/simple/inflection/inflection-0.3.1-py3-none-any.whl (from -r ../framework/requirements.txt (line 41))
Processing ./external/cpython/Dependencies/simple/isodate/isodate-0.6.1-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 42))
Processing ./external/cpython/Dependencies/simple/jinja2/jinja2-3.1.4-py3-none-any.whl (from -r ../framework/requirements.txt (line 43))
Processing ./external/cpython/Dependencies/simple/jmespath/jmespath-0.9.5-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 44))
Processing ./external/cpython/Dependencies/simple/jsonschema/jsonschema-4.20.0-py3-none-any.whl (from -r ../framework/requirements.txt (line 45))
Processing ./external/cpython/Dependencies/simple/jsonschema-path/jsonschema_path-0.3.2-py3-none-any.whl (from -r ../framework/requirements.txt (line 46))
Processing ./external/cpython/Dependencies/simple/jsonschema-specifications/jsonschema_specifications-2023.11.2-py3-none-any.whl (from -r ../framework/requirements.txt (line 47))
Processing ./external/cpython/Dependencies/simple/lazy-object-proxy/lazy_object_proxy-1.10.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from -r ../framework/requirements.txt (line 48))
Processing ./external/cpython/Dependencies/simple/libcst/libcst-0.3.20-py3-none-any.whl (from -r ../framework/requirements.txt (line 49))
Processing ./external/cpython/Dependencies/simple/markupsafe/MarkupSafe-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from -r ../framework/requirements.txt (line 50))
Processing ./external/cpython/Dependencies/simple/more-itertools/more_itertools-8.2.0-py3-none-any.whl (from -r ../framework/requirements.txt (line 51))
Processing ./external/cpython/Dependencies/simple/multidict/multidict-5.2.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (from -r ../framework/requirements.txt (line 52))
Processing ./external/cpython/Dependencies/simple/mypy-extensions/mypy_extensions-0.4.3-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 53))
Processing ./external/cpython/Dependencies/simple/numpy/numpy-1.26.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from -r ../framework/requirements.txt (line 54))
Processing ./external/cpython/Dependencies/simple/openapi-schema-validator/openapi_schema_validator-0.6.2-py3-none-any.whl (from -r ../framework/requirements.txt (line 55))
Processing ./external/cpython/Dependencies/simple/openapi-spec-validator/openapi_spec_validator-0.7.1-py3-none-any.whl (from -r ../framework/requirements.txt (line 56))
Processing ./external/cpython/Dependencies/simple/packaging/packaging-20.9-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 57))
Processing ./external/cpython/Dependencies/simple/pathable/pathable-0.4.3-py3-none-any.whl (from -r ../framework/requirements.txt (line 58))
Processing ./external/cpython/Dependencies/simple/pathlib/pathlib-1.0.1-py3-none-any.whl (from -r ../framework/requirements.txt (line 59))
Processing ./external/cpython/Dependencies/simple/protobuf/protobuf-3.19.6-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 60))
Processing ./external/cpython/Dependencies/simple/proto-plus/proto_plus-1.19.0-py3-none-any.whl (from -r ../framework/requirements.txt (line 61))
Processing ./external/cpython/Dependencies/simple/pyarrow/pyarrow-14.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from -r ../framework/requirements.txt (line 62))
Processing ./external/cpython/Dependencies/simple/psutil/psutil-5.9.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from -r ../framework/requirements.txt (line 63))
Processing ./external/cpython/Dependencies/simple/pyasn1/pyasn1-0.4.8-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 64))
Processing ./external/cpython/Dependencies/simple/pyasn1-modules/pyasn1_modules-0.2.8-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 65))
Processing ./external/cpython/Dependencies/simple/pycparser/pycparser-2.21-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 66))
Processing ./external/cpython/Dependencies/simple/pyjwt/PyJWT-2.8.0-py3-none-any.whl (from -r ../framework/requirements.txt (line 67))
Processing ./external/cpython/Dependencies/simple/pyparsing/pyparsing-2.4.7-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 68))
Processing ./external/cpython/Dependencies/simple/python-dateutil/python_dateutil-2.8.1-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 69))
Processing ./external/cpython/Dependencies/simple/python-json-logger/python_json_logger-2.0.2-py3-none-any.whl (from -r ../framework/requirements.txt (line 70))
Processing ./external/cpython/Dependencies/simple/python-multipart/python_multipart-0.0.20-py3-none-any.whl (from -r ../framework/requirements.txt (line 71))
Processing ./external/cpython/Dependencies/simple/pytz/pytz-2020.1-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 72))
Collecting PyYAML==5.4.1 (from -r ../framework/requirements.txt (line 73))
  Using cached PyYAML-5.4.1-cp310-cp310-linux_x86_64.whl
Processing ./external/cpython/Dependencies/simple/referencing/referencing-0.31.1-py3-none-any.whl (from -r ../framework/requirements.txt (line 74))
Processing ./external/cpython/Dependencies/simple/requests/requests-2.32.2-py3-none-any.whl (from -r ../framework/requirements.txt (line 75))
Processing ./external/cpython/Dependencies/simple/rfc3339-validator/rfc3339_validator-0.1.4-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 76))
Processing ./external/cpython/Dependencies/simple/rpds-py/rpds_py-0.15.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from -r ../framework/requirements.txt (line 77))
Processing ./external/cpython/Dependencies/simple/rsa/rsa-4.7.2-py3-none-any.whl (from -r ../framework/requirements.txt (line 78))
Processing ./external/cpython/Dependencies/simple/s3transfer/s3transfer-0.10.2-py3-none-any.whl (from -r ../framework/requirements.txt (line 79))
Processing ./external/cpython/Dependencies/simple/secure/secure-0.3.0-py3-none-any.whl (from -r ../framework/requirements.txt (line 80))
Processing ./external/cpython/Dependencies/simple/six/six-1.16.0-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 81))
Processing ./external/cpython/Dependencies/simple/sniffio/sniffio-1.3.0-py3-none-any.whl (from -r ../framework/requirements.txt (line 82))
Processing ./external/cpython/Dependencies/simple/sqlalchemy/SQLAlchemy-2.0.23-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from -r ../framework/requirements.txt (line 83))
Processing ./external/cpython/Dependencies/simple/starlette/starlette-0.42.0-py3-none-any.whl (from -r ../framework/requirements.txt (line 84))
Processing ./external/cpython/Dependencies/simple/tabulate/tabulate-0.8.9-py3-none-any.whl (from -r ../framework/requirements.txt (line 85))
Processing ./external/cpython/Dependencies/simple/typing-extensions/typing_extensions-4.12.2-py3-none-any.whl (from -r ../framework/requirements.txt (line 86))
Processing ./external/cpython/Dependencies/simple/typing-inspect/typing_inspect-0.7.1-py3-none-any.whl (from -r ../framework/requirements.txt (line 87))
Processing ./external/cpython/Dependencies/simple/urllib3/urllib3-2.2.2-py3-none-any.whl (from -r ../framework/requirements.txt (line 88))
Processing ./external/cpython/Dependencies/simple/uvloop/uvloop-0.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from -r ../framework/requirements.txt (line 89))
Processing ./external/cpython/Dependencies/simple/uvicorn/uvicorn-0.31.0-py3-none-any.whl (from -r ../framework/requirements.txt (line 90))
Processing ./external/cpython/Dependencies/simple/websocket-client/websocket_client-0.57.0-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 91))
Processing ./external/cpython/Dependencies/simple/werkzeug/werkzeug-3.1.3-py3-none-any.whl (from -r ../framework/requirements.txt (line 92))
Processing ./external/cpython/Dependencies/simple/xmltodict/xmltodict-0.12.0-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 93))
Processing ./external/cpython/Dependencies/simple/yarl/yarl-1.7.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (from -r ../framework/requirements.txt (line 94))
Requirement already satisfied: setuptools>=40.3.0 in /var/ossec/framework/python/lib/python3.10/site-packages (from google-api-core==1.30.0->-r ../framework/requirements.txt (line 26)) (65.5.1)
Installing collected packages: tabulate, pytz, pyasn1, pathlib, mypy-extensions, jmespath, inflection, chardet, xmltodict, uvloop, urllib3, typing-extensions, sniffio, six, secure, rsa, rpds-py, PyYAML, python-multipart, python-json-logger, pyparsing, PyJWT, pycparser, pyasn1-modules, psutil, protobuf, pathable, numpy, multidict, more-itertools, MarkupSafe, lazy-object-proxy, idna, h11, grpcio, greenlet, google-crc32c, future, frozenlist, exceptiongroup, docutils, defusedxml, Cython, content-size-limit-asgi, click, charset-normalizer, certifi, cachetools, attrs, yarl, Werkzeug, websocket-client, uvicorn, typing-inspect, SQLAlchemy, rfc3339-validator, requests, referencing, python-dateutil, pyarrow, proto-plus, packaging, Jinja2, isodate, httpcore, googleapis-common-protos, google-resumable-media, google-auth, docker-pycreds, clickclick, cffi, asgiref, anyio, starlette, libcst, jsonschema-specifications, jsonschema-path, httpx, google-api-core, docker, cryptography, botocore, azure-core, s3transfer, jsonschema, grpc-google-iam-v1, google-cloud-core, azure-storage-blob, openapi-schema-validator, google-cloud-storage, google-cloud-pubsub, connexion, boto3, openapi-spec-validator
Successfully installed Cython-0.29.36 Jinja2-3.1.4 MarkupSafe-2.1.2 PyJWT-2.8.0 PyYAML-5.4.1 SQLAlchemy-2.0.23 Werkzeug-3.1.3 anyio-4.1.0 asgiref-3.7.2 attrs-23.1.0 azure-core-1.30.2 azure-storage-blob-12.20.0 boto3-1.34.135 botocore-1.34.135 cachetools-4.1.0 certifi-2024.7.4 cffi-1.15.1 chardet-3.0.4 charset-normalizer-2.0.4 click-8.1.3 clickclick-20.10.2 connexion-3.1.0 content-size-limit-asgi-0.1.5 cryptography-44.0.1 defusedxml-0.6.0 docker-7.1.0 docker-pycreds-0.4.0 docutils-0.15.2 exceptiongroup-1.2.0 frozenlist-1.2.0 future-0.18.3 google-api-core-1.30.0 google-auth-1.28.0 google-cloud-core-1.7.1 google-cloud-pubsub-2.7.1 google-cloud-storage-1.39.0 google-crc32c-1.1.2 google-resumable-media-1.3.1 googleapis-common-protos-1.51.0 greenlet-2.0.2 grpc-google-iam-v1-0.12.3 grpcio-1.58.0 h11-0.14.0 httpcore-1.0.2 httpx-0.26.0 idna-3.7 inflection-0.3.1 isodate-0.6.1 jmespath-0.9.5 jsonschema-4.20.0 jsonschema-path-0.3.2 jsonschema-specifications-2023.11.2 lazy-object-proxy-1.10.0 libcst-0.3.20 more-itertools-8.2.0 multidict-5.2.0 mypy-extensions-0.4.3 numpy-1.26.0 openapi-schema-validator-0.6.2 openapi-spec-validator-0.7.1 packaging-20.9 pathable-0.4.3 pathlib-1.0.1 proto-plus-1.19.0 protobuf-3.19.6 psutil-5.9.0 pyarrow-14.0.1 pyasn1-0.4.8 pyasn1-modules-0.2.8 pycparser-2.21 pyparsing-2.4.7 python-dateutil-2.8.1 python-json-logger-2.0.2 python-multipart-0.0.20 pytz-2020.1 referencing-0.31.1 requests-2.32.2 rfc3339-validator-0.1.4 rpds-py-0.15.2 rsa-4.7.2 s3transfer-0.10.2 secure-0.3.0 six-1.16.0 sniffio-1.3.0 starlette-0.42.0 tabulate-0.8.9 typing-extensions-4.12.2 typing-inspect-0.7.1 urllib3-2.2.2 uvicorn-0.31.0 uvloop-0.17.0 websocket-client-0.57.0 xmltodict-0.12.0 yarl-1.7.0
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
cd ../framework && /var/ossec/framework/python/bin/python3 -m pip install . --use-pep517 --prefix=/var/ossec/framework/python && rm -rf build/
Processing /root/repos/wazuh/framework
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Preparing metadata (pyproject.toml) ... done
Building wheels for collected packages: wazuh
  Building wheel for wazuh (pyproject.toml) ... done
  Created wheel for wazuh: filename=wazuh-4.13.0-py3-none-any.whl size=312970 sha256=6a843dc06eb1f9010e8b3c02cb3709a21561c834cdc5f671b0d4f72ba73bb1bc
  Stored in directory: /tmp/pip-ephem-wheel-cache-mxx6h2pt/wheels/79/99/7a/4f717dda21792c1184b4e159e9217b15133f8e634924627551
Successfully built wazuh
Installing collected packages: wazuh
Successfully installed wazuh-4.13.0
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
chown -R root:wazuh /var/ossec/framework/python
chmod -R o=- /var/ossec/framework/python
cd ../api && /var/ossec/framework/python/bin/python3 -m pip install . --use-pep517 --prefix=/var/ossec/framework/python && rm -rf build/
Processing /root/repos/wazuh/api
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Preparing metadata (pyproject.toml) ... done
Building wheels for collected packages: api
  Building wheel for api (pyproject.toml) ... done
  Created wheel for api: filename=api-4.13.0-py3-none-any.whl size=163270 sha256=b30692c9fa1b6f2048082eff31b428af6ef9ff9a490c12a65daec5bff7722122
  Stored in directory: /tmp/pip-ephem-wheel-cache-gkklsvhh/wheels/97/bc/0a/7b8acaa0bd6aaf49450fdb11db6eb5235ff9962f26c9dd1096
Successfully built api
Installing collected packages: api
Successfully installed api-4.13.0
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
cd ../tools/mitre && /var/ossec/framework/python/bin/python3 mitredb.py -d /var/ossec/var/db/mitre.db
Generating self-signed certificate for wazuh-authd...


Starting Wazuh...
server

 - Configuration finished properly.

 - To start Wazuh:
      /var/ossec/bin/wazuh-control start

 - To stop Wazuh:
      /var/ossec/bin/wazuh-control stop

 - The configuration can be viewed or modified at /var/ossec/etc/ossec.conf


   Thanks for using Wazuh.
   Please don't hesitate to contact us if you need help or find
   any bugs.

   Use our public Mailing List at:
          https://groups.google.com/forum/#!forum/wazuh

   More information can be found at:
          - http://www.wazuh.com

    ---  Press ENTER to finish (maybe more information below). ---

 - In order to connect agent and server, you need to add each agent to the server.

   More information at: 
   https://documentation.wazuh.com/

root@wazuh-dev:~/repos/wazuh# 
root@wazuh-dev:~/repos/wazuh# 
root@wazuh-dev:~/repos/wazuh# /var/ossec/framework/
python/  scripts/ wazuh/   
root@wazuh-dev:~/repos/wazuh# /var/ossec/framework/python/bin/python3 --version
Python 3.10.16
root@wazuh-dev:~/repos/wazuh# /var/ossec/framework/python/bin/pip3 freeze
anyio==4.1.0
api @ file:///root/repos/wazuh/api
asgiref==3.7.2
attrs==23.1.0
azure-core==1.30.2
azure-storage-blob==12.20.0
boto3==1.34.135
botocore==1.34.135
cachetools==4.1.0
certifi==2024.7.4
cffi==1.15.1
chardet==3.0.4
charset-normalizer==2.0.4
click==8.1.3
clickclick==20.10.2
connexion==3.1.0
content-size-limit-asgi==0.1.5
cryptography==44.0.1
Cython==0.29.36
defusedxml==0.6.0
docker==7.1.0
docker-pycreds==0.4.0
dockerpty==0.4.1
docutils==0.15.2
exceptiongroup==1.2.0
frozenlist==1.2.0
future==0.18.3
google-api-core==1.30.0
google-auth==1.28.0
google-cloud-core==1.7.1
google-cloud-pubsub==2.7.1
google-cloud-storage==1.39.0
google-crc32c==1.1.2
google-resumable-media==1.3.1
googleapis-common-protos==1.51.0
greenlet==2.0.2
grpc-google-iam-v1==0.12.3
grpcio==1.58.0
h11==0.14.0
httpcore==1.0.2
httpx==0.26.0
idna==3.7
inflection==0.3.1
isodate==0.6.1
Jinja2==3.1.4
jmespath==0.9.5
jsonschema==4.20.0
jsonschema-path==0.3.2
jsonschema-specifications==2023.11.2
lazy-object-proxy==1.10.0
libcst==0.3.20
MarkupSafe==2.1.2
more-itertools==8.2.0
multidict==5.2.0
mypy-extensions==0.4.3
numpy==1.26.0
openapi-schema-validator==0.6.2
openapi-spec-validator==0.7.1
packaging==20.9
pathable==0.4.3
pathlib==1.0.1
proto-plus==1.19.0
protobuf==3.19.6
psutil==5.9.0
pyarrow==14.0.1
pyasn1==0.4.8
pyasn1-modules==0.2.8
pycparser==2.21
PyJWT==2.8.0
pyparsing==2.4.7
python-dateutil==2.8.1
python-dotenv==0.21.1
python-json-logger==2.0.2
python-multipart==0.0.20
pytz==2020.1
PyYAML==5.4.1
referencing==0.31.1
requests==2.32.2
rfc3339-validator==0.1.4
rpds-py==0.15.2
rsa==4.7.2
s3transfer==0.10.2
secure==0.3.0
six==1.16.0
sniffio==1.3.0
SQLAlchemy==2.0.23
starlette==0.42.0
tabulate==0.8.9
texttable==1.6.7
typing-inspect==0.7.1
typing_extensions==4.12.2
urllib3==2.2.2
uvicorn==0.31.0
uvloop==0.17.0
wazuh @ file:///root/repos/wazuh/framework
websocket-client==0.57.0
Werkzeug==3.1.3
xmltodict==0.12.0
yarl==1.7.0
Installation with precompiled - x86_64 🟢
./install
.
.
.
Done building server

Wait for success...
success
Removing old SCA policies...
Installing SCA policies...
Installing additional SCA policies...
Makefile:2685: warning: overriding recipe for target 'win32/ui_resource.o'
Makefile:2625: warning: ignoring old recipe for target 'win32/ui_resource.o'
Makefile:2688: warning: overriding recipe for target 'win32/auth_resource.o'
Makefile:2628: warning: ignoring old recipe for target 'win32/auth_resource.o'
mkdir -p /var/ossec/framework/python
cp external/cpython.tar.gz /var/ossec/framework/python/cpython.tar.gz && tar -xf /var/ossec/framework/python/cpython.tar.gz -C /var/ossec/framework/python && rm -rf /var/ossec/framework/python/cpython.tar.gz
find /var/ossec/framework/python -name "*libpython3.10.so.1.0" -exec ln -f {} /var/ossec/lib/libpython3.10.so.1.0 \;
cd ../framework && /var/ossec/framework/python/bin/python3 -m pip install . --use-pep517 --prefix=/var/ossec/framework/python && rm -rf build/
Processing /root/repos/wazuh/framework
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Preparing metadata (pyproject.toml) ... done
Building wheels for collected packages: wazuh
  Building wheel for wazuh (pyproject.toml) ... done
  Created wheel for wazuh: filename=wazuh-4.13.0-py3-none-any.whl size=312970 sha256=994b0ac16dea2f16ded178b7f2fb6ba62d904b9f3b3931414ab565852112f6a7
  Stored in directory: /tmp/pip-ephem-wheel-cache-_p_2_dl3/wheels/79/99/7a/4f717dda21792c1184b4e159e9217b15133f8e634924627551
Successfully built wazuh
Installing collected packages: wazuh
  Attempting uninstall: wazuh
    Found existing installation: wazuh 4.13.0
    Uninstalling wazuh-4.13.0:
      Successfully uninstalled wazuh-4.13.0
Successfully installed wazuh-4.13.0
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
chown -R root:wazuh /var/ossec/framework/python
chmod -R o=- /var/ossec/framework/python
cd ../api && /var/ossec/framework/python/bin/python3 -m pip install . --use-pep517 --prefix=/var/ossec/framework/python && rm -rf build/
Processing /root/repos/wazuh/api
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Preparing metadata (pyproject.toml) ... done
Building wheels for collected packages: api
  Building wheel for api (pyproject.toml) ... done
  Created wheel for api: filename=api-4.13.0-py3-none-any.whl size=163270 sha256=0f42071531ba5c82e6c189a3b0c8d30dfbed7ccbdd9e6514508a3d266a0be487
  Stored in directory: /tmp/pip-ephem-wheel-cache-0ond1ya2/wheels/97/bc/0a/7b8acaa0bd6aaf49450fdb11db6eb5235ff9962f26c9dd1096
Successfully built api
Installing collected packages: api
  Attempting uninstall: api
    Found existing installation: api 4.13.0
    Uninstalling api-4.13.0:
      Successfully uninstalled api-4.13.0
Successfully installed api-4.13.0
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
cd ../tools/mitre && /var/ossec/framework/python/bin/python3 mitredb.py -d /var/ossec/var/db/mitre.db
Generating self-signed certificate for wazuh-authd...


Starting Wazuh...
server

 - Configuration finished properly.

 - To start Wazuh:
      /var/ossec/bin/wazuh-control start

 - To stop Wazuh:
      /var/ossec/bin/wazuh-control stop

 - The configuration can be viewed or modified at /var/ossec/etc/ossec.conf


   Thanks for using Wazuh.
   Please don't hesitate to contact us if you need help or find
   any bugs.

   Use our public Mailing List at:
          https://groups.google.com/forum/#!forum/wazuh

   More information can be found at:
          - http://www.wazuh.com

    ---  Press ENTER to finish (maybe more information below). ---

 - In order to connect agent and server, you need to add each agent to the server.

   More information at: 
   https://documentation.wazuh.com/



root@wazuh-dev:~/repos/wazuh# /var/ossec/framework/python/bin/python3 --version
Python 3.10.16
root@wazuh-dev:~/repos/wazuh# /var/ossec/framework/python/bin/pip3 freeze
anyio==4.1.0
api @ file:///root/repos/wazuh/api
asgiref==3.7.2
attrs==23.1.0
azure-core==1.30.2
azure-storage-blob==12.20.0
boto3==1.34.135
botocore==1.34.135
cachetools==4.1.0
certifi==2024.7.4
cffi==1.15.1
chardet==3.0.4
charset-normalizer==2.0.4
click==8.1.3
clickclick==20.10.2
connexion==3.1.0
content-size-limit-asgi==0.1.5
cryptography==44.0.1
Cython==0.29.36
defusedxml==0.6.0
docker==7.1.0
docker-pycreds==0.4.0
dockerpty==0.4.1
docutils==0.15.2
exceptiongroup==1.2.0
frozenlist==1.2.0
future==0.18.3
google-api-core==1.30.0
google-auth==1.28.0
google-cloud-core==1.7.1
google-cloud-pubsub==2.7.1
google-cloud-storage==1.39.0
google-crc32c==1.1.2
google-resumable-media==1.3.1
googleapis-common-protos==1.51.0
greenlet==2.0.2
grpc-google-iam-v1==0.12.3
grpcio==1.58.0
h11==0.14.0
httpcore==1.0.2
httpx==0.26.0
idna==3.7
inflection==0.3.1
isodate==0.6.1
Jinja2==3.1.4
jmespath==0.9.5
jsonschema==4.20.0
jsonschema-path==0.3.2
jsonschema-specifications==2023.11.2
lazy-object-proxy==1.10.0
libcst==0.3.20
MarkupSafe==2.1.2
more-itertools==8.2.0
multidict==5.2.0
mypy-extensions==0.4.3
numpy==1.26.0
openapi-schema-validator==0.6.2
openapi-spec-validator==0.7.1
packaging==20.9
pathable==0.4.3
pathlib==1.0.1
proto-plus==1.19.0
protobuf==3.19.6
psutil==5.9.0
pyarrow==14.0.1
pyasn1==0.4.8
pyasn1-modules==0.2.8
pycparser==2.21
PyJWT==2.8.0
pyparsing==2.4.7
python-dateutil==2.8.1
python-dotenv==0.21.1
python-json-logger==2.0.2
python-multipart==0.0.20
pytz==2020.1
PyYAML==5.4.1
referencing==0.31.1
requests==2.32.2
rfc3339-validator==0.1.4
rpds-py==0.15.2
rsa==4.7.2
s3transfer==0.10.2
secure==0.3.0
six==1.16.0
sniffio==1.3.0
SQLAlchemy==2.0.23
starlette==0.42.0
tabulate==0.8.9
texttable==1.6.7
typing-inspect==0.7.1
typing_extensions==4.12.2
urllib3==2.2.2
uvicorn==0.31.0
uvloop==0.17.0
wazuh @ file:///root/repos/wazuh/framework
websocket-client==0.57.0
Werkzeug==3.1.3
xmltodict==0.12.0
yarl==1.7.0
Installation with sources - aarch64 🟢
make -C src/ -j  INSTALLDIR=/var/ossec PYTHON_SOURCE=y OPTIMIZE_C^CTHON=y TARGET=server deps
./install
.
.
.
running install_scripts
copying build/scripts-3.10/pydoc3.10 -> /var/ossec/framework/python/bin
copying build/scripts-3.10/idle3.10 -> /var/ossec/framework/python/bin
copying build/scripts-3.10/2to3-3.10 -> /var/ossec/framework/python/bin
changing mode of /var/ossec/framework/python/bin/pydoc3.10 to 755
changing mode of /var/ossec/framework/python/bin/idle3.10 to 755
changing mode of /var/ossec/framework/python/bin/2to3-3.10 to 755
rm /var/ossec/framework/python/lib/python3.10/lib-dynload/_sysconfigdata__linux_aarch64-linux-gnu.py
rm -r /var/ossec/framework/python/lib/python3.10/lib-dynload/__pycache__
Creating directory /var/ossec/framework/python/share/man
Creating directory /var/ossec/framework/python/share/man/man1
/usr/bin/install -c -m 644 ./Misc/python.man \
	/var/ossec/framework/python/share/man/man1/python3.10.1
if test ! -d /var/ossec/framework/python/lib/pkgconfig; then \
	echo "Creating directory /var/ossec/framework/python/lib/pkgconfig"; \
	/usr/bin/install -c -d -m 755 /var/ossec/framework/python/lib/pkgconfig; \
fi
if test -f /var/ossec/framework/python/bin/python3 -o -h /var/ossec/framework/python/bin/python3; \
then rm -f /var/ossec/framework/python/bin/python3; \
else true; \
fi
(cd /var/ossec/framework/python/bin; ln -s python3.10 python3)
if test "3.10" != "3.10"; then \
	rm -f /var/ossec/framework/python/bin/python3.10-config; \
	(cd /var/ossec/framework/python/bin; ln -s python3.10-config python3.10-config); \
	rm -f /var/ossec/framework/python/lib/pkgconfig/python-3.10.pc; \
	(cd /var/ossec/framework/python/lib/pkgconfig; ln -s python-3.10.pc python-3.10.pc); \
	rm -f /var/ossec/framework/python/lib/pkgconfig/python-3.10-embed.pc; \
	(cd /var/ossec/framework/python/lib/pkgconfig; ln -s python-3.10-embed.pc python-3.10-embed.pc); \
fi
rm -f /var/ossec/framework/python/bin/python3-config
(cd /var/ossec/framework/python/bin; ln -s python3.10-config python3-config)
rm -f /var/ossec/framework/python/lib/pkgconfig/python3.pc
(cd /var/ossec/framework/python/lib/pkgconfig; ln -s python-3.10.pc python3.pc)
rm -f /var/ossec/framework/python/lib/pkgconfig/python3-embed.pc
(cd /var/ossec/framework/python/lib/pkgconfig; ln -s python-3.10-embed.pc python3-embed.pc)
rm -f /var/ossec/framework/python/bin/idle3
(cd /var/ossec/framework/python/bin; ln -s idle3.10 idle3)
rm -f /var/ossec/framework/python/bin/pydoc3
(cd /var/ossec/framework/python/bin; ln -s pydoc3.10 pydoc3)
rm -f /var/ossec/framework/python/bin/2to3
(cd /var/ossec/framework/python/bin; ln -s 2to3-3.10 2to3)
if test "x" != "x" ; then \
	rm -f /var/ossec/framework/python/bin/python3-32; \
	(cd /var/ossec/framework/python/bin; ln -s python3.10-32 python3-32) \
fi
if test "x" != "x" ; then \
	rm -f /var/ossec/framework/python/bin/python3-intel64; \
	(cd /var/ossec/framework/python/bin; ln -s python3.10-intel64 python3-intel64) \
fi
rm -f /var/ossec/framework/python/share/man/man1/python3.1
(cd /var/ossec/framework/python/share/man/man1; ln -s python3.10.1 python3.1)
if test "xupgrade" != "xno"  ; then \
	case upgrade in \
		upgrade) ensurepip="--upgrade" ;; \
		install|*) ensurepip="" ;; \
	esac; \
	LD_LIBRARY_PATH=/wazuh/src/external/cpython:/wazuh/src ./python -E -m ensurepip \
		$ensurepip --root=/ ; \
fi
Looking in links: /tmp/tmpo2zjvwwc
Processing /tmp/tmpo2zjvwwc/setuptools-65.5.1-py3-none-any.whl
Processing /tmp/tmpo2zjvwwc/pip-23.3.2-py3-none-any.whl
Installing collected packages: setuptools, pip
  WARNING: The scripts pip3 and pip3.10 are installed in '/var/ossec/framework/python/bin' which is not on PATH.
  Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
Successfully installed pip-23.3.2 setuptools-65.5.1
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
make[1]: Leaving directory '/wazuh/src/external/cpython'
find /var/ossec/framework/python -name "*libpython3.10.so.1.0" -exec ln -f {} /var/ossec/lib/libpython3.10.so.1.0 \;
/var/ossec/framework/python/bin/python3 -m pip install --upgrade pip --index-url=file:///wazuh/src/external/cpython//Dependencies/simple
Looking in indexes: file:///wazuh/src/external/cpython//Dependencies/simple
Requirement already satisfied: pip in /var/ossec/framework/python/lib/python3.10/site-packages (23.3.2)
WARNING: Location 'file:///wazuh/src/external/cpython//Dependencies/simple/pip/' is ignored: it is neither a file nor a directory.
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
WARNING: Location 'file:///wazuh/src/external/cpython//Dependencies/simple/pip/' is ignored: it is neither a file nor a directory.
LD_LIBRARY_PATH="/var/ossec/lib" LDFLAGS="-L/var/ossec/lib" /var/ossec/framework/python/bin/pip3 install -r ../framework/requirements.txt  --index-url=file:///wazuh/src/external/cpython//Dependencies/simple
Looking in indexes: file:///wazuh/src/external/cpython//Dependencies/simple
Processing ./external/cpython/Dependencies/simple/anyio/anyio-4.1.0-py3-none-any.whl (from -r ../framework/requirements.txt (line 1))
Processing ./external/cpython/Dependencies/simple/asgiref/asgiref-3.7.2-py3-none-any.whl (from -r ../framework/requirements.txt (line 2))
Processing ./external/cpython/Dependencies/simple/attrs/attrs-23.1.0-py3-none-any.whl (from -r ../framework/requirements.txt (line 3))
Processing ./external/cpython/Dependencies/simple/azure-core/azure_core-1.30.2-py3-none-any.whl (from -r ../framework/requirements.txt (line 4))
Processing ./external/cpython/Dependencies/simple/azure-storage-blob/azure_storage_blob-12.20.0-py3-none-any.whl (from -r ../framework/requirements.txt (line 5))
Processing ./external/cpython/Dependencies/simple/boto3/boto3-1.34.135-py3-none-any.whl (from -r ../framework/requirements.txt (line 6))
Processing ./external/cpython/Dependencies/simple/botocore/botocore-1.34.135-py3-none-any.whl (from -r ../framework/requirements.txt (line 7))
Processing ./external/cpython/Dependencies/simple/cachetools/cachetools-4.1.0-py3-none-any.whl (from -r ../framework/requirements.txt (line 8))
Processing ./external/cpython/Dependencies/simple/certifi/certifi-2024.7.4-py3-none-any.whl (from -r ../framework/requirements.txt (line 9))
Processing ./external/cpython/Dependencies/simple/cffi/cffi-1.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from -r ../framework/requirements.txt (line 10))
Processing ./external/cpython/Dependencies/simple/chardet/chardet-3.0.4-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 11))
Processing ./external/cpython/Dependencies/simple/charset-normalizer/charset_normalizer-2.0.4-py3-none-any.whl (from -r ../framework/requirements.txt (line 12))
Processing ./external/cpython/Dependencies/simple/click/click-8.1.3-py3-none-any.whl (from -r ../framework/requirements.txt (line 13))
Processing ./external/cpython/Dependencies/simple/clickclick/clickclick-20.10.2-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 14))
Processing ./external/cpython/Dependencies/simple/connexion/connexion-3.1.0-py3-none-any.whl (from -r ../framework/requirements.txt (line 15))
Processing ./external/cpython/Dependencies/simple/content-size-limit-asgi/content_size_limit_asgi-0.1.5-py3-none-any.whl (from -r ../framework/requirements.txt (line 16))
Processing ./external/cpython/Dependencies/simple/cryptography/cryptography-44.0.1-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from -r ../framework/requirements.txt (line 17))
Processing ./external/cpython/Dependencies/simple/cython/Cython-0.29.36-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 18))
Processing ./external/cpython/Dependencies/simple/defusedxml/defusedxml-0.6.0-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 19))
Processing ./external/cpython/Dependencies/simple/docker/docker-7.1.0-py3-none-any.whl (from -r ../framework/requirements.txt (line 20))
Processing ./external/cpython/Dependencies/simple/docker-pycreds/docker_pycreds-0.4.0-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 21))
Processing ./external/cpython/Dependencies/simple/docutils/docutils-0.15.2-py3-none-any.whl (from -r ../framework/requirements.txt (line 22))
Processing ./external/cpython/Dependencies/simple/exceptiongroup/exceptiongroup-1.2.0-py3-none-any.whl (from -r ../framework/requirements.txt (line 23))
Processing ./external/cpython/Dependencies/simple/frozenlist/frozenlist-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from -r ../framework/requirements.txt (line 24))
Processing ./external/cpython/Dependencies/simple/future/future-0.18.3-py3-none-any.whl (from -r ../framework/requirements.txt (line 25))
Processing ./external/cpython/Dependencies/simple/google-api-core/google_api_core-1.30.0-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 26))
Processing ./external/cpython/Dependencies/simple/googleapis-common-protos/googleapis_common_protos-1.51.0-py3-none-any.whl (from -r ../framework/requirements.txt (line 27))
Processing ./external/cpython/Dependencies/simple/google-auth/google_auth-1.28.0-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 28))
Processing ./external/cpython/Dependencies/simple/google-cloud-core/google_cloud_core-1.7.1-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 29))
Processing ./external/cpython/Dependencies/simple/google-cloud-pubsub/google_cloud_pubsub-2.7.1-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 30))
Processing ./external/cpython/Dependencies/simple/google-cloud-storage/google_cloud_storage-1.39.0-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 31))
Processing ./external/cpython/Dependencies/simple/google-crc32c/google_crc32c-1.1.2-py3-none-any.whl (from -r ../framework/requirements.txt (line 32))
Processing ./external/cpython/Dependencies/simple/google-resumable-media/google_resumable_media-1.3.1-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 33))
Processing ./external/cpython/Dependencies/simple/greenlet/greenlet-2.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from -r ../framework/requirements.txt (line 34))
Processing ./external/cpython/Dependencies/simple/grpc-google-iam-v1/grpc_google_iam_v1-0.12.3-py3-none-any.whl (from -r ../framework/requirements.txt (line 35))
Processing ./external/cpython/Dependencies/simple/grpcio/grpcio-1.58.0-cp310-cp310-manylinux_2_17_aarch64.whl (from -r ../framework/requirements.txt (line 36))
Processing ./external/cpython/Dependencies/simple/httpcore/httpcore-1.0.2-py3-none-any.whl (from -r ../framework/requirements.txt (line 37))
Processing ./external/cpython/Dependencies/simple/httpx/httpx-0.26.0-py3-none-any.whl (from -r ../framework/requirements.txt (line 38))
Processing ./external/cpython/Dependencies/simple/h11/h11-0.14.0-py3-none-any.whl (from -r ../framework/requirements.txt (line 39))
Processing ./external/cpython/Dependencies/simple/idna/idna-3.7-py3-none-any.whl (from -r ../framework/requirements.txt (line 40))
Processing ./external/cpython/Dependencies/simple/inflection/inflection-0.3.1-py3-none-any.whl (from -r ../framework/requirements.txt (line 41))
Processing ./external/cpython/Dependencies/simple/isodate/isodate-0.6.1-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 42))
Processing ./external/cpython/Dependencies/simple/jinja2/jinja2-3.1.4-py3-none-any.whl (from -r ../framework/requirements.txt (line 43))
Processing ./external/cpython/Dependencies/simple/jmespath/jmespath-0.9.5-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 44))
Processing ./external/cpython/Dependencies/simple/jsonschema/jsonschema-4.20.0-py3-none-any.whl (from -r ../framework/requirements.txt (line 45))
Processing ./external/cpython/Dependencies/simple/jsonschema-path/jsonschema_path-0.3.2-py3-none-any.whl (from -r ../framework/requirements.txt (line 46))
Processing ./external/cpython/Dependencies/simple/jsonschema-specifications/jsonschema_specifications-2023.11.2-py3-none-any.whl (from -r ../framework/requirements.txt (line 47))
Processing ./external/cpython/Dependencies/simple/lazy-object-proxy/lazy_object_proxy-1.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from -r ../framework/requirements.txt (line 48))
Processing ./external/cpython/Dependencies/simple/libcst/libcst-0.3.20-py3-none-any.whl (from -r ../framework/requirements.txt (line 49))
Processing ./external/cpython/Dependencies/simple/markupsafe/MarkupSafe-2.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from -r ../framework/requirements.txt (line 50))
Processing ./external/cpython/Dependencies/simple/more-itertools/more_itertools-8.2.0-py3-none-any.whl (from -r ../framework/requirements.txt (line 51))
Processing ./external/cpython/Dependencies/simple/multidict/multidict-5.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from -r ../framework/requirements.txt (line 52))
Processing ./external/cpython/Dependencies/simple/mypy-extensions/mypy_extensions-0.4.3-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 53))
Processing ./external/cpython/Dependencies/simple/numpy/numpy-1.26.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from -r ../framework/requirements.txt (line 54))
Processing ./external/cpython/Dependencies/simple/openapi-schema-validator/openapi_schema_validator-0.6.2-py3-none-any.whl (from -r ../framework/requirements.txt (line 55))
Processing ./external/cpython/Dependencies/simple/openapi-spec-validator/openapi_spec_validator-0.7.1-py3-none-any.whl (from -r ../framework/requirements.txt (line 56))
Processing ./external/cpython/Dependencies/simple/packaging/packaging-20.9-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 57))
Processing ./external/cpython/Dependencies/simple/pathable/pathable-0.4.3-py3-none-any.whl (from -r ../framework/requirements.txt (line 58))
Processing ./external/cpython/Dependencies/simple/pathlib/pathlib-1.0.1-py3-none-any.whl (from -r ../framework/requirements.txt (line 59))
Processing ./external/cpython/Dependencies/simple/protobuf/protobuf-3.19.6-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 60))
Processing ./external/cpython/Dependencies/simple/proto-plus/proto_plus-1.19.0-py3-none-any.whl (from -r ../framework/requirements.txt (line 61))
Processing ./external/cpython/Dependencies/simple/pyarrow/pyarrow-14.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from -r ../framework/requirements.txt (line 62))
Processing ./external/cpython/Dependencies/simple/psutil/psutil-5.9.0.tar.gz (from -r ../framework/requirements.txt (line 63))
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Preparing metadata (pyproject.toml) ... done
Processing ./external/cpython/Dependencies/simple/pyasn1/pyasn1-0.4.8-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 64))
Processing ./external/cpython/Dependencies/simple/pyasn1-modules/pyasn1_modules-0.2.8-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 65))
Processing ./external/cpython/Dependencies/simple/pycparser/pycparser-2.21-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 66))
Processing ./external/cpython/Dependencies/simple/pyjwt/PyJWT-2.8.0-py3-none-any.whl (from -r ../framework/requirements.txt (line 67))
Processing ./external/cpython/Dependencies/simple/pyparsing/pyparsing-2.4.7-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 68))
Processing ./external/cpython/Dependencies/simple/python-dateutil/python_dateutil-2.8.1-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 69))
Processing ./external/cpython/Dependencies/simple/python-json-logger/python_json_logger-2.0.2-py3-none-any.whl (from -r ../framework/requirements.txt (line 70))
Processing ./external/cpython/Dependencies/simple/python-multipart/python_multipart-0.0.20-py3-none-any.whl (from -r ../framework/requirements.txt (line 71))
Processing ./external/cpython/Dependencies/simple/pytz/pytz-2020.1-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 72))
Processing ./external/cpython/Dependencies/simple/pyyaml/PyYAML-5.4.1.tar.gz (from -r ../framework/requirements.txt (line 73))
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Preparing metadata (pyproject.toml) ... done
Processing ./external/cpython/Dependencies/simple/referencing/referencing-0.31.1-py3-none-any.whl (from -r ../framework/requirements.txt (line 74))
Processing ./external/cpython/Dependencies/simple/requests/requests-2.32.2-py3-none-any.whl (from -r ../framework/requirements.txt (line 75))
Processing ./external/cpython/Dependencies/simple/rfc3339-validator/rfc3339_validator-0.1.4-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 76))
Processing ./external/cpython/Dependencies/simple/rpds-py/rpds_py-0.15.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from -r ../framework/requirements.txt (line 77))
Processing ./external/cpython/Dependencies/simple/rsa/rsa-4.7.2-py3-none-any.whl (from -r ../framework/requirements.txt (line 78))
Processing ./external/cpython/Dependencies/simple/s3transfer/s3transfer-0.10.2-py3-none-any.whl (from -r ../framework/requirements.txt (line 79))
Processing ./external/cpython/Dependencies/simple/secure/secure-0.3.0-py3-none-any.whl (from -r ../framework/requirements.txt (line 80))
Processing ./external/cpython/Dependencies/simple/six/six-1.16.0-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 81))
Processing ./external/cpython/Dependencies/simple/sniffio/sniffio-1.3.0-py3-none-any.whl (from -r ../framework/requirements.txt (line 82))
Processing ./external/cpython/Dependencies/simple/sqlalchemy/SQLAlchemy-2.0.23-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from -r ../framework/requirements.txt (line 83))
Processing ./external/cpython/Dependencies/simple/starlette/starlette-0.42.0-py3-none-any.whl (from -r ../framework/requirements.txt (line 84))
Processing ./external/cpython/Dependencies/simple/tabulate/tabulate-0.8.9-py3-none-any.whl (from -r ../framework/requirements.txt (line 85))
Processing ./external/cpython/Dependencies/simple/typing-extensions/typing_extensions-4.12.2-py3-none-any.whl (from -r ../framework/requirements.txt (line 86))
Processing ./external/cpython/Dependencies/simple/typing-inspect/typing_inspect-0.7.1-py3-none-any.whl (from -r ../framework/requirements.txt (line 87))
Processing ./external/cpython/Dependencies/simple/urllib3/urllib3-2.2.2-py3-none-any.whl (from -r ../framework/requirements.txt (line 88))
Processing ./external/cpython/Dependencies/simple/uvloop/uvloop-0.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from -r ../framework/requirements.txt (line 89))
Processing ./external/cpython/Dependencies/simple/uvicorn/uvicorn-0.31.0-py3-none-any.whl (from -r ../framework/requirements.txt (line 90))
Processing ./external/cpython/Dependencies/simple/websocket-client/websocket_client-0.57.0-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 91))
Processing ./external/cpython/Dependencies/simple/werkzeug/werkzeug-3.1.3-py3-none-any.whl (from -r ../framework/requirements.txt (line 92))
Processing ./external/cpython/Dependencies/simple/xmltodict/xmltodict-0.12.0-py2.py3-none-any.whl (from -r ../framework/requirements.txt (line 93))
Processing ./external/cpython/Dependencies/simple/yarl/yarl-1.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from -r ../framework/requirements.txt (line 94))
Requirement already satisfied: setuptools>=40.3.0 in /var/ossec/framework/python/lib/python3.10/site-packages (from google-api-core==1.30.0->-r ../framework/requirements.txt (line 26)) (65.5.1)
Building wheels for collected packages: psutil, PyYAML
  Building wheel for psutil (pyproject.toml) ... done
  Created wheel for psutil: filename=psutil-5.9.0-cp310-cp310-linux_aarch64.whl size=284581 sha256=bdcb4b1d42ce16d2846f5724d0a70f54ee75df18614702058dd3b3dabbe2827a
  Stored in directory: /root/.cache/pip/wheels/27/45/80/acd8c2aa425ee41cb25660de3628e1e6e1e51c533a5cec6159
  Building wheel for PyYAML (pyproject.toml) ... done
  Created wheel for PyYAML: filename=PyYAML-5.4.1-cp310-cp310-linux_aarch64.whl size=45658 sha256=6378966ce85cff41050f1de76687dfe6fe218d613a97ad9d96c3b38a17f49a22
  Stored in directory: /root/.cache/pip/wheels/a4/9f/cb/48aa0ff1ac4b99bbb4095cc0a45b96178dc6510687fa67dab8
Successfully built psutil PyYAML
Installing collected packages: tabulate, pytz, pyasn1, pathlib, mypy-extensions, jmespath, inflection, chardet, xmltodict, uvloop, urllib3, typing-extensions, sniffio, six, secure, rsa, rpds-py, PyYAML, python-multipart, python-json-logger, pyparsing, PyJWT, pycparser, pyasn1-modules, psutil, protobuf, pathable, numpy, multidict, more-itertools, MarkupSafe, lazy-object-proxy, idna, h11, grpcio, greenlet, google-crc32c, future, frozenlist, exceptiongroup, docutils, defusedxml, Cython, content-size-limit-asgi, click, charset-normalizer, certifi, cachetools, attrs, yarl, Werkzeug, websocket-client, uvicorn, typing-inspect, SQLAlchemy, rfc3339-validator, requests, referencing, python-dateutil, pyarrow, proto-plus, packaging, Jinja2, isodate, httpcore, googleapis-common-protos, google-resumable-media, google-auth, docker-pycreds, clickclick, cffi, asgiref, anyio, starlette, libcst, jsonschema-specifications, jsonschema-path, httpx, google-api-core, docker, cryptography, botocore, azure-core, s3transfer, jsonschema, grpc-google-iam-v1, google-cloud-core, azure-storage-blob, openapi-schema-validator, google-cloud-storage, google-cloud-pubsub, connexion, boto3, openapi-spec-validator
Successfully installed Cython-0.29.36 Jinja2-3.1.4 MarkupSafe-2.1.2 PyJWT-2.8.0 PyYAML-5.4.1 SQLAlchemy-2.0.23 Werkzeug-3.1.3 anyio-4.1.0 asgiref-3.7.2 attrs-23.1.0 azure-core-1.30.2 azure-storage-blob-12.20.0 boto3-1.34.135 botocore-1.34.135 cachetools-4.1.0 certifi-2024.7.4 cffi-1.15.1 chardet-3.0.4 charset-normalizer-2.0.4 click-8.1.3 clickclick-20.10.2 connexion-3.1.0 content-size-limit-asgi-0.1.5 cryptography-44.0.1 defusedxml-0.6.0 docker-7.1.0 docker-pycreds-0.4.0 docutils-0.15.2 exceptiongroup-1.2.0 frozenlist-1.2.0 future-0.18.3 google-api-core-1.30.0 google-auth-1.28.0 google-cloud-core-1.7.1 google-cloud-pubsub-2.7.1 google-cloud-storage-1.39.0 google-crc32c-1.1.2 google-resumable-media-1.3.1 googleapis-common-protos-1.51.0 greenlet-2.0.2 grpc-google-iam-v1-0.12.3 grpcio-1.58.0 h11-0.14.0 httpcore-1.0.2 httpx-0.26.0 idna-3.7 inflection-0.3.1 isodate-0.6.1 jmespath-0.9.5 jsonschema-4.20.0 jsonschema-path-0.3.2 jsonschema-specifications-2023.11.2 lazy-object-proxy-1.10.0 libcst-0.3.20 more-itertools-8.2.0 multidict-5.2.0 mypy-extensions-0.4.3 numpy-1.26.0 openapi-schema-validator-0.6.2 openapi-spec-validator-0.7.1 packaging-20.9 pathable-0.4.3 pathlib-1.0.1 proto-plus-1.19.0 protobuf-3.19.6 psutil-5.9.0 pyarrow-14.0.1 pyasn1-0.4.8 pyasn1-modules-0.2.8 pycparser-2.21 pyparsing-2.4.7 python-dateutil-2.8.1 python-json-logger-2.0.2 python-multipart-0.0.20 pytz-2020.1 referencing-0.31.1 requests-2.32.2 rfc3339-validator-0.1.4 rpds-py-0.15.2 rsa-4.7.2 s3transfer-0.10.2 secure-0.3.0 six-1.16.0 sniffio-1.3.0 starlette-0.42.0 tabulate-0.8.9 typing-extensions-4.12.2 typing-inspect-0.7.1 urllib3-2.2.2 uvicorn-0.31.0 uvloop-0.17.0 websocket-client-0.57.0 xmltodict-0.12.0 yarl-1.7.0
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
WARNING: Location 'file:///wazuh/src/external/cpython//Dependencies/simple/pip/' is ignored: it is neither a file nor a directory.
cd ../framework && /var/ossec/framework/python/bin/python3 -m pip install . --use-pep517 --prefix=/var/ossec/framework/python && rm -rf build/
Processing /wazuh/framework
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Preparing metadata (pyproject.toml) ... done
Building wheels for collected packages: wazuh
  Building wheel for wazuh (pyproject.toml) ... done
  Created wheel for wazuh: filename=wazuh-4.13.0-py3-none-any.whl size=312714 sha256=238214fa3253178553c9fd59e501cfd90b7b1511867f45aeae2c492425f826b6
  Stored in directory: /tmp/pip-ephem-wheel-cache-jjb8a6_s/wheels/fe/47/7c/2c289aea2e8a5cc5ac8936e5cecbbfc0bdd996d57bb70da19a
Successfully built wazuh
Installing collected packages: wazuh
Successfully installed wazuh-4.13.0
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv

[notice] A new release of pip is available: 23.3.2 -> 25.0.1
[notice] To update, run: /var/ossec/framework/python/bin/python3 -m pip install --upgrade pip
chown -R root:wazuh /var/ossec/framework/python
chmod -R o=- /var/ossec/framework/python
cd ../api && /var/ossec/framework/python/bin/python3 -m pip install . --use-pep517 --prefix=/var/ossec/framework/python && rm -rf build/
Processing /wazuh/api
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Preparing metadata (pyproject.toml) ... done
Building wheels for collected packages: api
  Building wheel for api (pyproject.toml) ... done
  Created wheel for api: filename=api-4.13.0-py3-none-any.whl size=163270 sha256=7c74258717b4fd0f3f417915904e748f1998107fd544bc7cc8157981e4b2efa2
  Stored in directory: /tmp/pip-ephem-wheel-cache-n5zsisev/wheels/2c/ed/d5/5358cdcfa6f68fc41b8ca02118521c75da82e9ec6d16f50822
Successfully built api
Installing collected packages: api
Successfully installed api-4.13.0
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv

[notice] A new release of pip is available: 23.3.2 -> 25.0.1
[notice] To update, run: /var/ossec/framework/python/bin/python3 -m pip install --upgrade pip
cd ../tools/mitre && /var/ossec/framework/python/bin/python3 mitredb.py -d /var/ossec/var/db/mitre.db
Generating self-signed certificate for wazuh-authd...


Starting Wazuh...
server
.
.
.

root@ip-172-31-43-156:/wazuh# /var/ossec/framework/python/bin/python3 --version
Python 3.10.16
root@ip-172-31-43-156:/wazuh# /var/ossec/framework/python/bin/pip3 freeze
anyio==4.1.0
api @ file:///wazuh/api
asgiref==3.7.2
attrs==23.1.0
azure-core==1.30.2
azure-storage-blob==12.20.0
boto3==1.34.135
botocore==1.34.135
cachetools==4.1.0
certifi==2024.7.4
cffi==1.15.1
chardet==3.0.4
charset-normalizer==2.0.4
click==8.1.3
clickclick==20.10.2
connexion==3.1.0
content-size-limit-asgi==0.1.5
cryptography==44.0.1
Cython==0.29.36
defusedxml==0.6.0
docker==7.1.0
docker-pycreds==0.4.0
docutils==0.15.2
exceptiongroup==1.2.0
frozenlist==1.2.0
future==0.18.3
google-api-core==1.30.0
google-auth==1.28.0
google-cloud-core==1.7.1
google-cloud-pubsub==2.7.1
google-cloud-storage==1.39.0
google-crc32c==1.1.2
google-resumable-media==1.3.1
googleapis-common-protos==1.51.0
greenlet==2.0.2
grpc-google-iam-v1==0.12.3
grpcio==1.58.0
h11==0.14.0
httpcore==1.0.2
httpx==0.26.0
idna==3.7
inflection==0.3.1
isodate==0.6.1
Jinja2==3.1.4
jmespath==0.9.5
jsonschema==4.20.0
jsonschema-path==0.3.2
jsonschema-specifications==2023.11.2
lazy-object-proxy==1.10.0
libcst==0.3.20
MarkupSafe==2.1.2
more-itertools==8.2.0
multidict==5.2.0
mypy-extensions==0.4.3
numpy==1.26.0
openapi-schema-validator==0.6.2
openapi-spec-validator==0.7.1
packaging==20.9
pathable==0.4.3
pathlib==1.0.1
proto-plus==1.19.0
protobuf==3.19.6
psutil==5.9.0
pyarrow==14.0.1
pyasn1==0.4.8
pyasn1-modules==0.2.8
pycparser==2.21
PyJWT==2.8.0
pyparsing==2.4.7
python-dateutil==2.8.1
python-json-logger==2.0.2
python-multipart==0.0.20
pytz==2020.1
PyYAML==5.4.1
referencing==0.31.1
requests==2.32.2
rfc3339-validator==0.1.4
rpds-py==0.15.2
rsa==4.7.2
s3transfer==0.10.2
secure==0.3.0
six==1.16.0
sniffio==1.3.0
SQLAlchemy==2.0.23
starlette==0.42.0
tabulate==0.8.9
typing-inspect==0.7.1
typing_extensions==4.12.2
urllib3==2.2.2
uvicorn==0.31.0
uvloop==0.17.0
wazuh @ file:///wazuh/framework
websocket-client==0.57.0
Werkzeug==3.1.3
xmltodict==0.12.0
yarl==1.7.0
Installation with precompiled- aarch64 🟢
./install
.
.
.
Done building server

Wait for success...
success
Removing old SCA policies...
Installing SCA policies...
Installing additional SCA policies...
Makefile:2685: warning: overriding recipe for target 'win32/ui_resource.o'
Makefile:2625: warning: ignoring old recipe for target 'win32/ui_resource.o'
Makefile:2688: warning: overriding recipe for target 'win32/auth_resource.o'
Makefile:2628: warning: ignoring old recipe for target 'win32/auth_resource.o'
mkdir -p /var/ossec/framework/python
cp external/cpython.tar.gz /var/ossec/framework/python/cpython.tar.gz && tar -xf /var/ossec/framework/python/cpython.tar.gz -C /var/ossec/framework/python && rm -rf /var/ossec/framework/python/cpython.tar.gz
find /var/ossec/framework/python -name "*libpython3.10.so.1.0" -exec ln -f {} /var/ossec/lib/libpython3.10.so.1.0 \;
cd ../framework && /var/ossec/framework/python/bin/python3 -m pip install . --use-pep517 --prefix=/var/ossec/framework/python && rm -rf build/
Processing /wazuh/framework
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Preparing metadata (pyproject.toml) ... done
Building wheels for collected packages: wazuh
  Building wheel for wazuh (pyproject.toml) ... done
  Created wheel for wazuh: filename=wazuh-4.13.0-py3-none-any.whl size=312714 sha256=dd98c7bec10cf6a98875b52f2e00de25ed0bc59b661d55db0cdb33a11af02a50
  Stored in directory: /tmp/pip-ephem-wheel-cache-del4tntb/wheels/fe/47/7c/2c289aea2e8a5cc5ac8936e5cecbbfc0bdd996d57bb70da19a
Successfully built wazuh
Installing collected packages: wazuh
  Attempting uninstall: wazuh
    Found existing installation: wazuh 4.13.0
    Uninstalling wazuh-4.13.0:
      Successfully uninstalled wazuh-4.13.0
Successfully installed wazuh-4.13.0
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv

[notice] A new release of pip is available: 23.3.2 -> 25.0.1
[notice] To update, run: /var/ossec/framework/python/bin/python3 -m pip install --upgrade pip
chown -R root:wazuh /var/ossec/framework/python
chmod -R o=- /var/ossec/framework/python
cd ../api && /var/ossec/framework/python/bin/python3 -m pip install . --use-pep517 --prefix=/var/ossec/framework/python && rm -rf build/
Processing /wazuh/api
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Preparing metadata (pyproject.toml) ... done
Building wheels for collected packages: api
  Building wheel for api (pyproject.toml) ... done
  Created wheel for api: filename=api-4.13.0-py3-none-any.whl size=163270 sha256=137425f1532c888f2ce5aa19dd565ad39be85b52793b0fd3625af01a6fb92d76
  Stored in directory: /tmp/pip-ephem-wheel-cache-z6hjjher/wheels/2c/ed/d5/5358cdcfa6f68fc41b8ca02118521c75da82e9ec6d16f50822
Successfully built api
Installing collected packages: api
  Attempting uninstall: api
    Found existing installation: api 4.13.0
    Uninstalling api-4.13.0:
      Successfully uninstalled api-4.13.0
Successfully installed api-4.13.0
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv

[notice] A new release of pip is available: 23.3.2 -> 25.0.1
[notice] To update, run: /var/ossec/framework/python/bin/python3 -m pip install --upgrade pip
cd ../tools/mitre && /var/ossec/framework/python/bin/python3 mitredb.py -d /var/ossec/var/db/mitre.db
Generating self-signed certificate for wazuh-authd...


Starting Wazuh...
server
root@ip-172-31-43-156:/wazuh# /var/ossec/framework/python/bin/python3 --version
Python 3.10.16
root@ip-172-31-43-156:/wazuh# /var/ossec/framework/python/bin/pip3 freeze
anyio==4.1.0
api @ file:///wazuh/api
asgiref==3.7.2
attrs==23.1.0
azure-core==1.30.2
azure-storage-blob==12.20.0
boto3==1.34.135
botocore==1.34.135
cachetools==4.1.0
certifi==2024.7.4
cffi==1.15.1
chardet==3.0.4
charset-normalizer==2.0.4
click==8.1.3
clickclick==20.10.2
connexion==3.1.0
content-size-limit-asgi==0.1.5
cryptography==44.0.1
Cython==0.29.36
defusedxml==0.6.0
docker==7.1.0
docker-pycreds==0.4.0
docutils==0.15.2
exceptiongroup==1.2.0
frozenlist==1.2.0
future==0.18.3
google-api-core==1.30.0
google-auth==1.28.0
google-cloud-core==1.7.1
google-cloud-pubsub==2.7.1
google-cloud-storage==1.39.0
google-crc32c==1.1.2
google-resumable-media==1.3.1
googleapis-common-protos==1.51.0
greenlet==2.0.2
grpc-google-iam-v1==0.12.3
grpcio==1.58.0
h11==0.14.0
httpcore==1.0.2
httpx==0.26.0
idna==3.7
inflection==0.3.1
isodate==0.6.1
Jinja2==3.1.4
jmespath==0.9.5
jsonschema==4.20.0
jsonschema-path==0.3.2
jsonschema-specifications==2023.11.2
lazy-object-proxy==1.10.0
libcst==0.3.20
MarkupSafe==2.1.2
more-itertools==8.2.0
multidict==5.2.0
mypy-extensions==0.4.3
numpy==1.26.0
openapi-schema-validator==0.6.2
openapi-spec-validator==0.7.1
packaging==20.9
pathable==0.4.3
pathlib==1.0.1
proto-plus==1.19.0
protobuf==3.19.6
psutil==5.9.0
pyarrow==14.0.1
pyasn1==0.4.8
pyasn1-modules==0.2.8
pycparser==2.21
PyJWT==2.8.0
pyparsing==2.4.7
python-dateutil==2.8.1
python-json-logger==2.0.2
python-multipart==0.0.20
pytz==2020.1
PyYAML==5.4.1
referencing==0.31.1
requests==2.32.2
rfc3339-validator==0.1.4
rpds-py==0.15.2
rsa==4.7.2
s3transfer==0.10.2
secure==0.3.0
six==1.16.0
sniffio==1.3.0
SQLAlchemy==2.0.23
starlette==0.42.0
tabulate==0.8.9
typing-inspect==0.7.1
typing_extensions==4.12.2
urllib3==2.2.2
uvicorn==0.31.0
uvloop==0.17.0
wazuh @ file:///wazuh/framework
websocket-client==0.57.0
Werkzeug==3.1.3
xmltodict==0.12.0
yarl==1.7.0

@jnasselle
Copy link
Member

Update

Tests were executed locally. Some issues with docker compose arose and took time to troubleshoot

(tmpenv) root@wazuh-dev:~/repos/wazuh/api/test/integration# pytest -vv test_agent_GET_endpoints.tavern.yaml
============================================================ test session starts =============================================================
platform linux -- Python 3.10.12, pytest-7.2.0, pluggy-0.13.1 -- /root/repos/wazuh/tmpenv/bin/python3
cachedir: .pytest_cache
metadata: {'Python': '3.10.12', 'Platform': 'Linux-5.15.0-134-generic-x86_64-with-glibc2.35', 'Packages': {'pytest': '7.2.0', 'py': '1.11.0', 'pluggy': '0.13.1'}, 'Plugins': {'anyio': '4.1.0', 'tavern': '1.25.2', 'html': '3.1.1', 'metadata': '2.0.2'}}
rootdir: /root/repos/wazuh/api/test/integration, configfile: pytest.ini
plugins: anyio-4.1.0, tavern-1.25.2, html-3.1.1, metadata-2.0.2
collected 95 items                                                                                                                           

test_agent_GET_endpoints.tavern.yaml::GET /agents PASSED                                                                               [  1%]
test_agent_GET_endpoints.tavern.yaml::GET /agents with single agent id PASSED                                                          [  2%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/{agent_id}/config/{component}/{configuration} PASSED                                 [  3%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/{agent_id}/config/{component}/{configuration} (only cluster configuration) PASSED    [  4%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/{agent_id}/group/is_sync PASSED                                                      [  5%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/{agent_id}/key PASSED                                                                [  6%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/{agent_id}/daemons/stats PASSED                                                      [  7%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/{agent_id}/stats/{component} PASSED                                                  [  8%]
test_agent_GET_endpoints.tavern.yaml::GET /groups PASSED                                                                               [  9%]
test_agent_GET_endpoints.tavern.yaml::GET /groups filter hash[md5] PASSED                                                              [ 10%]
test_agent_GET_endpoints.tavern.yaml::GET /groups filter hash[sha1] PASSED                                                             [ 11%]
test_agent_GET_endpoints.tavern.yaml::GET /groups filter hash[sha224] PASSED                                                           [ 12%]
test_agent_GET_endpoints.tavern.yaml::GET /groups filter hash[sha256] PASSED                                                           [ 13%]
test_agent_GET_endpoints.tavern.yaml::GET /groups filter hash[sha384] PASSED                                                           [ 14%]
test_agent_GET_endpoints.tavern.yaml::GET /groups filter hash[sha512] PASSED                                                           [ 15%]
test_agent_GET_endpoints.tavern.yaml::GET /groups filter hash[blake2b] PASSED                                                          [ 16%]
test_agent_GET_endpoints.tavern.yaml::GET /groups filter hash[blake2s] PASSED                                                          [ 17%]
test_agent_GET_endpoints.tavern.yaml::GET /groups filter hash[sha3_224] PASSED                                                         [ 18%]
test_agent_GET_endpoints.tavern.yaml::GET /groups filter hash[sha3_256] PASSED                                                         [ 20%]
test_agent_GET_endpoints.tavern.yaml::GET /groups filter hash[sha3_384] PASSED                                                         [ 21%]
test_agent_GET_endpoints.tavern.yaml::GET /groups filter hash[sha3_512] PASSED                                                         [ 22%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/agents PASSED                                                             [ 23%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/agents {sort,select}[configSum] PASSED                                    [ 24%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/agents {sort,select}[dateAdd] PASSED                                      [ 25%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/agents {sort,select}[group] PASSED                                        [ 26%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/agents {sort,select}[id] PASSED                                           [ 27%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/agents {sort,select}[ip] PASSED                                           [ 28%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/agents {sort,select}[lastKeepAlive] PASSED                                [ 29%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/agents {sort,select}[manager] PASSED                                      [ 30%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/agents {sort,select}[mergedSum] PASSED                                    [ 31%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/agents {sort,select}[name] PASSED                                         [ 32%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/agents {sort,select}[node_name] PASSED                                    [ 33%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/agents {sort,select}[os.arch] PASSED                                      [ 34%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/agents {sort,select}[os.build] PASSED                                     [ 35%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/agents {sort,select}[os.codename] PASSED                                  [ 36%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/agents {sort,select}[os.major] PASSED                                     [ 37%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/agents {sort,select}[os.minor] PASSED                                     [ 38%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/agents {sort,select}[os.name] PASSED                                      [ 40%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/agents {sort,select}[os.platform] PASSED                                  [ 41%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/agents {sort,select}[os.uname] PASSED                                     [ 42%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/agents {sort,select}[os.version] PASSED                                   [ 43%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/agents {sort,select}[registerIP] PASSED                                   [ 44%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/agents {sort,select}[status] PASSED                                       [ 45%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/agents {sort,select}[version] PASSED                                      [ 46%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/agents {sort,select}[status_code] PASSED                                  [ 47%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/configuration PASSED                                                      [ 48%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/files PASSED                                                              [ 49%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/files filter hash[md5] PASSED                                             [ 50%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/files filter hash[sha1] PASSED                                            [ 51%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/files filter hash[sha224] PASSED                                          [ 52%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/files filter hash[sha256] PASSED                                          [ 53%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/files filter hash[sha384] PASSED                                          [ 54%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/files filter hash[sha512] PASSED                                          [ 55%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/files filter hash[blake2b] PASSED                                         [ 56%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/files filter hash[blake2s] PASSED                                         [ 57%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/files filter hash[sha3_224] PASSED                                        [ 58%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/files filter hash[sha3_256] PASSED                                        [ 60%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/files filter hash[sha3_384] PASSED                                        [ 61%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/files filter hash[sha3_512] PASSED                                        [ 62%]
test_agent_GET_endpoints.tavern.yaml::GET /groups/{group_id}/files/{filename} PASSED                                                   [ 63%]
test_agent_GET_endpoints.tavern.yaml::GET /agents?name=agent_name PASSED                                                               [ 64%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/no_group PASSED                                                                      [ 65%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/no_group {sort,select}[dateAdd] PASSED                                               [ 66%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/no_group {sort,select}[id] PASSED                                                    [ 67%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/no_group {sort,select}[ip] PASSED                                                    [ 68%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/no_group {sort,select}[name] PASSED                                                  [ 69%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/no_group {sort,select}[node_name] PASSED                                             [ 70%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/no_group {sort,select}[registerIP] PASSED                                            [ 71%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/no_group {sort,select}[status] PASSED                                                [ 72%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/no_group {sort,select}[status_code] PASSED                                           [ 73%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/outdated PASSED                                                                      [ 74%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/stats/distinct PASSED                                                                [ 75%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/stats/distinct {fields}[dateAdd] PASSED                                              [ 76%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/stats/distinct {fields}[id] PASSED                                                   [ 77%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/stats/distinct {fields}[ip] PASSED                                                   [ 78%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/stats/distinct {fields}[lastKeepAlive] PASSED                                        [ 80%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/stats/distinct {fields}[manager] PASSED                                              [ 81%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/stats/distinct {fields}[name] PASSED                                                 [ 82%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/stats/distinct {fields}[node_name] PASSED                                            [ 83%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/stats/distinct {fields}[os.arch] PASSED                                              [ 84%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/stats/distinct {fields}[os.build] PASSED                                             [ 85%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/stats/distinct {fields}[os.codename] PASSED                                          [ 86%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/stats/distinct {fields}[os.major] PASSED                                             [ 87%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/stats/distinct {fields}[os.minor] PASSED                                             [ 88%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/stats/distinct {fields}[os.name] PASSED                                              [ 89%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/stats/distinct {fields}[os.platform] PASSED                                          [ 90%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/stats/distinct {fields}[os.uname] PASSED                                             [ 91%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/stats/distinct {fields}[os.version] PASSED                                           [ 92%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/stats/distinct {fields}[registerIP] PASSED                                           [ 93%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/stats/distinct {fields}[status] PASSED                                               [ 94%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/stats/distinct {fields}[version] PASSED                                              [ 95%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/stats/distinct {fields}[status_code] PASSED                                          [ 96%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/summary/status PASSED                                                                [ 97%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/summary/os PASSED                                                                    [ 98%]
test_agent_GET_endpoints.tavern.yaml::GET /agents/upgrade_result PASSED                                                                [100%]

============================================================== warnings summary ==============================================================
../../../tmpenv/lib/python3.10/site-packages/_pytest/config/__init__.py:1294
  /root/repos/wazuh/tmpenv/lib/python3.10/site-packages/_pytest/config/__init__.py:1294: PytestConfigWarning: Unknown config option: asyncio_mode
  
    self._warn_or_fail_if_strict(f"Unknown config option: {key}\n")

../../../tmpenv/lib/python3.10/site-packages/_pytest/nodes.py:642
  /root/repos/wazuh/tmpenv/lib/python3.10/site-packages/_pytest/nodes.py:642: PytestRemovedIn8Warning: The (fspath: py.path.local) argument to YamlFile is deprecated. Please use the (path: pathlib.Path) argument instead.
  See https://docs.pytest.org/en/latest/deprecations.html#fspath-argument-for-node-constructors-replaced-with-pathlib-path
    return super().from_parent(parent=parent, fspath=fspath, path=path, **kw)

test_agent_GET_endpoints.tavern.yaml: 190 warnings
  /root/repos/wazuh/tmpenv/lib/python3.10/site-packages/urllib3/util/ssl_.py:260: DeprecationWarning: ssl.PROTOCOL_TLS is deprecated
    context = SSLContext(ssl_version or PROTOCOL_TLS)

test_agent_GET_endpoints.tavern.yaml: 95 warnings
  <frozen importlib._bootstrap>:283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead

-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
================================================ 95 passed, 287 warnings in 408.25s (0:06:48) ================================================
(tmpenv) root@wazuh-dev:~/repos/wazuh/api/test/integration# pytest -vv test_rbac_black_manager_endpoints.tavern.yaml    
============================================================ test session starts =============================================================
platform linux -- Python 3.10.12, pytest-7.2.0, pluggy-0.13.1 -- /root/repos/wazuh/tmpenv/bin/python3
cachedir: .pytest_cache
metadata: {'Python': '3.10.12', 'Platform': 'Linux-5.15.0-134-generic-x86_64-with-glibc2.35', 'Packages': {'pytest': '7.2.0', 'py': '1.11.0', 'pluggy': '0.13.1'}, 'Plugins': {'anyio': '4.1.0', 'tavern': '1.25.2', 'html': '3.1.1', 'metadata': '2.0.2'}}
rootdir: /root/repos/wazuh/api/test/integration, configfile: pytest.ini
plugins: anyio-4.1.0, tavern-1.25.2, html-3.1.1, metadata-2.0.2
collected 16 items                                                                                                                           

test_rbac_black_manager_endpoints.tavern.yaml::GET /manager/configuration PASSED                                                       [  6%]
test_rbac_black_manager_endpoints.tavern.yaml::GET /manager/configuration/validation PASSED                                            [ 12%]
test_rbac_black_manager_endpoints.tavern.yaml::GET /manager/configuration/{component}/{configuration} PASSED                           [ 18%]
test_rbac_black_manager_endpoints.tavern.yaml::GET /manager/info PASSED                                                                [ 25%]
test_rbac_black_manager_endpoints.tavern.yaml::GET /manager/logs PASSED                                                                [ 31%]
test_rbac_black_manager_endpoints.tavern.yaml::GET /manager/logs/summary PASSED                                                        [ 37%]
test_rbac_black_manager_endpoints.tavern.yaml::GET /manager/daemons/stats PASSED                                                       [ 43%]
test_rbac_black_manager_endpoints.tavern.yaml::GET /manager/stats PASSED                                                               [ 50%]
test_rbac_black_manager_endpoints.tavern.yaml::GET /manager/stats/analysisd PASSED                                                     [ 56%]
test_rbac_black_manager_endpoints.tavern.yaml::GET /manager/stats/hourly PASSED                                                        [ 62%]
test_rbac_black_manager_endpoints.tavern.yaml::GET /manager/stats/remoted PASSED                                                       [ 68%]
test_rbac_black_manager_endpoints.tavern.yaml::GET /manager/stats/weekly PASSED                                                        [ 75%]
test_rbac_black_manager_endpoints.tavern.yaml::GET /manager/status PASSED                                                              [ 81%]
test_rbac_black_manager_endpoints.tavern.yaml::GET /manager/api/config PASSED                                                          [ 87%]
test_rbac_black_manager_endpoints.tavern.yaml::PUT /manager/configuration PASSED                                                       [ 93%]
test_rbac_black_manager_endpoints.tavern.yaml::PUT /manager/restart PASSED                                                             [100%]

============================================================== warnings summary ==============================================================
../../../tmpenv/lib/python3.10/site-packages/_pytest/config/__init__.py:1294
  /root/repos/wazuh/tmpenv/lib/python3.10/site-packages/_pytest/config/__init__.py:1294: PytestConfigWarning: Unknown config option: asyncio_mode
  
    self._warn_or_fail_if_strict(f"Unknown config option: {key}\n")

../../../tmpenv/lib/python3.10/site-packages/_pytest/nodes.py:642
  /root/repos/wazuh/tmpenv/lib/python3.10/site-packages/_pytest/nodes.py:642: PytestRemovedIn8Warning: The (fspath: py.path.local) argument to YamlFile is deprecated. Please use the (path: pathlib.Path) argument instead.
  See https://docs.pytest.org/en/latest/deprecations.html#fspath-argument-for-node-constructors-replaced-with-pathlib-path
    return super().from_parent(parent=parent, fspath=fspath, path=path, **kw)

test_rbac_black_manager_endpoints.tavern.yaml: 32 warnings
  /root/repos/wazuh/tmpenv/lib/python3.10/site-packages/urllib3/util/ssl_.py:260: DeprecationWarning: ssl.PROTOCOL_TLS is deprecated
    context = SSLContext(ssl_version or PROTOCOL_TLS)

test_rbac_black_manager_endpoints.tavern.yaml: 16 warnings
  <frozen importlib._bootstrap>:283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead

-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
================================================ 16 passed, 50 warnings in 205.46s (0:03:25) =================================================

@jnasselle
Copy link
Member

Update

On hold due to #28692

@wazuhci wazuhci moved this from In progress to On hold in XDR+SIEM/Release 4.13.0 Mar 18, 2025
@wazuhci wazuhci moved this from On hold to Pending review in XDR+SIEM/Release 4.13.0 Mar 19, 2025
@wazuhci wazuhci moved this from Pending review to In review in XDR+SIEM/Release 4.13.0 Mar 19, 2025
@wazuhci wazuhci moved this from In review to Pending final review in XDR+SIEM/Release 4.13.0 Mar 19, 2025
@wazuhci wazuhci moved this from Pending final review to In final review in XDR+SIEM/Release 4.13.0 Mar 20, 2025
@wazuhci wazuhci moved this from In final review to On hold in XDR+SIEM/Release 4.13.0 Mar 20, 2025
@wazuhci wazuhci moved this from On hold to In progress in XDR+SIEM/Release 4.13.0 Mar 20, 2025
@jnasselle
Copy link
Member

jnasselle commented Mar 20, 2025

  • AMD64
tar -O -xzf cpython.tar.gz ./lib/python3.10/_sysconfigdata__linux_x86_64-l
inux-gnu.py | grep -- '--enable-optimizations'
                "'--enable-optimizations'",
tar -O -xzf cpython_x86_64.tar.gz cpython/Makefile | grep -- '--enable-optimiza
tions'
CONFIG_ARGS=     '--prefix=/var/ossec/framework/python' '--libdir=/var/ossec/framework/python/lib' '--enable-shared' '--with-openssl=/wazuh/src/external/openssl/' 'LDFLAGS= -L/wazuh/src -lwazuhext -Wl,-rpath,'\''$$ORIGIN/../../../lib'\'',--disable-new-dtags' 'CPPFLAGS=-I/wazuh/src/external/openssl/' '--enable-optimizations'
# echo "Only at Cpython new:"; comm -23 <(tar -tzf cpython.tar.gz | sort) <(tar -tzf ../../../cpython.tar.gz | sort);
Only at Cpython new:
./lib/python3.10/lib2to3/Grammar3.10.16.final.0.pickle
./lib/python3.10/lib2to3/PatternGrammar3.10.16.final.0.pickle

# echo "Only at Cpython new:"; comm -23 <(tar -tzf ../../../cpython.tar.gz |
 sort) <(tar -tzf cpython.tar.gz | sort);
Only at Cpython new:
./lib/python3.10/lib2to3/Grammar3.10.15.final.0.pickle
./lib/python3.10/lib2to3/PatternGrammar3.10.15.final.0.pickle
./lib/python3.10/site-packages/azure/common/
./lib/python3.10/site-packages/azure_common-1.1.25.dist-info/
./lib/python3.10/site-packages/azure_common-1.1.25.dist-info/INSTALLER
./lib/python3.10/site-packages/azure_common-1.1.25.dist-info/METADATA
./lib/python3.10/site-packages/azure_common-1.1.25.dist-info/RECORD
./lib/python3.10/site-packages/azure_common-1.1.25.dist-info/REQUESTED
./lib/python3.10/site-packages/azure_common-1.1.25.dist-info/top_level.txt
./lib/python3.10/site-packages/azure_common-1.1.25.dist-info/WHEEL
./lib/python3.10/site-packages/azure/common/client_factory.py
./lib/python3.10/site-packages/azure/common/cloud.py
./lib/python3.10/site-packages/azure/common/credentials.py
./lib/python3.10/site-packages/azure/common/exceptions.py
./lib/python3.10/site-packages/azure/common/__init__.py
./lib/python3.10/site-packages/azure/common/__pycache__/
./lib/python3.10/site-packages/azure/common/__pycache__/client_factory.cpython-310.pyc
./lib/python3.10/site-packages/azure/common/__pycache__/cloud.cpython-310.pyc
./lib/python3.10/site-packages/azure/common/__pycache__/credentials.cpython-310.pyc
./lib/python3.10/site-packages/azure/common/__pycache__/exceptions.cpython-310.pyc
./lib/python3.10/site-packages/azure/common/__pycache__/__init__.cpython-310.pyc
./lib/python3.10/site-packages/azure/common/__pycache__/_version.cpython-310.pyc
./lib/python3.10/site-packages/azure/common/_version.py
./lib/python3.10/site-packages/azure/profiles/
./lib/python3.10/site-packages/azure/profiles/__init__.py
./lib/python3.10/site-packages/azure/profiles/multiapiclient.py
./lib/python3.10/site-packages/azure/profiles/__pycache__/
./lib/python3.10/site-packages/azure/profiles/__pycache__/__init__.cpython-310.pyc
./lib/python3.10/site-packages/azure/profiles/__pycache__/multiapiclient.cpython-310.pyc
./lib/python3.10/site-packages/azure/storage/common/
./lib/python3.10/site-packages/azure_storage_common-2.1.0.dist-info/
./lib/python3.10/site-packages/azure_storage_common-2.1.0.dist-info/INSTALLER
./lib/python3.10/site-packages/azure_storage_common-2.1.0.dist-info/LICENSE.txt
./lib/python3.10/site-packages/azure_storage_common-2.1.0.dist-info/METADATA
./lib/python3.10/site-packages/azure_storage_common-2.1.0.dist-info/RECORD
./lib/python3.10/site-packages/azure_storage_common-2.1.0.dist-info/REQUESTED
./lib/python3.10/site-packages/azure_storage_common-2.1.0.dist-info/top_level.txt
./lib/python3.10/site-packages/azure_storage_common-2.1.0.dist-info/WHEEL
./lib/python3.10/site-packages/azure/storage/common/_auth.py
./lib/python3.10/site-packages/azure/storage/common/cloudstorageaccount.py
./lib/python3.10/site-packages/azure/storage/common/_common_conversion.py
./lib/python3.10/site-packages/azure/storage/common/_connection.py
./lib/python3.10/site-packages/azure/storage/common/_constants.py
./lib/python3.10/site-packages/azure/storage/common/_deserialization.py
./lib/python3.10/site-packages/azure/storage/common/_encryption.py
./lib/python3.10/site-packages/azure/storage/common/_error.py
./lib/python3.10/site-packages/azure/storage/common/_http/
./lib/python3.10/site-packages/azure/storage/common/_http/httpclient.py
./lib/python3.10/site-packages/azure/storage/common/_http/__init__.py
./lib/python3.10/site-packages/azure/storage/common/_http/__pycache__/
./lib/python3.10/site-packages/azure/storage/common/_http/__pycache__/httpclient.cpython-310.pyc
./lib/python3.10/site-packages/azure/storage/common/_http/__pycache__/__init__.cpython-310.pyc
./lib/python3.10/site-packages/azure/storage/common/__init__.py
./lib/python3.10/site-packages/azure/storage/common/models.py
./lib/python3.10/site-packages/azure/storage/common/__pycache__/
./lib/python3.10/site-packages/azure/storage/common/__pycache__/_auth.cpython-310.pyc
./lib/python3.10/site-packages/azure/storage/common/__pycache__/cloudstorageaccount.cpython-310.pyc
./lib/python3.10/site-packages/azure/storage/common/__pycache__/_common_conversion.cpython-310.pyc
./lib/python3.10/site-packages/azure/storage/common/__pycache__/_connection.cpython-310.pyc
./lib/python3.10/site-packages/azure/storage/common/__pycache__/_constants.cpython-310.pyc
./lib/python3.10/site-packages/azure/storage/common/__pycache__/_deserialization.cpython-310.pyc
./lib/python3.10/site-packages/azure/storage/common/__pycache__/_encryption.cpython-310.pyc
./lib/python3.10/site-packages/azure/storage/common/__pycache__/_error.cpython-310.pyc
./lib/python3.10/site-packages/azure/storage/common/__pycache__/__init__.cpython-310.pyc
./lib/python3.10/site-packages/azure/storage/common/__pycache__/models.cpython-310.pyc
./lib/python3.10/site-packages/azure/storage/common/__pycache__/retry.cpython-310.pyc
./lib/python3.10/site-packages/azure/storage/common/__pycache__/_serialization.cpython-310.pyc
./lib/python3.10/site-packages/azure/storage/common/__pycache__/sharedaccesssignature.cpython-310.pyc
./lib/python3.10/site-packages/azure/storage/common/__pycache__/storageclient.cpython-310.pyc
./lib/python3.10/site-packages/azure/storage/common/__pycache__/tokencredential.cpython-310.pyc
./lib/python3.10/site-packages/azure/storage/common/retry.py
./lib/python3.10/site-packages/azure/storage/common/_serialization.py
./lib/python3.10/site-packages/azure/storage/common/sharedaccesssignature.py
./lib/python3.10/site-packages/azure/storage/common/storageclient.py
./lib/python3.10/site-packages/azure/storage/common/tokencredential.py
  • ARM64
tar -O -xzf cpython.tar.gz ./lib/python3.10/_sysconfigdata__linux_aarch64-linux-gnu.py | grep -- '--enable-optimizations'

                "'--enable-optimizations'",

tar -O -xzf cpython_arm64.tar.gz cpython/Makefile | grep -- '--enable-optimizations'

CONFIG_ARGS=	 '--prefix=/var/ossec/framework/python' '--libdir=/var/ossec/framework/python/lib' '--enable-shared' '--with-openssl=/wazuh/src/external/openssl/' 'LDFLAGS= -L/wazuh/src -lwazuhext -Wl,-rpath,'\''$$ORIGIN/../../../lib'\'',--disable-new-dtags' 'CPPFLAGS=-I/wazuh/src/external/openssl/' '--enable-optimizations'
# echo "Only at Cpython new:"; comm -23 <(tar -tzf cpython.tar.gz | sort) <(tar -tzf ../../../cpython.tar.gz | sort);                                        

Only at Cpython new:
./lib/python3.10/lib2to3/Grammar3.10.16.final.0.pickle
./lib/python3.10/lib2to3/PatternGrammar3.10.16.final.0.pickle

# echo "Only at Cpython old:"; comm -23 <(tar -tzf ../../../cpython.tar.gz   | sort) <(tar -tzf cpython.tar.gz | sort); 

Only at Cpython old:
./lib/python3.10/lib2to3/Grammar3.10.15.final.0.pickle
./lib/python3.10/lib2to3/PatternGrammar3.10.15.final.0.pickle
./lib/python3.10/site-packages/azure/common/
./lib/python3.10/site-packages/azure_common-1.1.25.dist-info/
./lib/python3.10/site-packages/azure_common-1.1.25.dist-info/INSTALLER
./lib/python3.10/site-packages/azure_common-1.1.25.dist-info/METADATA
./lib/python3.10/site-packages/azure_common-1.1.25.dist-info/RECORD
./lib/python3.10/site-packages/azure_common-1.1.25.dist-info/REQUESTED
./lib/python3.10/site-packages/azure_common-1.1.25.dist-info/top_level.txt
./lib/python3.10/site-packages/azure_common-1.1.25.dist-info/WHEEL
./lib/python3.10/site-packages/azure/common/client_factory.py
./lib/python3.10/site-packages/azure/common/cloud.py
./lib/python3.10/site-packages/azure/common/credentials.py
./lib/python3.10/site-packages/azure/common/exceptions.py
./lib/python3.10/site-packages/azure/common/__init__.py
./lib/python3.10/site-packages/azure/common/__pycache__/
./lib/python3.10/site-packages/azure/common/__pycache__/client_factory.cpython-310.pyc
./lib/python3.10/site-packages/azure/common/__pycache__/cloud.cpython-310.pyc
./lib/python3.10/site-packages/azure/common/__pycache__/credentials.cpython-310.pyc
./lib/python3.10/site-packages/azure/common/__pycache__/exceptions.cpython-310.pyc
./lib/python3.10/site-packages/azure/common/__pycache__/__init__.cpython-310.pyc
./lib/python3.10/site-packages/azure/common/__pycache__/_version.cpython-310.pyc
./lib/python3.10/site-packages/azure/common/_version.py
./lib/python3.10/site-packages/azure/profiles/
./lib/python3.10/site-packages/azure/profiles/__init__.py
./lib/python3.10/site-packages/azure/profiles/multiapiclient.py
./lib/python3.10/site-packages/azure/profiles/__pycache__/
./lib/python3.10/site-packages/azure/profiles/__pycache__/__init__.cpython-310.pyc
./lib/python3.10/site-packages/azure/profiles/__pycache__/multiapiclient.cpython-310.pyc
./lib/python3.10/site-packages/azure/storage/common/
./lib/python3.10/site-packages/azure_storage_common-2.1.0.dist-info/
./lib/python3.10/site-packages/azure_storage_common-2.1.0.dist-info/INSTALLER
./lib/python3.10/site-packages/azure_storage_common-2.1.0.dist-info/LICENSE.txt
./lib/python3.10/site-packages/azure_storage_common-2.1.0.dist-info/METADATA
./lib/python3.10/site-packages/azure_storage_common-2.1.0.dist-info/RECORD
./lib/python3.10/site-packages/azure_storage_common-2.1.0.dist-info/REQUESTED
./lib/python3.10/site-packages/azure_storage_common-2.1.0.dist-info/top_level.txt
./lib/python3.10/site-packages/azure_storage_common-2.1.0.dist-info/WHEEL
./lib/python3.10/site-packages/azure/storage/common/_auth.py
./lib/python3.10/site-packages/azure/storage/common/cloudstorageaccount.py
./lib/python3.10/site-packages/azure/storage/common/_common_conversion.py
./lib/python3.10/site-packages/azure/storage/common/_connection.py
./lib/python3.10/site-packages/azure/storage/common/_constants.py
./lib/python3.10/site-packages/azure/storage/common/_deserialization.py
./lib/python3.10/site-packages/azure/storage/common/_encryption.py
./lib/python3.10/site-packages/azure/storage/common/_error.py
./lib/python3.10/site-packages/azure/storage/common/_http/
./lib/python3.10/site-packages/azure/storage/common/_http/httpclient.py
./lib/python3.10/site-packages/azure/storage/common/_http/__init__.py
./lib/python3.10/site-packages/azure/storage/common/_http/__pycache__/
./lib/python3.10/site-packages/azure/storage/common/_http/__pycache__/httpclient.cpython-310.pyc
./lib/python3.10/site-packages/azure/storage/common/_http/__pycache__/__init__.cpython-310.pyc
./lib/python3.10/site-packages/azure/storage/common/__init__.py
./lib/python3.10/site-packages/azure/storage/common/models.py
./lib/python3.10/site-packages/azure/storage/common/__pycache__/
./lib/python3.10/site-packages/azure/storage/common/__pycache__/_auth.cpython-310.pyc
./lib/python3.10/site-packages/azure/storage/common/__pycache__/cloudstorageaccount.cpython-310.pyc
./lib/python3.10/site-packages/azure/storage/common/__pycache__/_common_conversion.cpython-310.pyc
./lib/python3.10/site-packages/azure/storage/common/__pycache__/_connection.cpython-310.pyc
./lib/python3.10/site-packages/azure/storage/common/__pycache__/_constants.cpython-310.pyc
./lib/python3.10/site-packages/azure/storage/common/__pycache__/_deserialization.cpython-310.pyc
./lib/python3.10/site-packages/azure/storage/common/__pycache__/_encryption.cpython-310.pyc
./lib/python3.10/site-packages/azure/storage/common/__pycache__/_error.cpython-310.pyc
./lib/python3.10/site-packages/azure/storage/common/__pycache__/__init__.cpython-310.pyc
./lib/python3.10/site-packages/azure/storage/common/__pycache__/models.cpython-310.pyc
./lib/python3.10/site-packages/azure/storage/common/__pycache__/retry.cpython-310.pyc
./lib/python3.10/site-packages/azure/storage/common/__pycache__/_serialization.cpython-310.pyc
./lib/python3.10/site-packages/azure/storage/common/__pycache__/sharedaccesssignature.cpython-310.pyc
./lib/python3.10/site-packages/azure/storage/common/__pycache__/storageclient.cpython-310.pyc
./lib/python3.10/site-packages/azure/storage/common/__pycache__/tokencredential.cpython-310.pyc
./lib/python3.10/site-packages/azure/storage/common/retry.py
./lib/python3.10/site-packages/azure/storage/common/_serialization.py
./lib/python3.10/site-packages/azure/storage/common/sharedaccesssignature.py
./lib/python3.10/site-packages/azure/storage/common/storageclient.py
./lib/python3.10/site-packages/azure/storage/common/tokencredential.py

@jnasselle
Copy link
Member

jnasselle commented Mar 20, 2025

ARM64 Compilation/Installation from sources

Done building server

Wait for success...
success
Removing old SCA policies...
Installing SCA policies...
Installing additional SCA policies...
Makefile:2685: warning: overriding recipe for target 'win32/ui_resource.o'
Makefile:2625: warning: ignoring old recipe for target 'win32/ui_resource.o'
Makefile:2688: warning: overriding recipe for target 'win32/auth_resource.o'
Makefile:2628: warning: ignoring old recipe for target 'win32/auth_resource.o'
mkdir -p /var/ossec/framework/python
cp external/cpython.tar.gz /var/ossec/framework/python/cpython.tar.gz && tar -xf /var/ossec/framework/python/cpython.tar.gz -C /var/ossec/framework/python && rm -rf /var/ossec/framework/python/cpython.tar.gz
find /var/ossec/framework/python -name "*libpython3.10.so.1.0" -exec ln -f {} /var/ossec/lib/libpython3.10.so.1.0 \;
cd ../framework && /var/ossec/framework/python/bin/python3 -m pip install . --use-pep517 --prefix=/var/ossec/framework/python && rm -rf build/
Processing /home/ubuntu/wazuh-enhancement-27249-upgrade-embedded-python-to-3.10.16/framework
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Preparing metadata (pyproject.toml) ... done
Building wheels for collected packages: wazuh
  Building wheel for wazuh (pyproject.toml) ... done
  Created wheel for wazuh: filename=wazuh-4.13.0-py3-none-any.whl size=312714 sha256=921850f5465aca9ba999fb96b996a7b038a5ae90a5c7a580ebab6c37acf1d9a1
  Stored in directory: /tmp/pip-ephem-wheel-cache-94cq0uke/wheels/c3/f2/c1/8d040632184c0264ebb49e88bbf53f96db3f43843977a105f0
Successfully built wazuh
Installing collected packages: wazuh
Successfully installed wazuh-4.13.0
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv

[notice] A new release of pip is available: 23.3.2 -> 25.0.1
[notice] To update, run: /var/ossec/framework/python/bin/python3 -m pip install --upgrade pip
chown -R root:wazuh /var/ossec/framework/python
chmod -R o=- /var/ossec/framework/python
cd ../api && /var/ossec/framework/python/bin/python3 -m pip install . --use-pep517 --prefix=/var/ossec/framework/python && rm -rf build/
Processing /home/ubuntu/wazuh-enhancement-27249-upgrade-embedded-python-to-3.10.16/api
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Preparing metadata (pyproject.toml) ... done
Building wheels for collected packages: api
  Building wheel for api (pyproject.toml) ... done
  Created wheel for api: filename=api-4.13.0-py3-none-any.whl size=163267 sha256=c0d681e2c4089b6658fa444ee4573f3fcc6935a77513e3c2d1a395c33107f53d
  Stored in directory: /tmp/pip-ephem-wheel-cache-oddcslgc/wheels/49/d5/c1/44823666fd6f994d9816b0db5f66b8e079d421bb068a080667
Successfully built api
Installing collected packages: api
Successfully installed api-4.13.0
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv

[notice] A new release of pip is available: 23.3.2 -> 25.0.1
[notice] To update, run: /var/ossec/framework/python/bin/python3 -m pip install --upgrade pip
cd ../tools/mitre && /var/ossec/framework/python/bin/python3 mitredb.py -d /var/ossec/var/db/mitre.db
Generating self-signed certificate for wazuh-authd...


Created symlink /etc/systemd/system/multi-user.target.wants/wazuh-manager.service → /etc/systemd/system/wazuh-manager.service.
Starting Wazuh...
server

 - Configuration finished properly.

 - To start Wazuh:
      /var/ossec/bin/wazuh-control start

 - To stop Wazuh:
      /var/ossec/bin/wazuh-control stop

 - The configuration can be viewed or modified at /var/ossec/etc/ossec.conf


   Thanks for using Wazuh.
   Please don't hesitate to contact us if you need help or find
   any bugs.

   Use our public Mailing List at:
          https://groups.google.com/forum/#!forum/wazuh

   More information can be found at:
          - http://www.wazuh.com

    ---  Press ENTER to finish (maybe more information below). ---

 - In order to connect agent and server, you need to add each agent to the server.

   More information at: 
   https://documentation.wazuh.com/


root@ip-172-31-47-3:/home/ubuntu/wazuh-enhancement-27249-upgrade-embedded-python-to-3.10.16# /var/ossec/framework/python/bin/python3 -c "import sysconfig; print(sysconfig.get_config_var('CONFIG_ARGS'))"
'--prefix=/var/ossec/framework/python' '--libdir=/var/ossec/framework/python/lib' '--enable-shared' '--with-openssl=/wazuh/src/external/openssl/' 'LDFLAGS= -L/wazuh/src -lwazuhext -Wl,-rpath,'\''$ORIGIN/../../../lib'\'',--disable-new-dtags' 'CPPFLAGS=-I/wazuh/src/external/openssl/' '--enable-optimizations'


/var/ossec/framework/python/bin/python3 --version
Python 3.10.16
file /var/ossec/framework/python/bin/python3.10
/var/ossec/framework/python/bin/python3.10: ELF 64-bit LSB executable, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, for GNU/Linux 3.7.0, with debug_info, not stripped

AMD64 Compilation/Installation from sources

Done building server

Wait for success...
success
Removing old SCA policies...
Installing SCA policies...
Installing additional SCA policies...
Makefile:2685: warning: overriding recipe for target 'win32/ui_resource.o'
Makefile:2625: warning: ignoring old recipe for target 'win32/ui_resource.o'
Makefile:2688: warning: overriding recipe for target 'win32/auth_resource.o'
Makefile:2628: warning: ignoring old recipe for target 'win32/auth_resource.o'
mkdir -p /var/ossec/framework/python
cp external/cpython.tar.gz /var/ossec/framework/python/cpython.tar.gz && tar -xf /var/ossec/framework/python/cpython.tar.gz -C /var/ossec/framework/python && rm -rf /var/ossec/framework/python/cpython.tar.gz
find /var/ossec/framework/python -name "*libpython3.10.so.1.0" -exec ln -f {} /var/ossec/lib/libpython3.10.so.1.0 \;
cd ../framework && /var/ossec/framework/python/bin/python3 -m pip install . --use-pep517 --prefix=/var/ossec/framework/python && rm -rf build/
Processing /root/repos/wazuh/framework
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Preparing metadata (pyproject.toml) ... done
Building wheels for collected packages: wazuh
  Building wheel for wazuh (pyproject.toml) ... done
  Created wheel for wazuh: filename=wazuh-4.13.0-py3-none-any.whl size=1575249 sha256=e5992f0763bcea00456aa92fcd3f0a3f17d93aee2a32365dbcbaa8e58e404876
  Stored in directory: /tmp/pip-ephem-wheel-cache-vmggf9ya/wheels/79/99/7a/4f717dda21792c1184b4e159e9217b15133f8e634924627551
Successfully built wazuh
Installing collected packages: wazuh
Successfully installed wazuh-4.13.0
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv

[notice] A new release of pip is available: 23.3.2 -> 25.0.1
[notice] To update, run: /var/ossec/framework/python/bin/python3 -m pip install --upgrade pip
chown -R root:wazuh /var/ossec/framework/python
chmod -R o=- /var/ossec/framework/python
cd ../api && /var/ossec/framework/python/bin/python3 -m pip install . --use-pep517 --prefix=/var/ossec/framework/python && rm -rf build/
Processing /root/repos/wazuh/api
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Preparing metadata (pyproject.toml) ... done
Building wheels for collected packages: api
  Building wheel for api (pyproject.toml) ... done
  Created wheel for api: filename=api-4.13.0-py3-none-any.whl size=163267 sha256=196a4000b8ee5a07a03b917d8c063aa0b4674451e8833aa344e8589a09eb9974
  Stored in directory: /tmp/pip-ephem-wheel-cache-n__v2crx/wheels/97/bc/0a/7b8acaa0bd6aaf49450fdb11db6eb5235ff9962f26c9dd1096
Successfully built api
Installing collected packages: api
Successfully installed api-4.13.0
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv

[notice] A new release of pip is available: 23.3.2 -> 25.0.1
[notice] To update, run: /var/ossec/framework/python/bin/python3 -m pip install --upgrade pip
cd ../tools/mitre && /var/ossec/framework/python/bin/python3 mitredb.py -d /var/ossec/var/db/mitre.db
Generating self-signed certificate for wazuh-authd...


Starting Wazuh...
server

 - Configuration finished properly.

 - To start Wazuh:
      /var/ossec/bin/wazuh-control start

 - To stop Wazuh:
      /var/ossec/bin/wazuh-control stop

 - The configuration can be viewed or modified at /var/ossec/etc/ossec.conf


   Thanks for using Wazuh.
   Please don't hesitate to contact us if you need help or find
   any bugs.

   Use our public Mailing List at:
          https://groups.google.com/forum/#!forum/wazuh

   More information can be found at:
          - http://www.wazuh.com

    ---  Press ENTER to finish (maybe more information below). ---

 - In order to connect agent and server, you need to add each agent to the server.

   More information at: 
   https://documentation.wazuh.com/

root@wazuh-dev:~/repos/wazuh# /var/ossec/framework/python/bin/python3 -c "import sysconfig; print(sysconfig.get_config_var('CONFIG_ARGS'))"
'--prefix=/var/ossec/framework/python' '--libdir=/var/ossec/framework/python/lib' '--enable-shared' '--with-openssl=/wazuh/src/external/openssl/' 'LDFLAGS= -L/wazuh/src -lwazuhext -Wl,-rpath,'\''$ORIGIN/../../../lib'\'',--disable-new-dtags' 'CPPFLAGS=-I/wazuh/src/external/openssl/' '--enable-optimizations'
root@wazuh-dev:~/repos/wazuh# /var/ossec/framework/python/bin/python3 --version
Python 3.10.16
root@wazuh-dev:~/repos/wazuh# file /var/ossec/framework/python/bin/python3.10
/var/ossec/framework/python/bin/python3.10: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, for GNU/Linux 2.6.32, with debug_info, not stripped

@wazuhci wazuhci moved this from In progress to In review in XDR+SIEM/Release 4.13.0 Mar 20, 2025
@wazuhci wazuhci moved this from In review to Pending final review in XDR+SIEM/Release 4.13.0 Mar 20, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
level/task type/enhancement New feature or request
Projects
Status: Pending final review
Development

Successfully merging a pull request may close this issue.

3 participants