-certified/13.13-cert5
\ No newline at end of file
+certified/13.13-cert6
\ No newline at end of file
+2017-09-19 16:09 +0000 Asterisk Development Team <asteriskteam@digium.com>
+
+ * asterisk certified/13.13-cert6 Released.
+
+2017-08-25 17:05 +0000 [88c8e8a11c] Richard Mudgett <rmudgett@digium.com>
+
+ * AST-2017-008: Improve RTP and RTCP packet processing.
+
+ Validate RTCP packets before processing them.
+
+ * Validate that the received packet is of a minimum length and apply the
+ RFC3550 RTCP packet validation checks.
+
+ * Fixed potentially reading garbage beyond the received RTCP record data.
+
+ * Fixed rtp->themssrc only being set once when the remote could change
+ the SSRC. We would effectively stop handling the RTCP statistic records.
+
+ * Fixed rtp->themssrc to not treat a zero value as special by adding
+ rtp->themssrc_valid to indicate if rtp->themssrc is available.
+
+ ASTERISK-27274
+
+ Make strict RTP learning more flexible.
+
+ Direct media can cause strict RTP to attempt to learn a remote address
+ again before it has had a chance to learn the remote address the first
+ time. Because of the rapid relearn requests, strict RTP could latch onto
+ the first remote address and fail to latch onto the direct media remote
+ address. As a result, you have one way audio until the call is placed on
+ and off hold.
+
+ The new algorithm learns remote addresses for a set time (1.5 seconds)
+ before locking the remote address. In addition, we must see a configured
+ number of remote packets from the same address in a row before switching.
+
+ * Fixed strict RTP learning from always accepting the first new address
+ packet as the new stream.
+
+ * Fixed strict RTP to initialize the expected sequence number with the
+ last received sequence number instead of the last transmitted sequence
+ number.
+
+ * Fixed the predicted next sequence number calculation in
+ rtp_learning_rtp_seq_update() to handle overflow.
+
+ ASTERISK-27252
+
+ Change-Id: Ia2d3aa6e0f22906c25971e74f10027d96525f31c
+
+2017-09-01 05:17 +0000 [67b1b028a1] George Joseph <gjoseph@digium.com>
+
+ * stasis/control: Fix possible deadlock with swap channel
+
+ If an error occurs during a bridge impart it's possible that
+ the "bridge_after" callback might try to run before
+ control_swap_channel_in_bridge has been signalled to continue.
+ Since control_swap_channel_in_bridge is holding the control lock
+ and the callback needs it, a deadlock will occur.
+
+ * control_swap_channel_in_bridge now only holds the control
+ lock while it's actually modifying the control structure and
+ releases it while the bridge impart is running.
+ * bridge_after_cb is now tolerant of impart failures.
+
+ Change-Id: Ifd239aa93955b3eb475521f61e284fcb0da2c3b3
+
2017-08-31 15:48 +0000 Asterisk Development Team <asteriskteam@digium.com>
* asterisk certified/13.13-cert5 Released.
+++ /dev/null
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><title>Release Summary - asterisk-certified/13.13-cert5</title><h1 align="center"><a name="top">Release Summary</a></h1><h3 align="center">asterisk-certified/13.13-cert5</h3><h3 align="center">Date: 2017-08-31</h3><h3 align="center"><asteriskteam@digium.com></h3><hr><h2 align="center">Table of Contents</h2><ol>
-<li><a href="#summary">Summary</a></li>
-<li><a href="#contributors">Contributors</a></li>
-<li><a href="#closed_issues">Closed Issues</a></li>
-<li><a href="#commits">Other Changes</a></li>
-<li><a href="#diffstat">Diffstat</a></li>
-</ol><hr><a name="summary"><h2 align="center">Summary</h2></a><center><a href="#top">[Back to Top]</a></center><p>This release has been made to address one or more security vulnerabilities that have been identified. A security advisory document has been published for each vulnerability that includes additional information. Users of versions of Asterisk that are affected are strongly encouraged to review the advisories and determine what action they should take to protect their systems from these issues.</p><p>Security Advisories:</p><ul>
-<li><a href="http://downloads.asterisk.org/pub/security/AST-2017-005,AST-2017-006.html">AST-2017-005,AST-2017-006</a></li>
-</ul><p>The data in this summary reflects changes that have been made since the previous release, asterisk-certified/13.13-cert4.</p><hr><a name="contributors"><h2 align="center">Contributors</h2></a><center><a href="#top">[Back to Top]</a></center><p>This table lists the people who have submitted code, those that have tested patches, as well as those that reported issues on the issue tracker that were resolved in this release. For coders, the number is how many of their patches (of any size) were committed into this release. For testers, the number is the number of times their name was listed as assisting with testing a patch. Finally, for reporters, the number is the number of issues that they reported that were affected by commits that went into this release.</p><table width="100%" border="0">
-<tr><th width="33%">Coders</th><th width="33%">Testers</th><th width="33%">Reporters</th></tr>
-<tr valign="top"><td width="33%">3 Kevin Harwell <kharwell@digium.com><br/>2 George Joseph <gjoseph@digium.com><br/>1 Richard Mudgett <rmudgett@digium.com><br/>1 Corey Farrell <git@cfware.com><br/>1 Joshua Colp <jcolp@digium.com><br/></td><td width="33%"><td width="33%">3 Kevin Harwell <kharwell@digium.com><br/>1 Richard Mudgett <rmudgett@digium.com><br/>1 Joshua Colp <jcolp@digium.com><br/>1 George Joseph <gjoseph@digium.com><br/>1 Corey Farrell <git@cfware.com><br/></td></tr>
-</table><hr><a name="closed_issues"><h2 align="center">Closed Issues</h2></a><center><a href="#top">[Back to Top]</a></center><p>This is a list of all issues from the issue tracker that were closed by changes that went into this release.</p><h3>Bug</h3><h4>Category: Applications/app_minivm</h4><a href="https://issues.asterisk.org/jira/browse/ASTERISK-27103">ASTERISK-27103</a>: core: ast_safe_system command injection possible.<br/>Reported by: Corey Farrell<ul>
-<li><a href="https://code.asterisk.org/code/changelog/asterisk?cs=7ca730601211c595ad56c91259a1d229d712abf2">[7ca7306012]</a> Corey Farrell -- AST-2017-006: Fix app_minivm application MinivmNotify command injection</li>
-</ul><br><h4>Category: Applications/app_mixmonitor</h4><a href="https://issues.asterisk.org/jira/browse/ASTERISK-27103">ASTERISK-27103</a>: core: ast_safe_system command injection possible.<br/>Reported by: Corey Farrell<ul>
-<li><a href="https://code.asterisk.org/code/changelog/asterisk?cs=7ca730601211c595ad56c91259a1d229d712abf2">[7ca7306012]</a> Corey Farrell -- AST-2017-006: Fix app_minivm application MinivmNotify command injection</li>
-</ul><br><h4>Category: Applications/app_system</h4><a href="https://issues.asterisk.org/jira/browse/ASTERISK-27103">ASTERISK-27103</a>: core: ast_safe_system command injection possible.<br/>Reported by: Corey Farrell<ul>
-<li><a href="https://code.asterisk.org/code/changelog/asterisk?cs=7ca730601211c595ad56c91259a1d229d712abf2">[7ca7306012]</a> Corey Farrell -- AST-2017-006: Fix app_minivm application MinivmNotify command injection</li>
-</ul><br><h4>Category: Applications/app_voicemail</h4><a href="https://issues.asterisk.org/jira/browse/ASTERISK-27103">ASTERISK-27103</a>: core: ast_safe_system command injection possible.<br/>Reported by: Corey Farrell<ul>
-<li><a href="https://code.asterisk.org/code/changelog/asterisk?cs=7ca730601211c595ad56c91259a1d229d712abf2">[7ca7306012]</a> Corey Farrell -- AST-2017-006: Fix app_minivm application MinivmNotify command injection</li>
-</ul><br><h4>Category: Channels/chan_dahdi</h4><a href="https://issues.asterisk.org/jira/browse/ASTERISK-27103">ASTERISK-27103</a>: core: ast_safe_system command injection possible.<br/>Reported by: Corey Farrell<ul>
-<li><a href="https://code.asterisk.org/code/changelog/asterisk?cs=7ca730601211c595ad56c91259a1d229d712abf2">[7ca7306012]</a> Corey Farrell -- AST-2017-006: Fix app_minivm application MinivmNotify command injection</li>
-</ul><br><h4>Category: Channels/chan_pjsip</h4><a href="https://issues.asterisk.org/jira/browse/ASTERISK-27095">ASTERISK-27095</a>: chan_pjsip: When connected_line_method is set to invite, we're not trying UPDATE<br/>Reported by: George Joseph<ul>
-<li><a href="https://code.asterisk.org/code/changelog/asterisk?cs=ef4a035371cc4fb7781792aeb5397979413f768b">[ef4a035371]</a> George Joseph -- chan_pjsip: Fix ability to send UPDATE on COLP</li>
-</ul><br><h4>Category: Core/Bridging</h4><a href="https://issues.asterisk.org/jira/browse/ASTERISK-27075">ASTERISK-27075</a>: bridge: stuck channel(s) after failed attended transfer<br/>Reported by: Kevin Harwell<ul>
-<li><a href="https://code.asterisk.org/code/changelog/asterisk?cs=9dcac3b7e349635e3b501a98d559950d920fb22e">[9dcac3b7e3]</a> Kevin Harwell -- bridge: stuck channel(s) after failed attended transfer</li>
-</ul><br><h4>Category: Core/Channels</h4><a href="https://issues.asterisk.org/jira/browse/ASTERISK-27074">ASTERISK-27074</a>: core_local: local channel data not being properly unref'ed and unlocked<br/>Reported by: Kevin Harwell<ul>
-<li><a href="https://code.asterisk.org/code/changelog/asterisk?cs=89aabfe10b4e732dc66110790d1dce10d26e03a8">[89aabfe10b]</a> Kevin Harwell -- core_local: local channel data not being properly unref'ed and unlocked</li>
-</ul><br><h4>Category: Core/General</h4><a href="https://issues.asterisk.org/jira/browse/ASTERISK-27103">ASTERISK-27103</a>: core: ast_safe_system command injection possible.<br/>Reported by: Corey Farrell<ul>
-<li><a href="https://code.asterisk.org/code/changelog/asterisk?cs=7ca730601211c595ad56c91259a1d229d712abf2">[7ca7306012]</a> Corey Farrell -- AST-2017-006: Fix app_minivm application MinivmNotify command injection</li>
-</ul><br><h4>Category: Functions/func_shell</h4><a href="https://issues.asterisk.org/jira/browse/ASTERISK-27103">ASTERISK-27103</a>: core: ast_safe_system command injection possible.<br/>Reported by: Corey Farrell<ul>
-<li><a href="https://code.asterisk.org/code/changelog/asterisk?cs=7ca730601211c595ad56c91259a1d229d712abf2">[7ca7306012]</a> Corey Farrell -- AST-2017-006: Fix app_minivm application MinivmNotify command injection</li>
-</ul><br><h4>Category: Resources/res_monitor</h4><a href="https://issues.asterisk.org/jira/browse/ASTERISK-27103">ASTERISK-27103</a>: core: ast_safe_system command injection possible.<br/>Reported by: Corey Farrell<ul>
-<li><a href="https://code.asterisk.org/code/changelog/asterisk?cs=7ca730601211c595ad56c91259a1d229d712abf2">[7ca7306012]</a> Corey Farrell -- AST-2017-006: Fix app_minivm application MinivmNotify command injection</li>
-</ul><br><h4>Category: Resources/res_pjsip</h4><a href="https://issues.asterisk.org/jira/browse/ASTERISK-27090">ASTERISK-27090</a>: PJSIP: Deadlock using TCP transport<br/>Reported by: Richard Mudgett<ul>
-<li><a href="https://code.asterisk.org/code/changelog/asterisk?cs=aa10dd31d044c65aaecdd76629f53fd4cbdf013b">[aa10dd31d0]</a> Richard Mudgett -- pjsip_distributor.c: Fix deadlock with TCP type transports.</li>
-</ul><br><h4>Category: Resources/res_pjsip_refer</h4><a href="https://issues.asterisk.org/jira/browse/ASTERISK-27053">ASTERISK-27053</a>: res_pjsip_refer/session: Calls dropped during transfer<br/>Reported by: Kevin Harwell<ul>
-<li><a href="https://code.asterisk.org/code/changelog/asterisk?cs=adfdfdee611ee13b45be1b4c019871e62c8009af">[adfdfdee61]</a> Kevin Harwell -- res_pjsip_refer/session: Calls dropped during transfer</li>
-</ul><br><h4>Category: Resources/res_pjsip_session</h4><a href="https://issues.asterisk.org/jira/browse/ASTERISK-27053">ASTERISK-27053</a>: res_pjsip_refer/session: Calls dropped during transfer<br/>Reported by: Kevin Harwell<ul>
-<li><a href="https://code.asterisk.org/code/changelog/asterisk?cs=adfdfdee611ee13b45be1b4c019871e62c8009af">[adfdfdee61]</a> Kevin Harwell -- res_pjsip_refer/session: Calls dropped during transfer</li>
-</ul><br><h4>Category: Resources/res_rtp_asterisk</h4><a href="https://issues.asterisk.org/jira/browse/ASTERISK-27013">ASTERISK-27013</a>: res_rtp_asterisk: Media can be hijacked even with strict RTP enabled<br/>Reported by: Joshua Colp<ul>
-<li><a href="https://code.asterisk.org/code/changelog/asterisk?cs=1724a8c98f68123d6998cc3f91acbcff8a69bf7b">[1724a8c98f]</a> Joshua Colp -- res_rtp_asterisk: Only learn a new source in learn state.</li>
-</ul><br><hr><a name="commits"><h2 align="center">Commits Not Associated with an Issue</h2></a><center><a href="#top">[Back to Top]</a></center><p>This is a list of all changes that went into this release that did not reference a JIRA issue.</p><table width="100%" border="1">
-<tr><th>Revision</th><th>Author</th><th>Summary</th></tr>
-<tr><td><a href="https://code.asterisk.org/code/changelog/asterisk?cs=b189f8c5cf758734e0690c824c0e118707f236ce">b189f8c5cf</a></td><td>George Joseph</td><td>res_musiconhold: Add kill_escalation_delay, kill_method to class</td></tr>
-</table><hr><a name="diffstat"><h2 align="center">Diffstat Results</h2></a><center><a href="#top">[Back to Top]</a></center><p>This is a summary of the changes to the source code that went into this release that was generated using the diffstat utility.</p><pre>CHANGES | 20
-README-SERIOUSLY.bestpractices.txt | 7
-apps/app_minivm.c | 36 +
-apps/app_mixmonitor.c | 15
-apps/app_system.c | 10
-channels/chan_pjsip.c | 3
-configs/samples/minivm.conf.sample | 2
-configs/samples/musiconhold.conf.sample | 23 +
-configs/samples/pjsip.conf.sample | 11
-funcs/func_shell.c | 5
-include/asterisk/app.h | 31 +
-include/asterisk/core_local.h | 37 +
-include/asterisk/res_pjsip_session.h | 11
-main/asterisk.c | 91 +++-
-main/bridge.c | 9
-main/core_local.c | 54 +-
-res/res_monitor.c | 13
-res/res_musiconhold.c | 129 +++---
-res/res_pjsip.c | 11
-res/res_pjsip/pjsip_distributor.c | 214 ++++++++--
-res/res_pjsip_refer.c | 8
-res/res_pjsip_session.c | 28 +
-res/res_pjsip_session.exports.in | 1
-res/res_rtp_asterisk.c | 87 ++--
-third-party/pjproject/patches/0070-Set-PJSIP_INV_SUPPORT_UPDATE-correctly-in-pjsip_inv_.patch | 9
-25 files changed, 678 insertions(+), 187 deletions(-)</pre><br></html>
\ No newline at end of file
+++ /dev/null
- Release Summary
-
- asterisk-certified/13.13-cert5
-
- Date: 2017-08-31
-
- <asteriskteam@digium.com>
-
- ----------------------------------------------------------------------
-
- Table of Contents
-
- 1. Summary
- 2. Contributors
- 3. Closed Issues
- 4. Other Changes
- 5. Diffstat
-
- ----------------------------------------------------------------------
-
- Summary
-
- [Back to Top]
-
- This release has been made to address one or more security vulnerabilities
- that have been identified. A security advisory document has been published
- for each vulnerability that includes additional information. Users of
- versions of Asterisk that are affected are strongly encouraged to review
- the advisories and determine what action they should take to protect their
- systems from these issues.
-
- Security Advisories:
-
- * AST-2017-005,AST-2017-006
-
- The data in this summary reflects changes that have been made since the
- previous release, asterisk-certified/13.13-cert4.
-
- ----------------------------------------------------------------------
-
- Contributors
-
- [Back to Top]
-
- This table lists the people who have submitted code, those that have
- tested patches, as well as those that reported issues on the issue tracker
- that were resolved in this release. For coders, the number is how many of
- their patches (of any size) were committed into this release. For testers,
- the number is the number of times their name was listed as assisting with
- testing a patch. Finally, for reporters, the number is the number of
- issues that they reported that were affected by commits that went into
- this release.
-
- Coders Testers Reporters
- 3 Kevin Harwell 3 Kevin Harwell
- 2 George Joseph 1 Richard Mudgett
- 1 Richard Mudgett 1 Joshua Colp
- 1 Corey Farrell 1 George Joseph
- 1 Joshua Colp 1 Corey Farrell
-
- ----------------------------------------------------------------------
-
- Closed Issues
-
- [Back to Top]
-
- This is a list of all issues from the issue tracker that were closed by
- changes that went into this release.
-
- Bug
-
- Category: Applications/app_minivm
-
- ASTERISK-27103: core: ast_safe_system command injection possible.
- Reported by: Corey Farrell
- * [7ca7306012] Corey Farrell -- AST-2017-006: Fix app_minivm application
- MinivmNotify command injection
-
- Category: Applications/app_mixmonitor
-
- ASTERISK-27103: core: ast_safe_system command injection possible.
- Reported by: Corey Farrell
- * [7ca7306012] Corey Farrell -- AST-2017-006: Fix app_minivm application
- MinivmNotify command injection
-
- Category: Applications/app_system
-
- ASTERISK-27103: core: ast_safe_system command injection possible.
- Reported by: Corey Farrell
- * [7ca7306012] Corey Farrell -- AST-2017-006: Fix app_minivm application
- MinivmNotify command injection
-
- Category: Applications/app_voicemail
-
- ASTERISK-27103: core: ast_safe_system command injection possible.
- Reported by: Corey Farrell
- * [7ca7306012] Corey Farrell -- AST-2017-006: Fix app_minivm application
- MinivmNotify command injection
-
- Category: Channels/chan_dahdi
-
- ASTERISK-27103: core: ast_safe_system command injection possible.
- Reported by: Corey Farrell
- * [7ca7306012] Corey Farrell -- AST-2017-006: Fix app_minivm application
- MinivmNotify command injection
-
- Category: Channels/chan_pjsip
-
- ASTERISK-27095: chan_pjsip: When connected_line_method is set to invite,
- we're not trying UPDATE
- Reported by: George Joseph
- * [ef4a035371] George Joseph -- chan_pjsip: Fix ability to send UPDATE
- on COLP
-
- Category: Core/Bridging
-
- ASTERISK-27075: bridge: stuck channel(s) after failed attended transfer
- Reported by: Kevin Harwell
- * [9dcac3b7e3] Kevin Harwell -- bridge: stuck channel(s) after failed
- attended transfer
-
- Category: Core/Channels
-
- ASTERISK-27074: core_local: local channel data not being properly unref'ed
- and unlocked
- Reported by: Kevin Harwell
- * [89aabfe10b] Kevin Harwell -- core_local: local channel data not being
- properly unref'ed and unlocked
-
- Category: Core/General
-
- ASTERISK-27103: core: ast_safe_system command injection possible.
- Reported by: Corey Farrell
- * [7ca7306012] Corey Farrell -- AST-2017-006: Fix app_minivm application
- MinivmNotify command injection
-
- Category: Functions/func_shell
-
- ASTERISK-27103: core: ast_safe_system command injection possible.
- Reported by: Corey Farrell
- * [7ca7306012] Corey Farrell -- AST-2017-006: Fix app_minivm application
- MinivmNotify command injection
-
- Category: Resources/res_monitor
-
- ASTERISK-27103: core: ast_safe_system command injection possible.
- Reported by: Corey Farrell
- * [7ca7306012] Corey Farrell -- AST-2017-006: Fix app_minivm application
- MinivmNotify command injection
-
- Category: Resources/res_pjsip
-
- ASTERISK-27090: PJSIP: Deadlock using TCP transport
- Reported by: Richard Mudgett
- * [aa10dd31d0] Richard Mudgett -- pjsip_distributor.c: Fix deadlock with
- TCP type transports.
-
- Category: Resources/res_pjsip_refer
-
- ASTERISK-27053: res_pjsip_refer/session: Calls dropped during transfer
- Reported by: Kevin Harwell
- * [adfdfdee61] Kevin Harwell -- res_pjsip_refer/session: Calls dropped
- during transfer
-
- Category: Resources/res_pjsip_session
-
- ASTERISK-27053: res_pjsip_refer/session: Calls dropped during transfer
- Reported by: Kevin Harwell
- * [adfdfdee61] Kevin Harwell -- res_pjsip_refer/session: Calls dropped
- during transfer
-
- Category: Resources/res_rtp_asterisk
-
- ASTERISK-27013: res_rtp_asterisk: Media can be hijacked even with strict
- RTP enabled
- Reported by: Joshua Colp
- * [1724a8c98f] Joshua Colp -- res_rtp_asterisk: Only learn a new source
- in learn state.
-
- ----------------------------------------------------------------------
-
- Commits Not Associated with an Issue
-
- [Back to Top]
-
- This is a list of all changes that went into this release that did not
- reference a JIRA issue.
-
- +------------------------------------------------------------------------+
- | Revision | Author | Summary |
- |------------+---------------+-------------------------------------------|
- | | | res_musiconhold: Add |
- | b189f8c5cf | George Joseph | kill_escalation_delay, kill_method to |
- | | | class |
- +------------------------------------------------------------------------+
-
- ----------------------------------------------------------------------
-
- Diffstat Results
-
- [Back to Top]
-
- This is a summary of the changes to the source code that went into this
- release that was generated using the diffstat utility.
-
- CHANGES | 20
- README-SERIOUSLY.bestpractices.txt | 7
- apps/app_minivm.c | 36 +
- apps/app_mixmonitor.c | 15
- apps/app_system.c | 10
- channels/chan_pjsip.c | 3
- configs/samples/minivm.conf.sample | 2
- configs/samples/musiconhold.conf.sample | 23 +
- configs/samples/pjsip.conf.sample | 11
- funcs/func_shell.c | 5
- include/asterisk/app.h | 31 +
- include/asterisk/core_local.h | 37 +
- include/asterisk/res_pjsip_session.h | 11
- main/asterisk.c | 91 +++-
- main/bridge.c | 9
- main/core_local.c | 54 +-
- res/res_monitor.c | 13
- res/res_musiconhold.c | 129 +++---
- res/res_pjsip.c | 11
- res/res_pjsip/pjsip_distributor.c | 214 ++++++++--
- res/res_pjsip_refer.c | 8
- res/res_pjsip_session.c | 28 +
- res/res_pjsip_session.exports.in | 1
- res/res_rtp_asterisk.c | 87 ++--
- third-party/pjproject/patches/0070-Set-PJSIP_INV_SUPPORT_UPDATE-correctly-in-pjsip_inv_.patch | 9
- 25 files changed, 678 insertions(+), 187 deletions(-)
--- /dev/null
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><title>Release Summary - asterisk-certified/13.13-cert6</title><h1 align="center"><a name="top">Release Summary</a></h1><h3 align="center">asterisk-certified/13.13-cert6</h3><h3 align="center">Date: 2017-09-19</h3><h3 align="center"><asteriskteam@digium.com></h3><hr><h2 align="center">Table of Contents</h2><ol>
+<li><a href="#summary">Summary</a></li>
+<li><a href="#contributors">Contributors</a></li>
+<li><a href="#closed_issues">Closed Issues</a></li>
+<li><a href="#commits">Other Changes</a></li>
+<li><a href="#diffstat">Diffstat</a></li>
+</ol><hr><a name="summary"><h2 align="center">Summary</h2></a><center><a href="#top">[Back to Top]</a></center><p>This release has been made to address one or more security vulnerabilities that have been identified. A security advisory document has been published for each vulnerability that includes additional information. Users of versions of Asterisk that are affected are strongly encouraged to review the advisories and determine what action they should take to protect their systems from these issues.</p><p>Security Advisories:</p><ul>
+<li><a href="http://downloads.asterisk.org/pub/security/AST-2017-008.html">AST-2017-008</a></li>
+</ul><p>The data in this summary reflects changes that have been made since the previous release, asterisk-certified/13.13-cert5.</p><hr><a name="contributors"><h2 align="center">Contributors</h2></a><center><a href="#top">[Back to Top]</a></center><p>This table lists the people who have submitted code, those that have tested patches, as well as those that reported issues on the issue tracker that were resolved in this release. For coders, the number is how many of their patches (of any size) were committed into this release. For testers, the number is the number of times their name was listed as assisting with testing a patch. Finally, for reporters, the number is the number of issues that they reported that were affected by commits that went into this release.</p><table width="100%" border="0">
+<tr><th width="33%">Coders</th><th width="33%">Testers</th><th width="33%">Reporters</th></tr>
+<tr valign="top"><td width="33%">1 Richard Mudgett <rmudgett@digium.com><br/>1 George Joseph <gjoseph@digium.com><br/></td><td width="33%"><td width="33%">1 Richard Mudgett <rmudgett@digium.com><br/></td></tr>
+</table><hr><a name="closed_issues"><h2 align="center">Closed Issues</h2></a><center><a href="#top">[Back to Top]</a></center><p>This is a list of all issues from the issue tracker that were closed by changes that went into this release.</p><h3>Bug</h3><h4>Category: Resources/res_rtp_asterisk</h4><a href="https://issues.asterisk.org/jira/browse/ASTERISK-27274">ASTERISK-27274</a>: RTCP needs better packet validation to resist port scans.<br/>Reported by: Richard Mudgett<ul>
+<li><a href="https://code.asterisk.org/code/changelog/asterisk?cs=88c8e8a11c7db789897779178a4c452de09b8fac">[88c8e8a11c]</a> Richard Mudgett -- AST-2017-008: Improve RTP and RTCP packet processing.</li>
+</ul><a href="https://issues.asterisk.org/jira/browse/ASTERISK-27252">ASTERISK-27252</a>: RTP: One way audio with direct media and strictrtp=yes.<br/>Reported by: Richard Mudgett<ul>
+<li><a href="https://code.asterisk.org/code/changelog/asterisk?cs=88c8e8a11c7db789897779178a4c452de09b8fac">[88c8e8a11c]</a> Richard Mudgett -- AST-2017-008: Improve RTP and RTCP packet processing.</li>
+</ul><br><hr><a name="commits"><h2 align="center">Commits Not Associated with an Issue</h2></a><center><a href="#top">[Back to Top]</a></center><p>This is a list of all changes that went into this release that did not reference a JIRA issue.</p><table width="100%" border="1">
+<tr><th>Revision</th><th>Author</th><th>Summary</th></tr>
+<tr><td><a href="https://code.asterisk.org/code/changelog/asterisk?cs=67b1b028a149f98f451bd32f4fc78d6840ccade9">67b1b028a1</a></td><td>George Joseph</td><td>stasis/control: Fix possible deadlock with swap channel</td></tr>
+</table><hr><a name="diffstat"><h2 align="center">Diffstat Results</h2></a><center><a href="#top">[Back to Top]</a></center><p>This is a summary of the changes to the source code that went into this release that was generated using the diffstat utility.</p><pre>include/asterisk/bridge_after.h | 2
+main/bridge.c | 6
+main/bridge_after.c | 30 +-
+res/res_rtp_asterisk.c | 508 ++++++++++++++++++++++++++++++++--------
+res/stasis/control.c | 113 +++++---
+5 files changed, 500 insertions(+), 159 deletions(-)</pre><br></html>
\ No newline at end of file
--- /dev/null
+ Release Summary
+
+ asterisk-certified/13.13-cert6
+
+ Date: 2017-09-19
+
+ <asteriskteam@digium.com>
+
+ ----------------------------------------------------------------------
+
+ Table of Contents
+
+ 1. Summary
+ 2. Contributors
+ 3. Closed Issues
+ 4. Other Changes
+ 5. Diffstat
+
+ ----------------------------------------------------------------------
+
+ Summary
+
+ [Back to Top]
+
+ This release has been made to address one or more security vulnerabilities
+ that have been identified. A security advisory document has been published
+ for each vulnerability that includes additional information. Users of
+ versions of Asterisk that are affected are strongly encouraged to review
+ the advisories and determine what action they should take to protect their
+ systems from these issues.
+
+ Security Advisories:
+
+ * AST-2017-008
+
+ The data in this summary reflects changes that have been made since the
+ previous release, asterisk-certified/13.13-cert5.
+
+ ----------------------------------------------------------------------
+
+ Contributors
+
+ [Back to Top]
+
+ This table lists the people who have submitted code, those that have
+ tested patches, as well as those that reported issues on the issue tracker
+ that were resolved in this release. For coders, the number is how many of
+ their patches (of any size) were committed into this release. For testers,
+ the number is the number of times their name was listed as assisting with
+ testing a patch. Finally, for reporters, the number is the number of
+ issues that they reported that were affected by commits that went into
+ this release.
+
+ Coders Testers Reporters
+ 1 Richard Mudgett 1 Richard Mudgett
+ 1 George Joseph
+
+ ----------------------------------------------------------------------
+
+ Closed Issues
+
+ [Back to Top]
+
+ This is a list of all issues from the issue tracker that were closed by
+ changes that went into this release.
+
+ Bug
+
+ Category: Resources/res_rtp_asterisk
+
+ ASTERISK-27274: RTCP needs better packet validation to resist port scans.
+ Reported by: Richard Mudgett
+ * [88c8e8a11c] Richard Mudgett -- AST-2017-008: Improve RTP and RTCP
+ packet processing.
+ ASTERISK-27252: RTP: One way audio with direct media and strictrtp=yes.
+ Reported by: Richard Mudgett
+ * [88c8e8a11c] Richard Mudgett -- AST-2017-008: Improve RTP and RTCP
+ packet processing.
+
+ ----------------------------------------------------------------------
+
+ Commits Not Associated with an Issue
+
+ [Back to Top]
+
+ This is a list of all changes that went into this release that did not
+ reference a JIRA issue.
+
+ +------------------------------------------------------------------------+
+ | Revision | Author | Summary |
+ |------------+---------------+-------------------------------------------|
+ | 67b1b028a1 | George Joseph | stasis/control: Fix possible deadlock |
+ | | | with swap channel |
+ +------------------------------------------------------------------------+
+
+ ----------------------------------------------------------------------
+
+ Diffstat Results
+
+ [Back to Top]
+
+ This is a summary of the changes to the source code that went into this
+ release that was generated using the diffstat utility.
+
+ include/asterisk/bridge_after.h | 2
+ main/bridge.c | 6
+ main/bridge_after.c | 30 +-
+ res/res_rtp_asterisk.c | 508 ++++++++++++++++++++++++++++++++--------
+ res/stasis/control.c | 113 +++++---
+ 5 files changed, 500 insertions(+), 159 deletions(-)