Hello Alankrit!
I'm not sure if I'm understanding your question correctly, but as far as Wazuh Cloud is concerned, for secure data storage, we leverage AWS’s robust infrastructure which includes encrypted storage solutions like Amazon S3 and EBS (Elastic Block Store), ensuring data at rest is protected against unauthorized access.
Regarding data transfer, we employ secure transfer protocols such as HTTPS and TLSv1.2 for encrypting data in transit.
In Wazuh, checksum values for files are primarily handled through its
File Integrity Monitoring (FIM) feature.
Checksum Calculation: Wazuh uses cryptographic hash functions (like SHA-1, SHA-256, or MD5, depending on configuration) to compute the checksum of monitored files. These functions generate a unique string of characters (the hash) that serves as the file’s fingerprint.
Database Storage: Once calculated, these checksums (hashes) are stored in a database on the Wazuh manager. This database maintains the integrity status of the monitored files across all the agents.
Real-Time Monitoring: Wazuh can be configured to monitor files in real-time. When a monitored file is modified, Wazuh recalculates its checksum and compares it with the previously stored value. If there is a difference, an alert is generated indicating a change.
Alerts and Reports: Any change detected, such as a modification in the checksum, triggers alerts. These alerts can include detailed information about the file and its new and previous checksum values.
Hope this information helps.
Regards.