json_reader.cpp makes use of unbounded recursion among readValue, readObject, and readArray. This can lead to user input blowing the stack. Suggest either not using recursion or making a configuration option for the maximum depth of recursion allowed.
Fixed at: https://github.com/open-source-parsers/jsoncpp/issues/88