Skip to main content
Emerging ThreatsMalware & Ransomware

Hackers Exploit FastJson Zero-Day in Targeted US Firm Attacks

Brightly-lit office workstation with laptop and router in background.
“Attacks are currently almost entirely targeting US-based organizations, with a few attacks in Singapore and Canada, although this will likely continue to expand globally,” Imperva says.

The warning comes as security researchers and vendors scrambled to trace active exploitation of CVE-2026-16723, a critical remote‑code‑execution flaw in the FastJson Java library. Researchers say the vulnerability can be abused without user interaction or elevated privileges and has been observed in targeted attacks against U.S. firms across multiple sectors.

CVE-2026-16723: how the flaw works, as described by researchers

FearsOff, an offensive security company, published a technical write-up earlier this month describing the weakness. According to the researchers, the root cause is FastJson’s type‑resolution logic: it performs attacker‑controlled resource lookups before enforcing AutoType restrictions. By abusing @type processing, they were able to load and execute malicious classes in Spring Boot fat‑JAR deployments without AutoType enabled and without using third‑party gadget chains.

Observed attacks and the organizations under fire

The malicious activity was observed last week by the agentic security company ThreatBook. Imperva corroborated the activity and said the campaign is “targeting a wide range of organizations, across Financial Services, Healthcare, Computing, Retail, Business, and other industries.” Imperva’s assessment emphasizes that attacks so far are focused on U.S. organizations, with a small number of incidents in Singapore and Canada.

Which FastJson versions and deployments are vulnerable

FastJson versions 1.2.68 through 1.2.83 are affected. Alibaba, the library’s developer, confirmed the issue’s critical severity and warned it is exploitable on “the most common Spring Boot deployment model.” The vendor’s advisory states: “The only deployment prerequisite is that the target runs as a Spring Boot executable fat‑jar (i.e., launched via java -jar xxx.jar).”

Alibaba also noted that specifying a target class during deserialization does not mitigate CVE-2026-16723 because attackers can embed malicious payloads within ‘Object’ or ‘Map’ fields. The advisory and subsequent reporting make clear that FastJson versions 1.2.60 and earlier, and any non‑fat‑JAR deployments, are not affected.

FastJson’s place in the ecosystem and available mitigations

FastJson is an open‑source Java library developed by Alibaba for serializing and deserializing JSON. The project’s GitHub footprint is substantial — 25,600 stars and 6,400 forks — and the library is described as especially prevalent in Chinese enterprise software and projects built on Alibaba’s platform. Imperva has also noted that FastJson 1.x is no longer actively maintained, making a backported security update unlikely.

Not all FastJson variants share the same risk. The vulnerable type‑resolution logic is not present in fastjson2, which uses an allowlist‑first model for polymorphic deserialization and does not rely on the @JSONType annotation as a trust signal. Until a patch or other remediation is available, vendors and researchers are urging developers using an affected 1.x build to immediately enable SafeMode or switch to a non‑impacted build.

What this means for Financial Services, Healthcare, and Computing

  • Financial Services: Institutions named among observed targets will need to inventory Java fat‑JAR deployments quickly, enable SafeMode where available, and consider replacing affected FastJson 1.x builds to reduce exposure.
  • Healthcare: Organizations handling sensitive clinical and personal data should treat the report as an urgent call to confirm whether Spring Boot executable fat‑jar deployments exist in production and to apply the recommended mitigations.
  • Computing (software vendors and platform operators): Given FastJson’s prevalence in some enterprise and Alibaba‑platform projects, maintainers should assess whether their builds include FastJson 1.2.68–1.2.83, and plan migration paths to non‑impacted builds or fastjson2 when practicable.

There is no patch publicly available for CVE-2026-16723 at this time, and FastJson 1.x is reportedly no longer actively maintained, leaving organizations to rely on configuration‑level mitigations or migration. The immediate, concrete question for defenders is how quickly teams can find and remediate fat‑jar deployments launched with java -jar, enable SafeMode, or migrate off affected builds before exploitation spreads beyond the currently reported targets.

Original report