diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1990f2e9..a7bf8862 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,11 @@ All notable changes to this project will be documented in this file.
 
 - Update Wazuh to version [4.9.0](https://github.com/wazuh/wazuh/blob/v4.9.0/CHANGELOG.md#v490)
 
+## Wazuh Docker v4.8.2
+### Added
+
+- Update Wazuh to version [4.8.2](https://github.com/wazuh/wazuh/blob/v4.8.2/CHANGELOG.md#v482)
+
 ## Wazuh Docker v4.8.1
 ### Added
 
diff --git a/README.md b/README.md
index d467dd1c..3bd8d37a 100644
--- a/README.md
+++ b/README.md
@@ -197,6 +197,7 @@ WAZUH_MONITORING_REPLICAS=0         ##
 | Wazuh version | ODFE    | XPACK  |
 |---------------|---------|--------|
 | v4.9.0        |         |        |
+| v4.8.2        |         |        |
 | v4.8.1        |         |        |
 | v4.8.0        |         |        |
 | v4.7.2        |         |        |
diff --git a/build-docker-images/wazuh-manager/config/etc/cont-init.d/2-manager b/build-docker-images/wazuh-manager/config/etc/cont-init.d/2-manager
index 9e70ace9..f0cf6ec3 100644
--- a/build-docker-images/wazuh-manager/config/etc/cont-init.d/2-manager
+++ b/build-docker-images/wazuh-manager/config/etc/cont-init.d/2-manager
@@ -112,6 +112,12 @@ function_entrypoint_scripts() {
   fi
 }
 
+function_configure_vulnerability_detection() {
+if [ "$INDEXER_PASSWORD" != "" ]; then
+  >&2 echo "Configuring password."
+  sed -i "s|VDPass|$INDEXER_PASSWORD|g" /var/ossec/etc/ossec.conf
+fi
+}
 
 # Migrate data from /wazuh-migration volume
 function_wazuh_migration
@@ -119,6 +125,9 @@ function_wazuh_migration
 # create API custom user
 function_create_custom_user
 
+# configure Vulnerabilty detection
+function_configure_vulnerability_detection
+
 # run entrypoint scripts
 function_entrypoint_scripts
 
diff --git a/multi-node/config/wazuh_cluster/wazuh_manager.conf b/multi-node/config/wazuh_cluster/wazuh_manager.conf
index 6c5d9ae7..1ec10630 100644
--- a/multi-node/config/wazuh_cluster/wazuh_manager.conf
+++ b/multi-node/config/wazuh_cluster/wazuh_manager.conf
@@ -95,91 +95,29 @@
     yes
   
 
-  
-    no
-    5m
-    6h
-    yes
+  
+    yes
+    yes
+    60m
+  
 
-    
-    
-      no
-      trusty
-      xenial
-      bionic
-      focal
-      jammy
-      1h
-    
-
-    
-    
-      no
-      buster
-      bullseye
-      bookworm
-      1h
-    
-
-    
-    
-      no
-      5
-      6
-      7
-      8
-      9
-      1h
-    
-
-    
-    
-      no
-      amazon-linux
-      amazon-linux-2
-      amazon-linux-2023
-      1h
-    
-
-    
-    
-      no
-      11-server
-      11-desktop
-      12-server
-      12-desktop
-      15-server
-      15-desktop
-      1h
-    
-
-    
-    
-      no
-      1h
-    
-
-    
-    
-      yes
-      1h
-    
-
-    
-    
-      no
-      8
-      9
-      1h
-    
-
-    
-    
-      yes
-      1h
-    
-
-  
+  
+    yes
+    
+      https://wazuh1.indexer:9200
+      https://wazuh2.indexer:9200
+      https://wazuh3.indexer:9200
+    
+    admin
+    VDPass
+    
+      
+        /etc/ssl/root-ca.pem
+      
+      /etc/ssl/filebeat.pem
+      /etc/ssl/filebeat.key
+    
+  
 
   
   
diff --git a/multi-node/config/wazuh_cluster/wazuh_worker.conf b/multi-node/config/wazuh_cluster/wazuh_worker.conf
index 341e6301..9d277622 100644
--- a/multi-node/config/wazuh_cluster/wazuh_worker.conf
+++ b/multi-node/config/wazuh_cluster/wazuh_worker.conf
@@ -95,91 +95,29 @@
     yes
   
 
-  
-    no
-    5m
-    6h
-    yes
+  
+    yes
+    yes
+    60m
+  
 
-    
-    
-      no
-      trusty
-      xenial
-      bionic
-      focal
-      jammy
-      1h
-    
-
-    
-    
-      no
-      buster
-      bullseye
-      bookworm
-      1h
-    
-
-    
-    
-      no
-      5
-      6
-      7
-      8
-      9
-      1h
-    
-
-    
-    
-      no
-      amazon-linux
-      amazon-linux-2
-      amazon-linux-2023
-      1h
-    
-
-    
-    
-      no
-      11-server
-      11-desktop
-      12-server
-      12-desktop
-      15-server
-      15-desktop
-      1h
-    
-
-    
-    
-      no
-      1h
-    
-
-    
-    
-      no
-      8
-      9
-      1h
-    
-
-    
-    
-      yes
-      1h
-    
-
-    
-    
-      yes
-      1h
-    
-
-  
+  
+    yes
+    
+      https://wazuh1.indexer:9200
+      https://wazuh2.indexer:9200
+      https://wazuh3.indexer:9200
+    
+    admin
+    VDPass
+    
+      
+        /etc/ssl/root-ca.pem
+      
+      /etc/ssl/filebeat.pem
+      /etc/ssl/filebeat.key
+    
+  
 
   
   
diff --git a/single-node/config/wazuh_cluster/wazuh_manager.conf b/single-node/config/wazuh_cluster/wazuh_manager.conf
index 0cf738f3..9dd0990c 100644
--- a/single-node/config/wazuh_cluster/wazuh_manager.conf
+++ b/single-node/config/wazuh_cluster/wazuh_manager.conf
@@ -95,91 +95,27 @@
     yes
   
 
-  
-    no
-    5m
-    6h
-    yes
+  
+    yes
+    yes
+    60m
+  
 
-    
-    
-      no
-      trusty
-      xenial
-      bionic
-      focal
-      jammy
-      1h
-    
-
-    
-    
-      no
-      buster
-      bullseye
-      bookworm
-      1h
-    
-
-    
-    
-      no
-      5
-      6
-      7
-      8
-      9
-      1h
-    
-
-    
-    
-      no
-      amazon-linux
-      amazon-linux-2
-      amazon-linux-2023
-      1h
-    
-
-    
-    
-      no
-      11-server
-      11-desktop
-      12-server
-      12-desktop
-      15-server
-      15-desktop
-      1h
-    
-
-    
-    
-      no
-      1h
-    
-
-    
-    
-      no
-      8
-      9
-      1h
-    
-
-    
-    
-      yes
-      1h
-    
-
-    
-    
-      yes
-      1h
-    
-
-  
+  
+    yes
+    
+      https://wazuh.indexer:9200
+    
+    admin
+    VDPass
+    
+      
+        /etc/ssl/root-ca.pem
+      
+      /etc/ssl/filebeat.pem
+      /etc/ssl/filebeat.key
+    
+