Last updated: August 21, 2026 at 10:03 AM UTC
All 747 Vulnerability 290 Breach 129 Threat 321 Defense 7
Tag: java (2 articles)Clear

Unpatched Fastjson flaw lets a single JSON request run code on Spring Boot apps

Security firms ThreatBook and Imperva report attackers targeting a critical flaw in Fastjson, Alibaba's widely used JSON library for Java. On affected Spring Boot applications, a malicious JSON request can execute code without authentication, running with the privileges of the Java process. Tracked as CVE-2026-16723 with an Alibaba-assigned score of 9.0, the confirmed chain needs Fastjson 1.2.68 through 1.2.83, a Spring Boot executable fat-JAR, a network-reachable path that feeds attacker-controlled JSON to the parser, and SafeMode left at its disabled default. Notably, the AutoType feature can stay off and no classpath gadget is required. As of July 25, Alibaba had not shipped a fixed 1.x version.

Check
Inventory Java services for Fastjson 1.x on the classpath, identify any endpoint that parses untrusted JSON, and enable SafeMode now rather than waiting for a fixed release.
Affected
Spring Boot applications packaged as fat-JARs using Fastjson 1.2.68 through 1.2.83 with SafeMode disabled (CVE-2026-16723); an unauthenticated JSON request reaches code execution, and no fixed 1.x version exists yet.
Fix
Enable SafeMode by setting fastjson.parser.safeMode to true, or switch to the noneautotype build, restrict network paths that parse untrusted JSON, and plan migration off Fastjson 1.x.

QuimaRAT rents out a cross-platform Java trojan for Windows, Linux, and macOS

LevelBlue detailed QuimaRAT, a new Java-based remote access trojan sold as a service that runs across Windows, Linux, and macOS from the same codebase. Subscriptions range from about $150 for a month to $1,200 for lifetime access, lowering the bar for attackers to get cross-platform reach. Built around a modular design, it expands its capabilities through encrypted plugins that operators can load, update, or remove from their command server on the fly. It also uses several obfuscation techniques to keep changing how it looks to security tools without altering its behavior, so signatures based on its appearance are likely to go stale quickly.

Check
Ensure endpoint protection covers Linux and macOS as well as Windows, watch for unexpected Java processes and outbound command-and-control traffic, and be wary of behavior-independent signatures given this malware's shifting fingerprints.
Affected
Organizations running mixed Windows, Linux, and macOS fleets; QuimaRAT's single cross-platform codebase and rented model let even low-skill attackers gain modular remote access across all three operating systems.
Fix
Deploy endpoint detection across all operating systems including macOS and Linux, prioritize behavior-based detection over static signatures, restrict unnecessary Java runtimes, and monitor for encrypted plugin traffic to unfamiliar command-and-control servers.