<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>Asterisk Pbx</title>
	<atom:link href="http://www.astblog.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.astblog.com</link>
	<description>asterisk pbx and voip tricks and tips</description>
	<pubDate>Sat, 17 Jul 2010 04:37:14 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<item>
		<title>You do not appear to have the sources for the `uname -r` kernel installed.</title>
		<link>http://www.astblog.com/2010/07/17/you-do-not-appear-to-have-the-sources-for-the-uname-r-kernel-installed/</link>
		<comments>http://www.astblog.com/2010/07/17/you-do-not-appear-to-have-the-sources-for-the-uname-r-kernel-installed/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 04:37:14 +0000</pubDate>
		<dc:creator>ruddy gbaguidi</dc:creator>
		
		<category><![CDATA[Tricks]]></category>

		<guid isPermaLink="false">http://www.astblog.com/?p=134</guid>
		<description><![CDATA[So, this maybe the first error you have when trying to build dahdi.
On CentOS, to fix it, it is simple.
First update yum
yum update
yum upgrade
Know your kernel version
uname -r
Search the package kernel-devel right for your version and install it
yum install kernel-devel kernel-headers
Goto to /lib/modules/ directory
cd /lib/modules/`uname -r`
ls -l
If you see a broken build link out there. [...]]]></description>
			<content:encoded><![CDATA[<p>So, this maybe the first error you have when trying to build dahdi.</p>
<p>On CentOS, to fix it, it is simple.</p>
<p>First update yum</p>
<blockquote><p>yum update</p>
<p>yum upgrade</p></blockquote>
<p>Know your kernel version</p>
<blockquote><p>uname -r</p></blockquote>
<p>Search the package kernel-devel right for your version and install it</p>
<blockquote><p>yum install kernel-devel kernel-headers</p></blockquote>
<blockquote><p>Goto to /lib/modules/ directory</p>
<p>cd /lib/modules/`uname -r`</p>
<p>ls -l</p></blockquote>
<p>If you see a broken build link out there. Point it to the new installed kernel source in /usr/src/</p>
<blockquote><p>ln -s /usr/src/kernels/&#8230;. build</p></blockquote>
<p>Reboot your machine</p>
<p>Now, you should be able to build your dahdi sources.</p>
<p>Enjoy</p>
]]></content:encoded>
			<wfw:commentRss>http://www.astblog.com/2010/07/17/you-do-not-appear-to-have-the-sources-for-the-uname-r-kernel-installed/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Foniva just launch a new call center software</title>
		<link>http://www.astblog.com/2010/05/05/foniva-just-launch-a-new-call-center-software/</link>
		<comments>http://www.astblog.com/2010/05/05/foniva-just-launch-a-new-call-center-software/#comments</comments>
		<pubDate>Thu, 06 May 2010 01:34:32 +0000</pubDate>
		<dc:creator>ruddy gbaguidi</dc:creator>
		
		<category><![CDATA[Tricks]]></category>

		<category><![CDATA[call center software]]></category>

		<category><![CDATA[contact center software]]></category>

		<category><![CDATA[cti]]></category>

		<category><![CDATA[foniva]]></category>

		<guid isPermaLink="false">http://www.astblog.com/?p=132</guid>
		<description><![CDATA[Try and check their call center CTI at www.foniva.com
]]></description>
			<content:encoded><![CDATA[<p>Try and check their call center CTI at <a href="http://www.foniva.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.foniva.com');">www.foniva.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.astblog.com/2010/05/05/foniva-just-launch-a-new-call-center-software/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Asterisk configuration templates. Use the (+) option</title>
		<link>http://www.astblog.com/2010/01/20/asterisk-configuration-templates-use-the-option/</link>
		<comments>http://www.astblog.com/2010/01/20/asterisk-configuration-templates-use-the-option/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 21:02:19 +0000</pubDate>
		<dc:creator>ruddy gbaguidi</dc:creator>
		
		<category><![CDATA[Tricks]]></category>

		<guid isPermaLink="false">http://www.astblog.com/?p=127</guid>
		<description><![CDATA[Hi All
Today we will review the (+) sign in the asterisk configuration files.
This can be applied to any file under the /etc/asterisk directory.
[mycontext]
option1=value1
&#8212;- many others stuff &#8212;-
[mycontext] (+)
option2=value2
So, basically, in the same file, you can have the same context twice. If the two contexts have the same name and the second one is followed by [...]]]></description>
			<content:encoded><![CDATA[<p>Hi All</p>
<p>Today we will review the (+) sign in the asterisk configuration files.</p>
<p>This can be applied to any file under the /etc/asterisk directory.</p>
<blockquote><p>[mycontext]</p>
<p>option1=value1</p>
<p>&#8212;- many others stuff &#8212;-</p>
<p>[mycontext] <strong>(+)</strong></p>
<p>option2=value2</p></blockquote>
<p>So, basically, in the same file, you can have the same context twice. If the two contexts have the same name and the second one is followed by the (+) options, then both context will be merge.</p>
<p>Notice: If the first context does not exists, the load will fail.</p>
<p>This can be useful if you include one configuration file in another and need to refer to a context in another configuration file.</p>
<p>Enjoy !</p>
]]></content:encoded>
			<wfw:commentRss>http://www.astblog.com/2010/01/20/asterisk-configuration-templates-use-the-option/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Asterisk : spy a conversation</title>
		<link>http://www.astblog.com/2009/11/15/asterisk-spy-a-conversation/</link>
		<comments>http://www.astblog.com/2009/11/15/asterisk-spy-a-conversation/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 04:26:43 +0000</pubDate>
		<dc:creator>ruddy gbaguidi</dc:creator>
		
		<category><![CDATA[Tricks]]></category>

		<category><![CDATA[asterisk]]></category>

		<category><![CDATA[channels]]></category>

		<category><![CDATA[chanspy]]></category>

		<category><![CDATA[listen]]></category>

		<category><![CDATA[monitor]]></category>

		<guid isPermaLink="false">http://www.astblog.com/?p=125</guid>
		<description><![CDATA[Hi everybody
Today, we will look at the ChanSpy application.
Let say you have channels coming on our asterisk and you want to be able
to hear what people are doing without them knowing that.
Then, Chanspy is for you.
ChanSpy
Synopsis
Listen in on a call.  Useful in a call center to monitor agents on the phone.
Description
This adds the ability [...]]]></description>
			<content:encoded><![CDATA[<p>Hi everybody</p>
<p>Today, we will look at the ChanSpy application.</p>
<p>Let say you have channels coming on our asterisk and you want to be able</p>
<p>to hear what people are doing without them knowing that.</p>
<p>Then, Chanspy is for you.</p>
<h1>ChanSpy</h1>
<h2>Synopsis</h2>
<p>Listen in on a call.  Useful in a call center to monitor agents on the phone.</p>
<h2>Description</h2>
<p>This adds the ability to spy on any bridged call, this includes VoIP only calls where ZapScan/ZapBarge couldn&#8217;t this can.</p>
<p>Chanspy([&lt;chanprefix&gt;][,&lt;options&gt;])</p>
<p>Valid Options:<br />
<span style="font-family: monospace;">- b: Only spy on channels involved in a bridged call. </span><br />
<span style="font-family: monospace;">- g(grp): Match only channels where their ${SPYGROUP} variable is set to contain &#8217;grp&#8217; in an optional : delimited list. </span><br />
<span style="font-family: monospace;">- q: Don&#8217;t play a beep when beginning to spy on a channel, or speak the selected channel name. </span><br />
<span style="font-family: monospace;">- r[(basename)]: Record the session to the monitor spool directory. An optional base for the filename may be specified. </span><br />
<span style="font-family: monospace;"> The default is &#8217;chanspy&#8217;. </span><br />
<span style="font-family: monospace;">- v([value]): Adjust the initial volume in the range from -4 to 4. A negative value refers to a quieter setting. </span></p>
<p>Since 1.4:<br />
<span style="font-family: monospace;">- w Enable &#8217;whisper&#8217; mode, so the spying channel can talk to the spied-on channel. </span><br />
<span style="font-family: monospace;">- W Enable &#8217;private whisper&#8217; mode, so the spying channel can talk to the spied-on </span><br />
<span style="font-family: monospace;"> channel but cannot listen to that channel. </span></p>
<p>Since 1.6:<br />
<span style="font-family: monospace;">- o: Only listen to audio coming from this channel. </span><br />
<span style="font-family: monospace;">- X: Allow the user to exit ChanSpy to a valid single digit numeric extension in the current context or </span><br />
<span style="font-family: monospace;"> the context specified by the SPY_EXIT_CONTEXT channel variable. The name of the last channel </span><br />
<span style="font-family: monospace;"> that was spied on will be stored in the SPY_CHANNEL variable. </span><br />
<span style="font-family: monospace;">- e(ext): Enable &#8217;enforced&#8217; mode, so the spying channel can only monitor extensions whose name </span><br />
<span style="font-family: monospace;"> is in the &#8217;ext&#8217; : delimited list. </span></p>
<p>If &lt;chanprefix&gt; is specified, only channel names *beginning* with that string will be scanned.<br />
(&#8217;all&#8217; or an empty string are also both valid &lt;chanprefix&gt;)</p>
<p>While spying, the following actions may be performed:</p>
<p>Dialing # cycles the volume level.<br />
Dialing * will stop spying and look for another channel to spy on.<br />
Dialing a series of digits followed by # builds a channel name to append to &lt;chanprefix&gt;<br />
(e.g. run ChanSpy(Agent) and dial 1234# while spying to jump to channel Agent/1234)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.astblog.com/2009/11/15/asterisk-spy-a-conversation/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Install asterisk on ubuntu (apt-get)</title>
		<link>http://www.astblog.com/2009/10/27/install-asterisk-on-ubuntu-apt-get/</link>
		<comments>http://www.astblog.com/2009/10/27/install-asterisk-on-ubuntu-apt-get/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 16:54:01 +0000</pubDate>
		<dc:creator>ruddy gbaguidi</dc:creator>
		
		<category><![CDATA[Tricks]]></category>

		<category><![CDATA[apt-get]]></category>

		<category><![CDATA[asterisk]]></category>

		<category><![CDATA[install]]></category>

		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.astblog.com/?p=123</guid>
		<description><![CDATA[If you don&#8217;t want to compile asterisk on ubuntu and you are already using a debian based system like ubuntu,
you can just apt-get asterisk

sudo apt-get update
sudo apt-get upgrade
sudo apt-get install astersisk
]]></description>
			<content:encoded><![CDATA[<p>If you don&#8217;t want to compile asterisk on ubuntu and you are already using a debian based system like ubuntu,</p>
<p>you can just apt-get asterisk</p>
<blockquote>
<p>sudo apt-get update</p>
<p>sudo apt-get upgrade</p>
<p>sudo apt-get install astersisk</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.astblog.com/2009/10/27/install-asterisk-on-ubuntu-apt-get/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Asterisk security : ACL not respected on SIP INVITE</title>
		<link>http://www.astblog.com/2009/10/26/asterisk-security-acl-not-respected-on-sip-invite/</link>
		<comments>http://www.astblog.com/2009/10/26/asterisk-security-acl-not-respected-on-sip-invite/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 23:56:15 +0000</pubDate>
		<dc:creator>ruddy gbaguidi</dc:creator>
		
		<category><![CDATA[Tricks]]></category>

		<guid isPermaLink="false">http://www.astblog.com/?p=121</guid>
		<description><![CDATA[A missing ACL check for handling SIP INVITEs allows a device to make calls on networks intended to be prohibited as defined by the &#8220;deny&#8221; and &#8220;permit&#8221; lines in sip.conf. The ACL check for handling SIP  registrations was not affected.
http://www.asterisk.org/security
]]></description>
			<content:encoded><![CDATA[<p>A missing ACL check for handling SIP INVITEs allows a device to make calls on networks intended to be prohibited as defined by the &#8220;deny&#8221; and &#8220;permit&#8221; lines in sip.conf. The ACL check for handling SIP  registrations was not affected.</p>
<p><a href="http://www.asterisk.org/security" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.asterisk.org');">http://www.asterisk.org/security</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.astblog.com/2009/10/26/asterisk-security-acl-not-respected-on-sip-invite/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Asterisk and others PBX monitoring</title>
		<link>http://www.astblog.com/2009/10/19/asterisk-and-others-pbx-monitoring/</link>
		<comments>http://www.astblog.com/2009/10/19/asterisk-and-others-pbx-monitoring/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 20:43:40 +0000</pubDate>
		<dc:creator>ruddy gbaguidi</dc:creator>
		
		<category><![CDATA[Tricks]]></category>

		<guid isPermaLink="false">http://www.astblog.com/?p=119</guid>
		<description><![CDATA[Here is a great tool to monitor your web services as well as your public phone services
http://www.sysmonitors.com
]]></description>
			<content:encoded><![CDATA[<p>Here is a great tool to monitor your web services as well as your public phone services</p>
<p><a href="http://www.sysmonitors.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.sysmonitors.com');">http://www.sysmonitors.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.astblog.com/2009/10/19/asterisk-and-others-pbx-monitoring/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Asterisk: send and receive fax</title>
		<link>http://www.astblog.com/2009/10/01/asterisk-send-and-receive-fax/</link>
		<comments>http://www.astblog.com/2009/10/01/asterisk-send-and-receive-fax/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 20:32:45 +0000</pubDate>
		<dc:creator>ruddy gbaguidi</dc:creator>
		
		<category><![CDATA[Tricks]]></category>

		<guid isPermaLink="false">http://www.astblog.com/?p=117</guid>
		<description><![CDATA[You may have search all over the internet about a reliable way to send and receive fax using
asterik and a voip connection or your TDM/T1 card you already have.
Digium have a solution for you.
http://store.digium.com/productview.php?product_code=804-00007
Check their free fax product. Register and install it.
You can use it for free if you need only one conccurent channel. This [...]]]></description>
			<content:encoded><![CDATA[<p>You may have search all over the internet about a reliable way to send and receive fax using</p>
<p>asterik and a voip connection or your TDM/T1 card you already have.</p>
<p>Digium have a solution for you.</p>
<p><a href="http://store.digium.com/productview.php?product_code=804-00007" onclick="javascript:pageTracker._trackPageview('/outbound/article/store.digium.com');">http://store.digium.com/productview.php?product_code=804-00007</a></p>
<p>Check their free fax product. Register and install it.</p>
<p>You can use it for free if you need only one conccurent channel. This may be all you need if you have only one outbound line anyway or expect only on fax at the time.</p>
<p>For multiple channels, the pricing is as low as 39.99$</p>
]]></content:encoded>
			<wfw:commentRss>http://www.astblog.com/2009/10/01/asterisk-send-and-receive-fax/feed/</wfw:commentRss>
		</item>
		<item>
		<title>asterisk : Run linux command from asterisk cli</title>
		<link>http://www.astblog.com/2009/08/05/asterisk-run-linux-command-from-asterisk-cli/</link>
		<comments>http://www.astblog.com/2009/08/05/asterisk-run-linux-command-from-asterisk-cli/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 00:48:44 +0000</pubDate>
		<dc:creator>ruddy gbaguidi</dc:creator>
		
		<category><![CDATA[Tricks]]></category>

		<guid isPermaLink="false">http://www.astblog.com/?p=115</guid>
		<description><![CDATA[This feature can help you with you want to stay in the asterisk cli while running others linux commands.
To do so, you can prefix the command by ! (exclamation point).
Example :
ouidah*CLI&#62; !date
Wed Aug  5 20:48:22 EDT 2009
ouidah*CLI&#62;
]]></description>
			<content:encoded><![CDATA[<p>This feature can help you with you want to stay in the asterisk cli while running others linux commands.</p>
<p>To do so, you can prefix the command by ! (exclamation point).</p>
<p>Example :</p>
<blockquote><p>ouidah*CLI&gt; !date<br />
Wed Aug  5 20:48:22 EDT 2009<br />
ouidah*CLI&gt;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.astblog.com/2009/08/05/asterisk-run-linux-command-from-asterisk-cli/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Asterisk security : AST-2009-004: Remote Crash Vulnerability in RTP	stack</title>
		<link>http://www.astblog.com/2009/08/03/asterisk-security-ast-2009-004-remote-crash-vulnerability-in-rtpstack/</link>
		<comments>http://www.astblog.com/2009/08/03/asterisk-security-ast-2009-004-remote-crash-vulnerability-in-rtpstack/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 05:28:24 +0000</pubDate>
		<dc:creator>ruddy gbaguidi</dc:creator>
		
		<category><![CDATA[Tricks]]></category>

		<guid isPermaLink="false">http://www.astblog.com/?p=111</guid>
		<description><![CDATA[Today (2009-09-03), a vulnerability was discoved in asterisk RTP stack and may allow a remote user to make your server crash by sending malformed RTP packets.
Only 1.6.1 versions are affected. Please upgrade. Here is the full vulnerability release.
Asterisk Project Security Advisory - AST-2009-004
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+
&#124;       Product        &#124; Asterisk                                        &#124;
&#124;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-&#124;
&#124;       Summary        &#124; Remote Crash Vulnerability in RTP stack         [...]]]></description>
			<content:encoded><![CDATA[<p>Today (2009-09-03), a vulnerability was discoved in asterisk RTP stack and may allow a remote user to make your server crash by sending malformed RTP packets.</p>
<p>Only 1.6.1 versions are affected. Please upgrade. Here is the full vulnerability release.</p>
<p>Asterisk Project Security Advisory - AST-2009-004</p>
<p>+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+<br />
|       Product        | Asterisk                                        |<br />
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-|<br />
|       Summary        | Remote Crash Vulnerability in RTP stack         |<br />
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-|<br />
|  Nature of Advisory  | Exploitable Crash                               |<br />
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-|<br />
|    Susceptibility    | Remote unauthenticated sessions                 |<br />
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-|<br />
|       Severity       | Critical                                        |<br />
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-|<br />
|    Exploits Known    | No                                              |<br />
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-|<br />
|     Reported On      | July 27, 2009                                   |<br />
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-|<br />
|     Reported By      | Marcus Hunger &lt;hunger AT sipgate DOT de&gt;        |<br />
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-|<br />
|      Posted On       | August 2, 2009                                  |<br />
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-|<br />
|   Last Updated On    | August 2, 2009                                  |<br />
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-|<br />
|   Advisory Contact   | Mark Michelson &lt;mmichelson AT digium DOT com&gt;   |<br />
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-|<br />
|       CVE Name       |                                                 |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+</p>
<p>+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+<br />
| Description | An attacker can cause Asterisk to crash remotely by      |<br />
|             | sending malformed RTP text frames. While the attacker    |<br />
|             | can cause Asterisk to crash, he cannot execute arbitrary |<br />
|             | remote code with this exploit.                           |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+</p>
<p>+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+<br />
| Resolution | Users should upgrade to a version listed in the           |<br />
|            | &#8220;Corrected In&#8221; section below.                             |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+</p>
<p>+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+<br />
|                           Affected Versions                            |<br />
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;|<br />
|            Product            | Release Series |                       |<br />
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;|<br />
|     Asterisk Open Source      |     1.2.x      | Unaffected            |<br />
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;|<br />
|     Asterisk Open Source      |     1.4.x      | Unaffected            |<br />
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;|<br />
|     Asterisk Open Source      |     1.6.x      | All 1.6.1 versions    |<br />
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;|<br />
|        Asterisk Addons        |     1.2.x      | Unaffected            |<br />
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;|<br />
|        Asterisk Addons        |     1.4.x      | Unaffected            |<br />
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;|<br />
|        Asterisk Addons        |     1.6.x      | Unaffected            |<br />
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;|<br />
|   Asterisk Business Edition   |     A.x.x      | Unaffected            |<br />
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;|<br />
|   Asterisk Business Edition   |     B.x.x      | Unaffected            |<br />
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;|<br />
|   Asterisk Business Edition   |     C.x.x      | Unaffected            |<br />
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;|<br />
|          AsteriskNOW          |      1.5       | Unaffected            |<br />
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;|<br />
|  s800i (Asterisk Appliance)   |     1.2.x      | Unaffected            |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+</p>
<p>+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+<br />
|                              Corrected In                              |<br />
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;|<br />
|                   Product                   |         Release          |<br />
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;|<br />
|         Open Source Asterisk 1.6.1          |         1.6.1.2          |<br />
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;|<br />
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;|<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+</p>
<p>+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+<br />
|                                  Patches                                   |<br />
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-|<br />
|                              SVN URL                               |Version|<br />
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;-|<br />
|<a href="http://downloads.digium.com/pub/security/AST-2009-004-1.6.1.diff.txt" onclick="javascript:pageTracker._trackPageview('/outbound/article/downloads.digium.com');">http://downloads.digium.com/pub/security/AST-2009-004-1.6.1.diff.txt</a>| 1.6.1 |<br />
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;-|<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+</p>
<p>+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+<br />
|        Links        |                                                  |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+</p>
<p>+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+<br />
| Asterisk Project Security Advisories are posted at                     |<br />
| <a href="http://www.asterisk.org/security" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.asterisk.org');">http://www.asterisk.org/security</a> |<br />
|                                                                        |<br />
| This document may be superseded by later versions; if so, the latest   |<br />
| version will be posted at                                              |<br />
| <a href="http://downloads.digium.com/pub/security/AST-2009-004.pdf" onclick="javascript:pageTracker._trackPageview('/outbound/article/downloads.digium.com');">http://downloads.digium.com/pub/security/AST-2009-004.pdf</a> and          |<br />
| <a href="http://downloads.digium.com/pub/security/AST-2009-004.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/downloads.digium.com');">http://downloads.digium.com/pub/security/AST-2009-004.html</a> |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+</p>
<p>+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+<br />
|                            Revision History                            |<br />
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;|<br />
|      Date      |     Editor      |           Revisions Made            |<br />
|&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-|<br />
| 27 Jul, 2009   | Mark Michelson  | Initial Draft                       |<br />
|&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-|<br />
| 31 Jul, 2009   | Mark Michelson  | Added sentence about how remote     |<br />
|                |                 | code cannot be executed.            |<br />
|&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-|<br />
| August 2, 2009 | Tilghman Lesher | Public release                      |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+</p>
<p>Asterisk Project Security Advisory - AST-2009-004<br />
Copyright (c) 2009 Digium, Inc. All Rights Reserved.<br />
Permission is hereby granted to distribute and publish this advisory in its<br />
original, unaltered form.</p>
<p class="MsoPlainText"><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves /> <w:TrackFormatting /> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF /> <w:LidThemeOther>EN-CA</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> <w:SplitPgBreakAndParaMark /> <w:DontVertAlignCellWithSp /> <w:DontBreakConstrainedForcedTables /> <w:DontVertAlignInTxbx /> <w:Word11KerningPairs /> <w:CachedColBalance /> </w:Compatibility> <w:DoNotOptimizeForBrowser /> <m:mathPr> <m:mathFont m:val="Cambria Math" /> <m:brkBin m:val="before" /> <m:brkBinSub m:val="&#45;-" /> <m:smallFrac m:val="off" /> <m:dispDef /> <m:lMargin m:val="0" /> <m:rMargin m:val="0" /> <m:defJc m:val="centerGroup" /> <m:wrapIndent m:val="1440" /> <m:intLim m:val="subSup" /> <m:naryLim m:val="undOvr" /> </m:mathPr></w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"   DefSemiHidden="true" DefQFormat="false" DefPriority="99"   LatentStyleCount="267"> <w:LsdException Locked="false" Priority="0" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Normal" /> <w:LsdException Locked="false" Priority="9" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="heading 1" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9" /> <w:LsdException Locked="false" Priority="39" Name="toc 1" /> <w:LsdException Locked="false" Priority="39" Name="toc 2" /> <w:LsdException Locked="false" Priority="39" Name="toc 3" /> <w:LsdException Locked="false" Priority="39" Name="toc 4" /> <w:LsdException Locked="false" Priority="39" Name="toc 5" /> <w:LsdException Locked="false" Priority="39" Name="toc 6" /> <w:LsdException Locked="false" Priority="39" Name="toc 7" /> <w:LsdException Locked="false" Priority="39" Name="toc 8" /> <w:LsdException Locked="false" Priority="39" Name="toc 9" /> <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption" /> <w:LsdException Locked="false" Priority="10" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Title" /> <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font" /> <w:LsdException Locked="false" Priority="11" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtitle" /> <w:LsdException Locked="false" Priority="22" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Strong" /> <w:LsdException Locked="false" Priority="20" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Emphasis" /> <w:LsdException Locked="false" Priority="59" SemiHidden="false"    UnhideWhenUsed="false" Name="Table Grid" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text" /> <w:LsdException Locked="false" Priority="1" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="No Spacing" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 1" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 1" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 1" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 1" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision" /> <w:LsdException Locked="false" Priority="34" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="List Paragraph" /> <w:LsdException Locked="false" Priority="29" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Quote" /> <w:LsdException Locked="false" Priority="30" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Quote" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 1" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 1" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 1" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 1" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 1" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 2" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 2" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 2" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 2" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 2" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 2" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 2" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 2" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 3" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 3" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 3" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 3" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 3" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 3" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 3" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 3" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 3" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 4" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 4" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 4" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 4" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 4" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 4" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 4" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 4" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 4" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 5" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 5" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 5" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 5" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 5" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 5" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 5" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 5" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 5" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 6" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 6" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 6" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 6" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 6" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 6" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 6" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 6" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 6" /> <w:LsdException Locked="false" Priority="19" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis" /> <w:LsdException Locked="false" Priority="21" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis" /> <w:LsdException Locked="false" Priority="31" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference" /> <w:LsdException Locked="false" Priority="32" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Reference" /> <w:LsdException Locked="false" Priority="33" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Book Title" /> <w:LsdException Locked="false" Priority="37" Name="Bibliography" /> <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading" /> </w:LatentStyles> </xml><![endif]--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.astblog.com/2009/08/03/asterisk-security-ast-2009-004-remote-crash-vulnerability-in-rtpstack/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
