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

github.com/aws/amazon-ssm-agent-v0.0.0-20181107231829-b9654b268afc: 2 vulnerabilities (highest severity is: 9.8) - autoclosed #110

Closed
mend-for-github-com bot opened this issue Jun 20, 2023 · 3 comments
Labels
Mend: dependency security vulnerability Security vulnerability detected by WhiteSource

Comments

@mend-for-github-com
Copy link

Vulnerable Library - github.com/aws/amazon-ssm-agent-v0.0.0-20181107231829-b9654b268afc

An agent to enable remote management of your EC2 instances, on-premises servers, or virtual machines (VMs).

Library home page: https://proxy.golang.org/github.com/aws/amazon-ssm-agent/@v/v0.0.0-20181107231829-b9654b268afc.zip

Vulnerabilities

CVE Severity CVSS Dependency Type Fixed in (github.com/aws/amazon-ssm-agent-v0.0.0 version) Remediation Available
CVE-2018-1285 Critical 9.8 github.com/aws/amazon-ssm-agent-v0.0.0-20181107231829-b9654b268afc Direct log4net - 2.0.10
WS-2022-0161 High 7.5 github.com/aws/amazon-ssm-agent-v0.0.0-20181107231829-b9654b268afc Direct Newtonsoft.Json - 13.0.1;Microsoft.Extensions.ApiDescription.Server - 6.0.0

Details

CVE-2018-1285

Vulnerable Library - github.com/aws/amazon-ssm-agent-v0.0.0-20181107231829-b9654b268afc

An agent to enable remote management of your EC2 instances, on-premises servers, or virtual machines (VMs).

Library home page: https://proxy.golang.org/github.com/aws/amazon-ssm-agent/@v/v0.0.0-20181107231829-b9654b268afc.zip

Dependency Hierarchy:

  • github.com/aws/amazon-ssm-agent-v0.0.0-20181107231829-b9654b268afc (Vulnerable Library)

Found in base branch: brightcove

Vulnerability Details

Apache log4net versions before 2.0.10 do not disable XML external entities when parsing log4net configuration files. This allows for XXE-based attacks in applications that accept attacker-controlled log4net configuration files.

Publish Date: 2020-05-11

URL: CVE-2018-1285

CVSS 3 Score Details (9.8)

Base Score Metrics:

  • Exploitability Metrics:
    • Attack Vector: Network
    • Attack Complexity: Low
    • Privileges Required: None
    • User Interaction: None
    • Scope: Unchanged
  • Impact Metrics:
    • Confidentiality Impact: High
    • Integrity Impact: High
    • Availability Impact: High

For more information on CVSS3 Scores, click here.

Suggested Fix

Type: Upgrade version

Release Date: 2020-05-11

Fix Resolution: log4net - 2.0.10

WS-2022-0161

Vulnerable Library - github.com/aws/amazon-ssm-agent-v0.0.0-20181107231829-b9654b268afc

An agent to enable remote management of your EC2 instances, on-premises servers, or virtual machines (VMs).

Library home page: https://proxy.golang.org/github.com/aws/amazon-ssm-agent/@v/v0.0.0-20181107231829-b9654b268afc.zip

Dependency Hierarchy:

  • github.com/aws/amazon-ssm-agent-v0.0.0-20181107231829-b9654b268afc (Vulnerable Library)

Found in base branch: brightcove

Vulnerability 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). \n\nThe serialization and deserialization path have different properties regarding the issue.\n\nDeserializing 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.\n\nSerializing methods (like JsonConvert.Serialize or JObject.ToString) will throw StackOverFlow exception with the nesting level of around 20k.\n\nTo 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:\n\n \nJsonConvert.DefaultSettings = () => new JsonSerializerSettings { MaxDepth = 128 };\n\n\nRepro code:\n\n//Create a string representation of an highly nested object (JSON serialized)\nint nRep = 25000;\nstring json = string.Concat(Enumerable.Repeat(\"{a:\", nRep)) + \"1\" +\n string.Concat(Enumerable.Repeat(\"}\", nRep));\n\n//Parse this object (leads to high CPU/RAM consumption)\nvar parsedJson = JsonConvert.DeserializeObject(json);\n\n// Methods below all throw stack overflow with nRep around 20k and higher\n// string a = parsedJson.ToString();\n// string b = JsonConvert.SerializeObject(parsedJson);\n\n\n### Additional affected product and version information\nThe 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.**

Publish Date: 2022-06-22

URL: WS-2022-0161

CVSS 3 Score Details (7.5)

Base Score Metrics:

  • Exploitability Metrics:
    • Attack Vector: Network
    • Attack Complexity: Low
    • Privileges Required: None
    • User Interaction: None
    • Scope: Unchanged
  • Impact Metrics:
    • Confidentiality Impact: None
    • Integrity Impact: None
    • Availability Impact: High

For more information on CVSS3 Scores, click here.

Suggested Fix

Type: Upgrade version

Release Date: 2022-06-22

Fix Resolution: Newtonsoft.Json - 13.0.1;Microsoft.Extensions.ApiDescription.Server - 6.0.0

@mend-for-github-com mend-for-github-com bot added the Mend: dependency security vulnerability Security vulnerability detected by WhiteSource label Jun 20, 2023
@mend-for-github-com mend-for-github-com bot changed the title github.com/aws/amazon-ssm-agent-v0.0.0-20181107231829-b9654b268afc: 2 vulnerabilities (highest severity is: 9.8) github.com/aws/amazon-ssm-agent-v0.0.0-20181107231829-b9654b268afc: 2 vulnerabilities (highest severity is: 9.8) - autoclosed Jun 20, 2023
@mend-for-github-com mend-for-github-com bot changed the title github.com/aws/amazon-ssm-agent-v0.0.0-20181107231829-b9654b268afc: 2 vulnerabilities (highest severity is: 9.8) github.com/aws/amazon-ssm-agent-v0.0.0-20181107231829-b9654b268afc: 2 vulnerabilities (highest severity is: 9.8) - autoclosed Jun 20, 2023
@mend-for-github-com
Copy link
Author

ℹ️ This issue was automatically closed by Mend because it is a duplicate of an existing issue: #111

2 similar comments
@mend-for-github-com
Copy link
Author

ℹ️ This issue was automatically closed by Mend because it is a duplicate of an existing issue: #111

@mend-for-github-com
Copy link
Author

ℹ️ This issue was automatically closed by Mend because it is a duplicate of an existing issue: #111

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Mend: dependency security vulnerability Security vulnerability detected by WhiteSource
Projects
None yet
Development

No branches or pull requests

0 participants