]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Update for 22.5.2 22.5.2
authorAsterisk Development Team <asteriskteam@digium.com>
Thu, 28 Aug 2025 15:11:49 +0000 (15:11 +0000)
committerGeorge Joseph <gjoseph@sangoma.com>
Wed, 17 Sep 2025 17:40:37 +0000 (11:40 -0600)
.version
CHANGES.html
CHANGES.md
ChangeLogs/ChangeLog-22.5.2.html [new file with mode: 0644]
ChangeLogs/ChangeLog-22.5.2.md [new file with mode: 0644]
README.html
README.md

index 1384ff6a1cbb8c3d72bd9f6f21f2db5934de4295..8c26f58c42034f61665305502e77297dfc6fd702 100644 (file)
--- a/.version
+++ b/.version
@@ -1 +1 @@
-22.5.1
+22.5.2
index 84add5ce04522b3b3f17e1cc3d454c419aa98b3b..8ca0938345dbddaccfaab052cbe694317e4fd56a 120000 (symlink)
@@ -1 +1 @@
-ChangeLogs/ChangeLog-22.5.1.html
\ No newline at end of file
+ChangeLogs/ChangeLog-22.5.2.html
\ No newline at end of file
index 56acc808bf14a121f4761b5db14d772fe7d3d4fa..261e21afcad966018b6eaedafb3fcc8635546ef4 120000 (symlink)
@@ -1 +1 @@
-ChangeLogs/ChangeLog-22.5.1.md
\ No newline at end of file
+ChangeLogs/ChangeLog-22.5.2.md
\ No newline at end of file
diff --git a/ChangeLogs/ChangeLog-22.5.2.html b/ChangeLogs/ChangeLog-22.5.2.html
new file mode 100644 (file)
index 0000000..da7c0fd
--- /dev/null
@@ -0,0 +1,50 @@
+<html><head><title>ChangeLog for asterisk-22.5.2</title></head><body>
+<h2>Change Log for Release asterisk-22.5.2</h2>
+<h3>Links:</h3>
+<ul>
+<li><a href="https://downloads.asterisk.org/pub/telephony/asterisk/releases/ChangeLog-22.5.2.html">Full ChangeLog</a>  </li>
+<li><a href="https://github.com/asterisk/asterisk/compare/22.5.1...22.5.2">GitHub Diff</a>  </li>
+<li><a href="https://downloads.asterisk.org/pub/telephony/asterisk/asterisk-22.5.2.tar.gz">Tarball</a>  </li>
+<li><a href="https://downloads.asterisk.org/pub/telephony/asterisk">Downloads</a>  </li>
+</ul>
+<h3>Summary:</h3>
+<ul>
+<li>Commits: 1</li>
+<li>Commit Authors: 1</li>
+<li>Issues Resolved: 0</li>
+<li>Security Advisories Resolved: 1</li>
+<li><a href="https://github.com/asterisk/asterisk/security/advisories/GHSA-64qc-9x89-rx5j">GHSA-64qc-9x89-rx5j</a>: A specifically malformed Authorization header in an incoming SIP request can cause Asterisk to crash</li>
+</ul>
+<h3>User Notes:</h3>
+<h3>Upgrade Notes:</h3>
+<h3>Developer Notes:</h3>
+<h3>Commit Authors:</h3>
+<ul>
+<li>George Joseph: (1)</li>
+</ul>
+<h2>Issue and Commit Detail:</h2>
+<h3>Closed Issues:</h3>
+<ul>
+<li>!GHSA-64qc-9x89-rx5j: A specifically malformed Authorization header in an incoming SIP request can cause Asterisk to crash</li>
+</ul>
+<h3>Commits By Author:</h3>
+<ul>
+<li>
+<h4>George Joseph (1):</h4>
+</li>
+<li>res_pjsip_authenticator_digest: Fix SEGV if get_authorization_hdr returns NULL.</li>
+</ul>
+<h3>Commit List:</h3>
+<ul>
+<li>res_pjsip_authenticator_digest: Fix SEGV if get_authorization_hdr returns NULL.</li>
+</ul>
+<h3>Commit Details:</h3>
+<h4>res_pjsip_authenticator_digest: Fix SEGV if get_authorization_hdr returns NULL.</h4>
+<p>Author: George Joseph
+  Date:   2025-08-28</p>
+<p>In the highly-unlikely event that get_authorization_hdr() couldn't find an
+  Authorization header in a request, trying to get the digest algorithm
+  would cauase a SEGV.  We now check that we have an auth header that matches
+  the realm before trying to get the algorithm from it.</p>
+<p>Resolves: #GHSA-64qc-9x89-rx5j</p>
+</body></html>
diff --git a/ChangeLogs/ChangeLog-22.5.2.md b/ChangeLogs/ChangeLog-22.5.2.md
new file mode 100644 (file)
index 0000000..d889c27
--- /dev/null
@@ -0,0 +1,60 @@
+
+## Change Log for Release asterisk-22.5.2
+
+### Links:
+
+ - [Full ChangeLog](https://downloads.asterisk.org/pub/telephony/asterisk/releases/ChangeLog-22.5.2.html)  
+ - [GitHub Diff](https://github.com/asterisk/asterisk/compare/22.5.1...22.5.2)  
+ - [Tarball](https://downloads.asterisk.org/pub/telephony/asterisk/asterisk-22.5.2.tar.gz)  
+ - [Downloads](https://downloads.asterisk.org/pub/telephony/asterisk)  
+
+### Summary:
+
+- Commits: 1
+- Commit Authors: 1
+- Issues Resolved: 0
+- Security Advisories Resolved: 1
+  - [GHSA-64qc-9x89-rx5j](https://github.com/asterisk/asterisk/security/advisories/GHSA-64qc-9x89-rx5j): A specifically malformed Authorization header in an incoming SIP request can cause Asterisk to crash
+
+### User Notes:
+
+
+### Upgrade Notes:
+
+
+### Developer Notes:
+
+
+### Commit Authors:
+
+- George Joseph: (1)
+
+## Issue and Commit Detail:
+
+### Closed Issues:
+
+  - !GHSA-64qc-9x89-rx5j: A specifically malformed Authorization header in an incoming SIP request can cause Asterisk to crash
+
+### Commits By Author:
+
+- #### George Joseph (1):
+  - res_pjsip_authenticator_digest: Fix SEGV if get_authorization_hdr returns NULL.
+
+
+### Commit List:
+
+-  res_pjsip_authenticator_digest: Fix SEGV if get_authorization_hdr returns NULL.
+
+### Commit Details:
+
+#### res_pjsip_authenticator_digest: Fix SEGV if get_authorization_hdr returns NULL.
+  Author: George Joseph
+  Date:   2025-08-28
+
+  In the highly-unlikely event that get_authorization_hdr() couldn't find an
+  Authorization header in a request, trying to get the digest algorithm
+  would cauase a SEGV.  We now check that we have an auth header that matches
+  the realm before trying to get the algorithm from it.
+
+  Resolves: #GHSA-64qc-9x89-rx5j
+
index 99848334b05a4b2e82b3265c6441e67b6464d974..a96a2c9e8e5fb5e72aa5d1bf29768e9892f712ad 100644 (file)
@@ -1,4 +1,4 @@
-<html><head><title>Readme for asterisk-22.5.1</title></head><body>
+<html><head><title>Readme for asterisk-22.5.2</title></head><body>
 <h1>The Asterisk(R) Open Source PBX</h1>
 <pre><code>By Mark Spencer &lt;markster@digium.com&gt; and the Asterisk.org developer community.
 Copyright (C) 2001-2025 Sangoma Technologies Corporation and other copyright holders.
@@ -37,7 +37,7 @@ hardware.</p>
 <p>If you are updating from a previous version of Asterisk, make sure you
 read the Change Logs.</p>
 <!-- CHANGELOGS (the URL will change based on the location of this README) -->
-<p><a href="ChangeLogs/ChangeLog-22.5.1.html">Change Logs</a></p>
+<p><a href="ChangeLogs/ChangeLog-22.5.2.html">Change Logs</a></p>
 <!-- END-CHANGELOGS -->
 
 <h3>NEW INSTALLATIONS</h3>
index 555f62091aae6764e83e3f76e7c6c85d5114ce51..164963d5ed82f9d7b1db471bf3c80f6503496610 100644 (file)
--- a/README.md
+++ b/README.md
@@ -55,7 +55,7 @@ If you are updating from a previous version of Asterisk, make sure you
 read the Change Logs.
 
 <!-- CHANGELOGS (the URL will change based on the location of this README) -->
-[Change Logs](ChangeLogs/ChangeLog-22.5.1.html)
+[Change Logs](ChangeLogs/ChangeLog-22.5.2.html)
 <!-- END-CHANGELOGS -->
 
 ### NEW INSTALLATIONS