-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
correct buffer overflows cause by integer overflow in openssl #5747
Merged
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
frustratingly, there is no test for this -- that's because testing this requires allocating more memory than is available in CI. fixes pyca#5615.
reaperhulk
approved these changes
Feb 7, 2021
This was referenced Mar 6, 2021
Closed
This was referenced Mar 17, 2021
Closed
Closed
halstead
pushed a commit
to openembedded/meta-openembedded
that referenced
this pull request
May 26, 2022
* backport the actual code change from pyca/cryptography#5747 without the docs and CI changes (which aren't applicable on old 2.8 version) and backport 2 older changes to make this fix applicable on 2.8. Signed-off-by: Martin Jansa <[email protected]> Signed-off-by: Armin Kuster <[email protected]>
halstead
pushed a commit
to openembedded/meta-openembedded
that referenced
this pull request
May 26, 2022
* backport the actual code change from pyca/cryptography#5747 without the docs and CI changes (which aren't applicable on old 2.8 version) and backport 2 older changes to make this fix applicable on 2.8. Signed-off-by: Martin Jansa <[email protected]> Signed-off-by: Armin Kuster <[email protected]>
jpuhlman
pushed a commit
to MontaVista-OpenSourceTechnology/meta-openembedded
that referenced
this pull request
Jun 3, 2022
Source: meta-openembedded MR: 118244 Type: Integration Disposition: Merged from meta-openembedded ChangeID: b99a386 Description: * backport the actual code change from pyca/cryptography#5747 without the docs and CI changes (which aren't applicable on old 2.8 version) and backport 2 older changes to make this fix applicable on 2.8. Signed-off-by: Martin Jansa <[email protected]> Signed-off-by: Armin Kuster <[email protected]> Signed-off-by: Jeremy A. Puhlman <[email protected]>
hyunjae92-shin
pushed a commit
to webosose/meta-webosose
that referenced
this pull request
Jun 29, 2022
:Release Notes: This is only temporary until https://lists.openembedded.org/g/openembedded-devel/message/97027 is merged in dunfell. :Detailed Notes: backport the actual code change from: pyca/cryptography#5747 without the docs and CI changes (which aren't applicable on old 2.8 version) and backport 2 older changes to make this fix applicable on 2.8. :Testing Performed: Only build tested. :QA Notes: No change to image. :Issues Addressed: [WRO-4101] CCC: Various build fixes Change-Id: Ida324c8dcf8a738372da3ab7a3378c459ed27803
hyunjae92-shin
pushed a commit
to webosose/meta-webosose
that referenced
this pull request
Jun 30, 2022
:Release Notes: This is only temporary until https://lists.openembedded.org/g/openembedded-devel/message/97027 is merged in dunfell. :Detailed Notes: backport the actual code change from: pyca/cryptography#5747 without the docs and CI changes (which aren't applicable on old 2.8 version) and backport 2 older changes to make this fix applicable on 2.8. :Testing Performed: Only build tested. :QA Notes: No change to image. :Issues Addressed: [WRO-4101] CCC: Various build fixes Change-Id: Ida324c8dcf8a738372da3ab7a3378c459ed27803
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.
frustratingly, there is no test for this -- that's because testing this
requires allocating more memory than is available in CI.
fixes #5615.