GHSA-5crp-9r3c-p9vr

Source
https://github.com/advisories/GHSA-5crp-9r3c-p9vr
Import Source
https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2022/06/GHSA-5crp-9r3c-p9vr/GHSA-5crp-9r3c-p9vr.json
Aliases
Published
2022-06-22T15:08:47Z
Modified
2024-02-18T05:25:53.096683Z
Details

Newtonsoft.Json prior to version 13.0.1 is vulnerable to Insecure Defaults due to improper handling of expressions with high nesting level that lead to StackOverFlow exception or high CPU and RAM usage. Exploiting this vulnerability results in Denial Of Service (DoS).

The serialization and deserialization path have different properties regarding the issue.

Deserializing methods (like JsonConvert.DeserializeObject) will process the input that results in burning the CPU, allocating memory, and consuming a thread of execution. Quite high nesting level (>10kk, or 9.5MB of {a:{a:{... input) is needed to achieve the latency over 10 seconds, depending on the hardware.

Serializing methods (like JsonConvert.Serialize or JObject.ToString) will throw StackOverFlow exception with the nesting level of around 20k.

To mitigate the issue one either need to update Newtonsoft.Json to 13.0.1 or set MaxDepth parameter in the JsonSerializerSettings. This can be done globally with the following statement. After that the parsing of the nested input will fail fast with Newtonsoft.Json.JsonReaderException:

JsonConvert.DefaultSettings = () => new JsonSerializerSettings { MaxDepth = 128 };

Repro code:

//Create a string representation of an highly nested object (JSON serialized)
int nRep = 25000;
string json = string.Concat(Enumerable.Repeat("{a:", nRep)) + "1" +
 string.Concat(Enumerable.Repeat("}", nRep));

//Parse this object (leads to high CPU/RAM consumption)
var parsedJson = JsonConvert.DeserializeObject(json);

// Methods below all throw stack overflow with nRep around 20k and higher
// string a = parsedJson.ToString();
// string b = JsonConvert.SerializeObject(parsedJson);

Additional affected product and version information

The original statement about the problem only affecting IIS applications is misleading. Any application is affected, however the IIS has a behavior that stops restarting the instance after some time resulting in a harder-to-fix DoS.**

References

Affected packages

NuGet / Newtonsoft.Json

Package

Affected ranges

Type
ECOSYSTEM
Events
Introduced
0The exact introduced commit is unknown
Fixed
13.0.1

Affected versions

3.*

3.5.8

4.*

4.0.1
4.0.2
4.0.3
4.0.4
4.0.5
4.0.6
4.0.7
4.0.8
4.5.1
4.5.2
4.5.3
4.5.4
4.5.5
4.5.6
4.5.7
4.5.8
4.5.9
4.5.10
4.5.11

5.*

5.0.1
5.0.2
5.0.3
5.0.4
5.0.5
5.0.6
5.0.7
5.0.8

6.*

6.0.1-beta1
6.0.1
6.0.2
6.0.3
6.0.4
6.0.5
6.0.6
6.0.7
6.0.8

7.*

7.0.1-beta1
7.0.1-beta2
7.0.1-beta3
7.0.1

8.*

8.0.1-beta1
8.0.1-beta2
8.0.1-beta3
8.0.1-beta4
8.0.1
8.0.2
8.0.3
8.0.4-beta1

9.*

9.0.1-beta1
9.0.1
9.0.2-beta1
9.0.2-beta2

10.*

10.0.1-beta1
10.0.1
10.0.2
10.0.3

11.*

11.0.1-beta1
11.0.1-beta2
11.0.1-beta3
11.0.1
11.0.2

12.*

12.0.1-beta1
12.0.1-beta2
12.0.1
12.0.2-beta1
12.0.2-beta2
12.0.2-beta3
12.0.2
12.0.3-beta1
12.0.3-beta2
12.0.3

13.*

13.0.1-beta1
13.0.1-beta2