-
Notifications
You must be signed in to change notification settings - Fork 3.3k
[EventGrid] Fix credential leak on cross-host redirect in legacy publisher (MSRC 126697) #48239
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
Merged
Nishanth-MS
merged 42 commits into
main
from
Nishanth-MS/eventgrid-python-redirect-credential-leak
Jul 29, 2026
Merged
Changes from all commits
Commits
Show all changes
42 commits
Select commit
Hold shift + click to select a range
e19730c
Fix credential leak on cross-host redirect in legacy EventGrid publis…
Nishanth-MS 231c223
Fix credential leak on cross-host redirect in legacy EventGrid publis…
Nishanth-MS 48335f0
Bump azure-eventgrid to 4.22.1
Nishanth-MS 7e6e381
Update CHANGELOG for 4.22.1 security fix
Nishanth-MS 554c996
Add cross-host redirect credential-leak regression tests
Nishanth-MS afb98a3
Require azure-core>=1.38.3 for retry-safe sensitive header cleanup
Nishanth-MS c52c008
Correct SensitiveHeaderCleanupPolicy comment (sync)
Nishanth-MS 217c960
Correct SensitiveHeaderCleanupPolicy comment (async)
Nishanth-MS e50025c
Note azure-core minimum bump in changelog
Nishanth-MS 7cc3afc
Add 301->500->200 retry regression test
Nishanth-MS 768c1ee
Drop Python 3.8 (azure-core>=1.38.3 requires >=3.9)
Nishanth-MS 4a8c449
Use async fake token credential for async AAD redirect test
Nishanth-MS 3852081
Add @Nishanth-MS as codeowner for /sdk/eventgrid/
Nishanth-MS 54a8555
Remove @rajeshka from /sdk/eventgrid/ codeowners
Nishanth-MS 0421a1d
Pin cloudevents<2.0.0 (2.0.0 removed cloudevents.http, breaking cncf …
Nishanth-MS a6a6af8
Merge main into eventgrid redirect fix branch
Nishanth-MS 25c31df
Suppress unidiomatic-typecheck in generated _model_base.py (pylint 4.x)
Nishanth-MS 7577fa6
Suppress unused-argument in generated _serialization.py (pylint 4.x)
Nishanth-MS 2e50e1d
Use 307 (method-preserving) redirect so POST publish redirect is actu…
Nishanth-MS 81f3527
Force deterministic retry with Retry-After header in redirect-retry test
Nishanth-MS 70c3b80
Use line-level unidiomatic-typecheck disables in generated _model_bas…
Nishanth-MS d474f9e
Use line-level unused-argument disables in generated _serialization.p…
Nishanth-MS ff092b9
Revert _model_base.py to pristine generated output
Nishanth-MS e2fd13d
Revert _serialization.py to pristine generated output
Nishanth-MS 8fc23e1
Exclude Event Grid top-level generated files from pylint (ignore-paths)
Nishanth-MS 7dd41cf
Disclose Python 3.9 minimum in changelog
Nishanth-MS 2c4537a
Update README Python requirement to 3.9
Nishanth-MS 58c8ee3
Add async redirect-then-retry regression test
Nishanth-MS 260dbca
Explain cloudevents 1.x pin in dev_requirements (latent 2.0.0 break)
Nishanth-MS 5ddb3e8
Add generated api.md for azure-eventgrid (API.md consistency check)
Nishanth-MS 660639d
Add generated api.metadata.yml for azure-eventgrid
Nishanth-MS d25db60
Revert pylintrc ignore-paths (does not apply to package-target pylint…
Nishanth-MS 350ea8a
Inline-disable unidiomatic-typecheck in generated _model_base.py (bat…
Nishanth-MS 7917853
Inline-disable unused-argument in generated _serialization.py (batch …
Nishanth-MS e2ef49b
Minimize _model_base.py diff to 3 inline-disable lines (preserve LF)
Nishanth-MS f96e45a
Minimize _serialization.py diff to 6 inline-disable lines (preserve LF)
Nishanth-MS 8185745
Fix duplicate blocked_redirect_headers kwarg (merge caller list, pop …
Nishanth-MS 8f60a28
Fix duplicate blocked_redirect_headers kwarg in async client
Nishanth-MS 54a3ad9
Set 4.22.1 release date in changelog
Nishanth-MS 6d526e3
Move minimum Python to 3.10 and add 3.13/3.14 classifiers (reviewer: …
Nishanth-MS 480727a
README: Python 3.10 or later
Nishanth-MS fb9d34e
Changelog: minimum Python now 3.10
Nishanth-MS File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| apiMdSha256: dcc804237da14b8d346f7881e23a570a9639c4784861a319246e65309b46b724 | ||
| parserVersion: 0.3.30 | ||
| pythonVersion: 3.13.14 |
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.