Stack overflow error caused by hjson parsing of untrusted JSON String
Description
Using hjson 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 org.hjson.HjsonParser.read(HjsonParser.java:454)
at org.hjson.HjsonParser.readArray(HjsonParser.java:165)
at org.hjson.HjsonParser.readValue(HjsonParser.java:118)
at org.hjson.HjsonParser.readArray(HjsonParser.java:173)
at org.hjson.HjsonParser.readValue(HjsonParser.java:118)
at org.hjson.HjsonParser.readArray(HjsonParser.java:173)
at org.hjson.HjsonParser.readValue(HjsonParser.java:118)
at org.hjson.HjsonParser.readArray(HjsonParser.java:173)
at org.hjson.HjsonParser.readValue(HjsonParser.java:118)
at org.hjson.HjsonParser.readArray(HjsonParser.java:173)
at org.hjson.HjsonParser.readValue(HjsonParser.java:118)
at org.hjson.HjsonParser.readArray(HjsonParser.java:173)
at org.hjson.HjsonParser.readValue(HjsonParser.java:118)
at org.hjson.HjsonParser.readArray(HjsonParser.java:173)
Stack overflow error caused by hjson parsing of untrusted JSON String
Description
Using hjson 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
PoC
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. (https://github.com/FasterXML/jackson-databind/commit/fcfc4998ec23f0b1f7f8a9521c2b317b6c25892b)
Refer to the GSON solution: Change the recursive processing on deeply nested arrays or JSON objects to stack+iteration processing.((https://github.com/google/gson/commit/2d01d6a20f39881c692977564c1ea591d9f39027))