Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Fixed CVE-2020-7471 -- Properly escaped StringAgg(delimiter) parameter.
- Loading branch information
1 parent
6b178a3
commit eb31d84
Showing
7 changed files
with
45 additions
and
5 deletions.
There are no files selected for viewing
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| ============================ | ||
| Django 1.11.28 release notes | ||
| ============================ | ||
|
|
||
| *February 3, 2020* | ||
|
|
||
| Django 1.11.28 fixes a security issue in 1.11.27. | ||
|
|
||
| CVE-2020-7471: Potential SQL injection via ``StringAgg(delimiter)`` | ||
| =================================================================== | ||
|
|
||
| :class:`~django.contrib.postgres.aggregates.StringAgg` aggregation function was | ||
| subject to SQL injection, using a suitably crafted ``delimiter``. |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| =========================== | ||
| Django 2.2.10 release notes | ||
| =========================== | ||
|
|
||
| *February 3, 2020* | ||
|
|
||
| Django 2.2.10 fixes a security issue in 2.2.9. | ||
|
|
||
| CVE-2020-7471: Potential SQL injection via ``StringAgg(delimiter)`` | ||
| =================================================================== | ||
|
|
||
| :class:`~django.contrib.postgres.aggregates.StringAgg` aggregation function was | ||
| subject to SQL injection, using a suitably crafted ``delimiter``. |
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
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
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