certify
certify copied to clipboard
Certify.Service.Worker-1.0.0: 4 vulnerabilities (highest severity is: 7.5)
Vulnerable Library - Certify.Service.Worker-1.0.0
Path to dependency file: /src/Certify.Server/Certify.Server.Api.Public.Tests/Certify.Server.Api.Public.Tests.csproj
Path to vulnerable library: /home/wss-scanner/.nuget/packages/microsoft.extensions.caching.memory/6.0.1/microsoft.extensions.caching.memory.6.0.1.nupkg
Found in HEAD commit: 18b1cb1cb25b8f45d42d8a942e5154cd46ccda78
Vulnerabilities
| CVE | Severity | Dependency | Type | Fixed in (Certify.Service.Worker version) | Remediation Possible** | |
|---|---|---|---|---|---|---|
| CVE-2024-48924 | 7.5 | messagepack.2.1.90.nupkg | Transitive | N/A* | ❌ | |
| CVE-2024-43485 | 7.5 | system.text.json.6.0.0.nupkg | Transitive | N/A* | ❌ | |
| CVE-2024-43483 | 7.5 | microsoft.extensions.caching.memory.6.0.1.nupkg | Transitive | N/A* | ❌ | |
| CVE-2019-0820 | 7.5 | system.text.regularexpressions.4.3.0.nupkg | Transitive | N/A* | ❌ |
*For some transitive vulnerabilities, there is no version of direct dependency with a fix. Check the "Details" section below to see if there is a version of transitive dependency where vulnerability is fixed.
**In some cases, Remediation PR cannot be created automatically for a vulnerability despite the availability of remediation
Details
CVE-2024-48924
Vulnerable Library - messagepack.2.1.90.nupkg
Extremely Fast MessagePack(MsgPack) Serializer for C#(.NET, .NET Core, Unity, Xamarin).
Library home page: https://api.nuget.org/packages/messagepack.2.1.90.nupkg
Path to dependency file: /src/Certify.Server/Certify.Server.Api.Public.Tests/Certify.Server.Api.Public.Tests.csproj
Path to vulnerable library: /home/wss-scanner/.nuget/packages/messagepack/2.1.90/messagepack.2.1.90.nupkg
Dependency Hierarchy:
- Certify.Service.Worker-1.0.0 (Root Library)
- Certify.Server.Core-1.0.0
- microsoft.aspnetcore.signalr.protocols.messagepack.6.0.10.nupkg
- :x: messagepack.2.1.90.nupkg (Vulnerable Library)
- microsoft.aspnetcore.signalr.protocols.messagepack.6.0.10.nupkg
- Certify.Server.Core-1.0.0
Found in HEAD commit: 18b1cb1cb25b8f45d42d8a942e5154cd46ccda78
Found in base branch: development
Vulnerability Details
Impact
When this library is used to deserialize messagepack data from an untrusted source, there is a risk of a denial of service attack by an attacker that sends data contrived to produce hash collisions, leading to large CPU consumption disproportionate to the size of the data being deserialized.
This is similar to a prior advisory, which provided an inadequate fix for the hash collision part of the vulnerability.
Patches
The following steps are required to mitigate this risk.
- Upgrade to a version of the library where a fix is available.
- Review the steps in this previous advisory to ensure you have your application configured for untrusted data.
Workarounds
If upgrading MessagePack to a patched version is not an option for you, you may apply a manual workaround as follows:
- Declare a class that derives from
MessagePackSecurity. - Override the
GetHashCollisionResistantEqualityComparer<T>method to provide a collision-resistant hash function of your own and avoid callingbase.GetHashCollisionResistantEqualityComparer<T>(). - Configure a
MessagePackSerializerOptionswith an instance of your derived type by callingWithSecurityon an existing options object. - Use your custom options object for all deserialization operations. This may be by setting the
MessagePackSerializer.DefaultOptionsstatic property, if you call methods that rely on this default property, and/or by passing in the options object explicitly to anyDeserializemethod.
References
- Learn more about best security practices when reading untrusted data with MessagePack 1.x or MessagePack 2.x.
- The .NET team's discussion on hash collision vulnerabilities of their
HashCodestruct.
For more information
If you have any questions or comments about this advisory:
- Start a public discussion
- Email us privately
Publish Date: 2024-10-17
URL: CVE-2024-48924
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
Suggested Fix
Type: Upgrade version
Origin: https://github.com/MessagePack-CSharp/MessagePack-CSharp/security/advisories/GHSA-4qm4-8hg2-g2xm
Release Date: 2024-10-17
Fix Resolution: MessagePack - 2.5.187,3.0.214-rc.1
Step up your Open Source Security Game with Mend here
CVE-2024-43485
Vulnerable Library - system.text.json.6.0.0.nupkg
Provides high-performance and low-allocating types that serialize objects to JavaScript Object Notat...
Library home page: https://api.nuget.org/packages/system.text.json.6.0.0.nupkg
Path to dependency file: /src/Certify.Server/Certify.Server.Api.Public.Tests/Certify.Server.Api.Public.Tests.csproj
Path to vulnerable library: /home/wss-scanner/.nuget/packages/system.text.json/6.0.0/system.text.json.6.0.0.nupkg
Dependency Hierarchy:
- Certify.Service.Worker-1.0.0 (Root Library)
- microsoft.extensions.hosting.6.0.1.nupkg
- microsoft.extensions.logging.eventsource.6.0.0.nupkg
- :x: system.text.json.6.0.0.nupkg (Vulnerable Library)
- microsoft.extensions.logging.eventsource.6.0.0.nupkg
- microsoft.extensions.hosting.6.0.1.nupkg
Found in HEAD commit: 18b1cb1cb25b8f45d42d8a942e5154cd46ccda78
Found in base branch: development
Vulnerability Details
.NET and Visual Studio Denial of Service Vulnerability
Publish Date: 2024-10-08
URL: CVE-2024-43485
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
Suggested Fix
Type: Upgrade version
Origin: https://github.com/advisories/GHSA-8g4q-xg66-9fp4
Release Date: 2024-10-08
Fix Resolution: System.Text.Json - 6.0.10,8.0.5
Step up your Open Source Security Game with Mend here
CVE-2024-43483
Vulnerable Library - microsoft.extensions.caching.memory.6.0.1.nupkg
In-memory cache implementation of Microsoft.Extensions.Caching.Memory.IMemoryCache.
Library home page: https://api.nuget.org/packages/microsoft.extensions.caching.memory.6.0.1.nupkg
Path to dependency file: /src/Certify.Server/Certify.Server.Api.Public.Tests/Certify.Server.Api.Public.Tests.csproj
Path to vulnerable library: /home/wss-scanner/.nuget/packages/microsoft.extensions.caching.memory/6.0.1/microsoft.extensions.caching.memory.6.0.1.nupkg
Dependency Hierarchy:
- Certify.Service.Worker-1.0.0 (Root Library)
- Certify.Server.Core-1.0.0
- microsoft.aspnetcore.authentication.certificate.6.0.10.nupkg
- :x: microsoft.extensions.caching.memory.6.0.1.nupkg (Vulnerable Library)
- microsoft.aspnetcore.authentication.certificate.6.0.10.nupkg
- Certify.Server.Core-1.0.0
Found in HEAD commit: 18b1cb1cb25b8f45d42d8a942e5154cd46ccda78
Found in base branch: development
Vulnerability Details
.NET, .NET Framework, and Visual Studio Denial of Service Vulnerability
Publish Date: 2024-10-08
URL: CVE-2024-43483
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
Suggested Fix
Type: Upgrade version
Origin: https://github.com/dotnet/runtime/security/advisories/GHSA-qj66-m88j-hmgj
Release Date: 2024-10-08
Fix Resolution: System.IO.Packaging - 6.0.1,8.0.1,9.0.0-rc.2.24473.5, Microsoft.Extensions.Caching.Memory - 6.0.2,8.0.1,9.0.0-rc.2.24473.5, System.Security.Cryptography.Cose - 8.0.1,9.0.0-rc.2.24473.5
Step up your Open Source Security Game with Mend here
CVE-2019-0820
Vulnerable Library - system.text.regularexpressions.4.3.0.nupkg
Provides the System.Text.RegularExpressions.Regex class, an implementation of a regular expression e...
Library home page: https://api.nuget.org/packages/system.text.regularexpressions.4.3.0.nupkg
Path to dependency file: /src/Certify.Server/Certify.Server.Api.Public.Tests/Certify.Server.Api.Public.Tests.csproj
Path to vulnerable library: /home/wss-scanner/.nuget/packages/system.text.regularexpressions/4.3.0/system.text.regularexpressions.4.3.0.nupkg
Dependency Hierarchy:
- Certify.Service.Worker-1.0.0 (Root Library)
- Certify.Server.Core-1.0.0
- Certify.Core-1.0.0
- Certify.Shared.Extensions-1.0.0
- microsoft.azure.management.appservice.fluent.1.38.1.nupkg
- microsoft.azure.management.storage.fluent.1.38.1.nupkg
- microsoft.azure.management.resourcemanager.fluent.1.38.1.nupkg
- microsoft.rest.clientruntime.azure.authentication.2.4.1.nupkg
- microsoft.identitymodel.clients.activedirectory.4.3.0.nupkg
- system.xml.xdocument.4.3.0.nupkg
- system.xml.readerwriter.4.3.0.nupkg
- :x: system.text.regularexpressions.4.3.0.nupkg (Vulnerable Library)
- system.xml.readerwriter.4.3.0.nupkg
- system.xml.xdocument.4.3.0.nupkg
- microsoft.identitymodel.clients.activedirectory.4.3.0.nupkg
- microsoft.rest.clientruntime.azure.authentication.2.4.1.nupkg
- microsoft.azure.management.resourcemanager.fluent.1.38.1.nupkg
- microsoft.azure.management.storage.fluent.1.38.1.nupkg
- microsoft.azure.management.appservice.fluent.1.38.1.nupkg
- Certify.Shared.Extensions-1.0.0
- Certify.Core-1.0.0
- Certify.Server.Core-1.0.0
Found in HEAD commit: 18b1cb1cb25b8f45d42d8a942e5154cd46ccda78
Found in base branch: development
Vulnerability Details
A denial of service vulnerability exists when .NET Framework and .NET Core improperly process RegEx strings, aka '.NET Framework and .NET Core Denial of Service Vulnerability'. This CVE ID is unique from CVE-2019-0980, CVE-2019-0981. Mend Note: After conducting further research, Mend has determined that CVE-2019-0820 only affects environments with versions 4.3.0 and 4.3.1 only on netcore50 environment of system.text.regularexpressions.nupkg.
Publish Date: 2019-05-16
URL: CVE-2019-0820
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
Suggested Fix
Type: Upgrade version
Origin: https://github.com/advisories/GHSA-cmhx-cq75-c4mj
Release Date: 2019-05-16
Fix Resolution: System.Text.RegularExpressions - 4.3.1
Step up your Open Source Security Game with Mend here