-
Notifications
You must be signed in to change notification settings - Fork 685
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
Fix vuln OSV-2024-382 #1698
Open
aled-ua
wants to merge
5
commits into
seladb:dev
Choose a base branch
from
aled-ua:patch-OSV-2024-382
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Fix vuln OSV-2024-382 #1698
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## dev #1698 +/- ##
==========================================
- Coverage 83.13% 83.11% -0.02%
==========================================
Files 279 279
Lines 48395 48404 +9
Branches 10246 10502 +256
==========================================
Hits 40231 40231
- Misses 7042 7049 +7
- Partials 1122 1124 +2
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
tigercosmos
reviewed
Jan 24, 2025
tigercosmos
approved these changes
Jan 31, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
[Warning] This PR is generated by AI
Pull Request Description
PR Title: Fix for Vulnerability in PcapPlusPlus - OSV-2024-382
PR Description:
UdpLayer
class, where functions were accessing data beyond the bounds of the allocated buffer. This occurred when the buffer size was insufficient for operations involving UDP header fields, leading to a heap-buffer-overflow. The issue was reported in the OSV-2024-382 vulnerability report.getSrcPort()
: Ensures that the buffer length is sufficient before accessing the source port.getDstPort()
: Ensures that the buffer length is sufficient before accessing the destination port.computeCalculateFields()
: Ensures that the buffer length is sufficient before performing length and checksum calculations.These changes ensure that unsafe memory access is avoided, improving both the security and stability of the program.
Sanitizer Report Summary:
UdpLayer
class while accessing UDP header fields. The root cause was the lack of bounds checking before accessing these fields, leading to out-of-bounds memory access.Full Sanitizer Report:
Files Modified:
Packet++/src/UdpLayer.cpp
Patch Validation: The patch has been validated and confirmed to resolve the issue identified in the sanitizer report. No new bugs were introduced.
Links: