-
Notifications
You must be signed in to change notification settings - Fork 596
[AutoPR- Security] Patch gdb for CVE-2025-11083, CVE-2025-11082 [MEDIUM] #14784
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
base: main
Are you sure you want to change the base?
[AutoPR- Security] Patch gdb for CVE-2025-11083, CVE-2025-11082 [MEDIUM] #14784
Conversation
Please fix the upstream reference for CVE-2025-11083 @Kanishk-Bansal |
Use this reference: bminor/binutils-gdb@9ca4996 |
Updated upstream reference for CVE-2025-11083 patch.
&& ((ufile_ptr) dst->sh_offset > filesize | ||
|| dst->sh_size > filesize - dst->sh_offset)) | ||
{ | ||
- abfd->read_only = 1; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks suspicious. This might cause a regression, where if there is wrong offset/filesize it will still allow to use the bdf object in writeable mode.
"extending past end of file"), abfd); | ||
+ /* PR ld/33457: Don't match corrupt section header. */ | ||
+ if (abfd->is_linker_input) | ||
+ return false; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: bad indentation
Auto Patch gdb for CVE-2025-11083, CVE-2025-11082.
Autosec pipeline run -> https://dev.azure.com/mariner-org/mariner-chatbot/_build/results?buildId=944714&view=results
Merge Checklist
All boxes should be checked before merging the PR (just tick any boxes which don't apply to this PR)
*-static
subpackages, etc.) have had theirRelease
tag incremented../cgmanifest.json
,./toolkit/scripts/toolchain/cgmanifest.json
,.github/workflows/cgmanifest.json
)./LICENSES-AND-NOTICES/SPECS/data/licenses.json
,./LICENSES-AND-NOTICES/SPECS/LICENSES-MAP.md
,./LICENSES-AND-NOTICES/SPECS/LICENSE-EXCEPTIONS.PHOTON
)*.signatures.json
filessudo make go-tidy-all
andsudo make go-test-coverage
passSummary
What does the PR accomplish, why was it needed?
Change Log
Does this affect the toolchain?
YES/NO
Associated issues
Links to CVEs
Test Methodology