How to Fix CVE-2023-27532: Missing Authentication in Veeam Backup & Replication
By Sai Kiran Pandrala
| Severity | CVSS 7.5 - High |
|---|---|
| Actively exploited? | Yes, listed in CISA KEV (added 2023-08-22) |
| Affected | Veeam Backup & Replication Fixed Versions: v12 (build 12.0.0.1420 P20230223), 11a (build 11.0.1.1261 P20230227) |
| Fixed in | See vendor advisory |
| Type (CWE) | CWE-306 Missing Authentication |
Patch immediately. Actively exploited. CISA listed this in the Known Exploited Vulnerabilities catalog on 2023-08-22. Federal due date: 2023-09-12. Treat any internet-exposed instance as a priority patch.
What is CVE-2023-27532?
CVE-2023-27532 is a missing authentication issue affecting Veeam Backup & Replication disclosed on 2023-03-10. An attacker can bypass authentication and reach functions or data meant only for authorized users. CISA notes this CVE has been used in real-world attacks.
The technical detail from the advisory: Vulnerability in Veeam Backup & Replication component allows encrypted credentials stored in the configuration database to be obtained. This may lead to gaining access to the backup infrastructure hosts.
Why this matters
CISA added this CVE to the Known Exploited Vulnerabilities catalog on 2023-08-22. That listing exists because at least one confirmed in-the-wild exploitation report was filed. Federal civilian agencies are bound by BOD 22-01 to patch by 2023-09-12, and most enterprises treat that timeline as a practical floor. Opportunistic scanning for known-exploited CVEs runs continuously across the public internet, so any unpatched exposed instance is on borrowed time.
The blast radius depends on how the affected service is exposed. An internet-reachable instance with no compensating controls is the highest-risk configuration. An internal-only instance behind authenticated VPN is lower risk but still requires the patch.
Am I affected?
You are affected if you run a version listed in the Affected row above. Check your installed build of Veeam Backup & Replication against that list. If your version sits at or below the affected range and you have not applied the vendor patch noted in the Fixed in row, you are vulnerable.
For internet-facing or business-critical instances, treat this as exposure until proven otherwise. Run an asset inventory to find every install of Veeam Backup & Replication, including secondary or dev/test environments that may have been deployed and forgotten.
How to fix CVE-2023-27532
- Read the official vendor advisory linked in References below. It carries the authoritative list of patched builds and any product-specific upgrade notes.
- Inventory affected hosts before touching anything. Know how many instances you have, which are exposed, and which are HA-paired.
- Take a configuration backup of the affected device or application.
- Apply the patched build named in the Fixed in row. For HA pairs, patch the standby first, fail over, then patch the former primary.
- Restart the service or device if the vendor procedure requires it.
- Confirm the new version is running (see verification section).
- Hunt for prior compromise. Because this CVE is in the CISA KEV catalog, assume opportunistic scanning has already touched any exposed instance. Review authentication logs, look for unfamiliar accounts, and check for unexpected processes or scheduled tasks.
Patch via your OS package manager
# The exact package name and patched version are listed in the vendor advisory:
# https://www.veeam.com/kb4424
# Debian / Ubuntu
sudo apt update
sudo apt install --only-upgrade veeambackupreplication
# RHEL / Rocky / AlmaLinux / Fedora
sudo dnf upgrade veeambackupreplication
# openSUSE
sudo zypper update veeambackupreplication
# Verify the running version matches the fixed version
dpkg -s veeambackupreplication 2>/dev/null | grep -i version || rpm -q veeambackupreplication 2>/dev/null
# Windows: pull the cumulative update that ships this fix.
Install-Module PSWindowsUpdate -Force -SkipPublisherCheck
Get-WindowsUpdate -AcceptAll -Install -AutoReboot
Verify the fix landed
# 1. Confirm the running version matches the fixed-in version from the advisory:
# https://www.veeam.com/kb4424
# Use the platform-specific version probe above.
# 2. Re-scan with your vulnerability scanner (Nessus, Qualys, Tenable, OpenVAS).
# The scanner should no longer flag CVE-2023-27532 on the patched target.
# 3. Inspect recent service / kernel logs for crash loops or rollback events.
journalctl -u <service> --since "10 minutes ago"
dmesg --since "10 minutes ago"
If you can't patch immediately
Apply vendor-published mitigations only. Common interim steps:
- Restrict network exposure. Place the vulnerable service behind a VPN or block external access at the perimeter firewall.
- Disable the affected feature if the vendor advisory documents a safe way to do so.
- Increase monitoring on the affected service. Alert on any successful authentication or unusual request pattern.
If the vendor advisory does not list a workaround, none has been validated. Patching is the only remediation in that case.
How to verify the fix worked
- Check the running version of Veeam Backup & Replication matches a build named in the Fixed in row.
- Re-run your vulnerability scanner against the host. The CVE should no longer flag.
- If you applied mitigations instead of a patch, confirm those controls are still in place after the next reboot or configuration change.
- Review logs from the exposure window. Anything anomalous needs an incident-response review, not a passive note.
Frequently asked questions
Related fixes
Other vulnerabilities in the same area that are worth patching alongside this one:
- How to Fix CVE-2023-28765: CWE-200: Exposure of Sensitive Information to an Unauthorized Actor in BusinessObjects Business Intelligence Platform (Promotion Management) — CWE-200: Exposure of Sensitive Information to an Unauthorized Actor in BusinessObjects Business Intelligence Platform (Promotion Management)
- How to Fix CVE-2023-38831: Security Vulnerability in RARLAB WinRAR — Security Vulnerability in RARLAB WinRAR
- How to Fix CVE-2023-27350: Access Control Bypass in NG , Access Control Bypass in NG
- How to Fix CVE-2023-46747: F5 BIG-IP Configuration Utility Authentication Bypass , F5 BIG-IP Configuration Utility Authentication Bypass
- How to Fix CVE-2023-25717: Remote Code Execution in Ruckus Wireless Admin through , Remote Code Execution in Ruckus Wireless Admin through
Is this CVE being exploited in the wild?
Yes. CISA added CVE-2023-27532 to the Known Exploited Vulnerabilities catalog on 2023-08-22, which means at least one confirmed real-world exploitation report exists.
Do I need to take the system offline to patch?
That depends on the vendor's upgrade procedure for Veeam Backup & Replication. For HA-paired devices and clustered software, the standard pattern is to patch the standby instance first, fail over, and then patch the former primary. Read the vendor advisory for the exact steps.
Will my vendor support contract cover the patched build?
If your installation is on a supported release line, the patched build is usually a free upgrade. End-of-life or end-of-support builds may require a paid migration to a supported major version.
References
- Official vendor advisory: https://www.veeam.com/kb4424
- NVD: https://nvd.nist.gov/vuln/detail/CVE-2023-27532
- CISA KEV catalog: https://www.cisa.gov/known-exploited-vulnerabilities-catalog
- CISA KEV entry: "Veeam Backup & Replication Cloud Connect Missing Authentication for Critical Function Vulnerability" - added 2023-08-22
*Assembled from the official vendor advisory, NVD record, and CISA KEV listing on 2026-05-25. Always confirm against the vendor advisory before applying changes in production.*